修改bug
This commit is contained in:
parent
532cf35f22
commit
1d504856bd
|
|
@ -39,21 +39,21 @@ public class ConfigServiceDirective implements Serializable {
|
|||
/**
|
||||
* 服务类别id
|
||||
*/
|
||||
@Excel(name = "服务类别", width = 15)
|
||||
@Excel(name = "服务类别", width = 15, dicCode = "id", dictTable = "nu_config_service_category", dicText = "category_name")
|
||||
@ApiModelProperty(value = "服务类别")
|
||||
@Dict(dicCode = "id", dictTable = "nu_config_service_category", dicText = "category_name")
|
||||
private java.lang.String categoryId;
|
||||
/**
|
||||
* 服务类型id
|
||||
*/
|
||||
@Excel(name = "服务类型", width = 15)
|
||||
@Excel(name = "服务类型", width = 15,dicCode = "id", dictTable = "nu_config_service_type", dicText = "type_name")
|
||||
@ApiModelProperty(value = "服务类型")
|
||||
@Dict(dicCode = "id", dictTable = "nu_config_service_type", dicText = "type_name")
|
||||
private java.lang.String typeId;
|
||||
/**
|
||||
* 分类标签
|
||||
*/
|
||||
@Excel(name = "分类标签", width = 15)
|
||||
@Excel(name = "分类标签", width = 15,dicCode = "item_value", dictTable = "view_instruction_tag", dicText = "item_text")
|
||||
@ApiModelProperty(value = "分类标签")
|
||||
@Dict(dicCode = "item_value", dictTable = "view_instruction_tag", dicText = "item_text")
|
||||
private java.lang.String instructionTagId;
|
||||
|
|
@ -78,28 +78,26 @@ public class ConfigServiceDirective implements Serializable {
|
|||
/**
|
||||
* 是否参与医保报销 0不报销 1报销
|
||||
*/
|
||||
@Excel(name = "医保报销", width = 15)
|
||||
@Excel(name = "医保报销", width = 15,dicCode = "med_ins_reimb")
|
||||
@ApiModelProperty(value = "医保报销")
|
||||
@Dict(dicCode = "med_ins_reimb")
|
||||
private java.lang.String izReimbursement;
|
||||
/**
|
||||
* 是否参与机构优惠 0不参与 1参与
|
||||
*/
|
||||
@Excel(name = "机构优惠", width = 15)
|
||||
@Excel(name = "机构优惠", width = 15,dicCode = "institutional_discount")
|
||||
@ApiModelProperty(value = "机构优惠")
|
||||
@Dict(dicCode = "institutional_discount")
|
||||
private java.lang.String izPreferential;
|
||||
/**
|
||||
* 收费频次 1按次收费 2按天收费
|
||||
*/
|
||||
@Excel(name = "收费频次", width = 15)
|
||||
@ApiModelProperty(value = "收费频次")
|
||||
@Dict(dicCode = "billing_frequency")
|
||||
private java.lang.String chargingFrequency;
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
@Excel(name = "排序", width = 15)
|
||||
@ApiModelProperty(value = "排序")
|
||||
private java.lang.Integer sort;
|
||||
/**
|
||||
|
|
@ -124,14 +122,14 @@ public class ConfigServiceDirective implements Serializable {
|
|||
/**
|
||||
* 指令状态
|
||||
*/
|
||||
@Excel(name = "指令状态", width = 15)
|
||||
@Excel(name = "指令状态", width = 15,dicCode = "directive_status")
|
||||
@ApiModelProperty(value = "指令状态")
|
||||
@Dict(dicCode = "directive_status")
|
||||
private java.lang.String status;
|
||||
/**
|
||||
* 是否启用 Y启用 N未启用
|
||||
*/
|
||||
@Excel(name = "是否启用", width = 15)
|
||||
@Excel(name = "是否启用", width = 15,dicCode = "iz_enabled")
|
||||
@ApiModelProperty(value = "是否启用")
|
||||
@Dict(dicCode = "iz_enabled")
|
||||
private java.lang.String izEnabled;
|
||||
|
|
@ -223,7 +221,6 @@ public class ConfigServiceDirective implements Serializable {
|
|||
/**
|
||||
* 服务指令图片小图
|
||||
*/
|
||||
@Excel(name = "服务指令图片小图", width = 15)
|
||||
@ApiModelProperty(value = "服务指令图片小图")
|
||||
private java.lang.String previewFileSmall;
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue