添加长者标签操作日志查询功,镜像日志查询功能
This commit is contained in:
parent
38cc258e99
commit
4b919fe198
|
|
@ -38,13 +38,15 @@ public class ElderTagOpeLogMain implements Serializable {
|
|||
@TableId(type = IdType.ASSIGN_ID)
|
||||
@ApiModelProperty(value = "id")
|
||||
private java.lang.String id;
|
||||
/**操作类型 1新增 2修改*/
|
||||
@Excel(name = "操作类型 1新增 2修改", width = 15)
|
||||
@ApiModelProperty(value = "操作类型 1新增 2修改")
|
||||
/**操作类型*/
|
||||
@Excel(name = "操作类型", width = 15)
|
||||
@ApiModelProperty(value = "操作类型")
|
||||
@Dict(dicCode = "directive_ope_type")
|
||||
private java.lang.String opeType;
|
||||
/**机构编码*/
|
||||
@Excel(name = "机构编码", width = 15)
|
||||
@ApiModelProperty(value = "机构编码")
|
||||
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "org_code")
|
||||
private java.lang.String orgCode;
|
||||
/**操作人*/
|
||||
@ApiModelProperty(value = "操作人")
|
||||
|
|
|
|||
|
|
@ -38,17 +38,19 @@ public class ElderTagSyncLogMain implements Serializable {
|
|||
@TableId(type = IdType.ASSIGN_ID)
|
||||
@ApiModelProperty(value = "id")
|
||||
private java.lang.String id;
|
||||
/**哪个机构镜像的*/
|
||||
@Excel(name = "哪个机构镜像的", width = 15)
|
||||
@ApiModelProperty(value = "哪个机构镜像的")
|
||||
/**目标镜像机构*/
|
||||
@Excel(name = "目标镜像机构", width = 15)
|
||||
@ApiModelProperty(value = "目标镜像机构")
|
||||
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "org_code")
|
||||
private java.lang.String opeOrgCode;
|
||||
/**镜像的哪个机构的标签*/
|
||||
@Excel(name = "镜像的哪个机构的标签", width = 15)
|
||||
@ApiModelProperty(value = "镜像的哪个机构的标签")
|
||||
/**源镜像机构*/
|
||||
@Excel(name = "源镜像机构", width = 15)
|
||||
@ApiModelProperty(value = "源镜像机构")
|
||||
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "org_code")
|
||||
private java.lang.String targetOrgCode;
|
||||
/**标签镜像码*/
|
||||
@Excel(name = "标签镜像码", width = 15)
|
||||
@ApiModelProperty(value = "标签镜像码")
|
||||
/**镜像码*/
|
||||
@Excel(name = "镜像码", width = 15)
|
||||
@ApiModelProperty(value = "镜像码")
|
||||
private java.lang.String orgTagCode;
|
||||
/**创建人*/
|
||||
@ApiModelProperty(value = "创建人")
|
||||
|
|
|
|||
Loading…
Reference in New Issue