|
@@ -110,14 +110,17 @@ public class TpmEquipment implements Serializable {
|
|
|
/**责任部门*/
|
|
|
@Excel(name = "责任部门", width = 15)
|
|
|
@ApiModelProperty(value = "责任部门")
|
|
|
+ @Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id")
|
|
|
private java.lang.String responseDepartment;
|
|
|
/**负责人*/
|
|
|
@Excel(name = "负责人", width = 15)
|
|
|
@ApiModelProperty(value = "负责人")
|
|
|
+ @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "id")
|
|
|
private java.lang.String responsePerson;
|
|
|
/**领用人*/
|
|
|
@Excel(name = "领用人", width = 15)
|
|
|
@ApiModelProperty(value = "领用人")
|
|
|
+ @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "id")
|
|
|
private java.lang.String recipient;
|
|
|
/**管理状态 0送检中、1在用、2限用、3禁用*/
|
|
|
@Excel(name = "管理状态", width = 15, dicCode = "manage_status")
|