Commit 797c9245 authored by suhuiguang's avatar suhuiguang

1.增加唯一流水号,用来关联检验检测信息同步的数据

parent 54d10f2c
...@@ -119,11 +119,6 @@ public class JyjcInspectionResult extends BaseEntity { ...@@ -119,11 +119,6 @@ public class JyjcInspectionResult extends BaseEntity {
@TableField("non_conformance") @TableField("non_conformance")
private String nonConformance; private String nonConformance;
// /**
// * 整改情况
// */
// @TableField("rectification")
// private String rectification;
/** /**
* 备注(无用预留) * 备注(无用预留)
...@@ -180,4 +175,11 @@ public class JyjcInspectionResult extends BaseEntity { ...@@ -180,4 +175,11 @@ public class JyjcInspectionResult extends BaseEntity {
*/ */
@TableField("equ_define") @TableField("equ_define")
private String equDefine; private String equDefine;
/**
* 校验检验系统唯一流水号,排查问题,跟踪问题使用
*/
@TableField("trace_id")
private String traceId;
} }
...@@ -152,4 +152,9 @@ public class JyjcInspectionResultModel extends BaseModel { ...@@ -152,4 +152,9 @@ public class JyjcInspectionResultModel extends BaseModel {
@ApiModelProperty(value = "监管码") @ApiModelProperty(value = "监管码")
private String supervisoryCode; private String supervisoryCode;
/**
* 校验检验系统唯一流水号,排查问题,跟踪问题使用
*/
private String traceId;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment