长者增加医保类型、失能等级、缴费情况
This commit is contained in:
parent
51b68c9bdd
commit
b6fca0d966
|
|
@ -81,4 +81,15 @@ public class NuCommonApi {
|
||||||
redisUtil.sSet("canuploadparams", fileName + "-" + fileSize);
|
redisUtil.sSet("canuploadparams", fileName + "-" + fileSize);
|
||||||
return Result.ok(200);
|
return Result.ok(200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据数据字典编码查询对应项
|
||||||
|
*
|
||||||
|
* @param code 数据字典编码
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@GetMapping("/queryAreaNameById")
|
||||||
|
public Result<Object> queryDictItemByCode(@RequestParam("code") String code) {
|
||||||
|
return Result.ok();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,17 @@ public class ElderInfoMQDto implements Serializable {
|
||||||
* 医保类型
|
* 医保类型
|
||||||
*/
|
*/
|
||||||
private String medicalType;
|
private String medicalType;
|
||||||
|
/**
|
||||||
|
*长者失能等级报销类型
|
||||||
|
* 省医保syb_reimbursement_type
|
||||||
|
* 职工医保zgyb_reimbursement_type
|
||||||
|
* 居民医保jmyb_reimbursement_type
|
||||||
|
*/
|
||||||
|
private String disabilityReimbursementType;
|
||||||
|
/**
|
||||||
|
* 长者缴费状态 字典elder_payment_status
|
||||||
|
*/
|
||||||
|
private String paymentStatus;
|
||||||
/**
|
/**
|
||||||
* 报销类型
|
* 报销类型
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,17 @@ public class ElderInfoEntity implements Serializable {
|
||||||
* 医保类型
|
* 医保类型
|
||||||
*/
|
*/
|
||||||
private String medicalType;
|
private String medicalType;
|
||||||
|
/**
|
||||||
|
*长者失能等级报销类型
|
||||||
|
* 省医保syb_reimbursement_type
|
||||||
|
* 职工医保zgyb_reimbursement_type
|
||||||
|
* 居民医保jmyb_reimbursement_type
|
||||||
|
*/
|
||||||
|
private String disabilityReimbursementType;
|
||||||
|
/**
|
||||||
|
* 长者缴费状态 字典elder_payment_status
|
||||||
|
*/
|
||||||
|
private String paymentStatus;
|
||||||
/**
|
/**
|
||||||
* 报销类型
|
* 报销类型
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -102,6 +102,21 @@ public class ElderInfo implements Serializable {
|
||||||
@Dict(dicCode = "medical_insurance_type")
|
@Dict(dicCode = "medical_insurance_type")
|
||||||
@ApiModelProperty(value = "医保类型")
|
@ApiModelProperty(value = "医保类型")
|
||||||
private java.lang.String medicalType;
|
private java.lang.String medicalType;
|
||||||
|
/**
|
||||||
|
*长者失能等级报销类型
|
||||||
|
* 省医保syb_reimbursement_type
|
||||||
|
* 职工医保zgyb_reimbursement_type
|
||||||
|
* 居民医保jmyb_reimbursement_type
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "长者失能等级报销类型")
|
||||||
|
private String disabilityReimbursementType;
|
||||||
|
/**
|
||||||
|
* 长者缴费状态 字典elder_payment_status
|
||||||
|
*/
|
||||||
|
@Excel(name = "医保类型", width = 15, dicCode = "elder_payment_status")
|
||||||
|
@Dict(dicCode = "elder_payment_status")
|
||||||
|
@ApiModelProperty(value = "长者缴费状态")
|
||||||
|
private String paymentStatus;
|
||||||
/**
|
/**
|
||||||
* 报销类型
|
* 报销类型
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue