|
@@ -2,7 +2,7 @@ package com.rongwei.bsentity.dto;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
-import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import lombok.*;
|
|
|
|
|
@@ -17,7 +17,7 @@ import java.util.Date;
|
|
|
public class OutsideInspactionSyncDto {
|
|
|
|
|
|
@TableField("ID")
|
|
|
- @JsonIgnoreProperties
|
|
|
+ @JsonIgnore
|
|
|
private String id;
|
|
|
|
|
|
/**
|
|
@@ -92,22 +92,36 @@ public class OutsideInspactionSyncDto {
|
|
|
* 二级单位
|
|
|
*/
|
|
|
@JsonProperty(value = "twolevel")
|
|
|
- private String twolevel;
|
|
|
+ @TableField("DEPARTNAME")
|
|
|
+ private String departName;
|
|
|
|
|
|
/**
|
|
|
* 车间
|
|
|
*/
|
|
|
- @TableField("WORKSHOPNAME")
|
|
|
+ @TableField("WORKSHOPID")
|
|
|
+ @JsonIgnore
|
|
|
+ private String workshopid;
|
|
|
+
|
|
|
+// /**
|
|
|
+// * 车间
|
|
|
+// */
|
|
|
+// @TableField("WORKSHOPNAME")
|
|
|
+// @JsonProperty(value = "threelevel")
|
|
|
+// private String workshopname;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 车间
|
|
|
+ */
|
|
|
+ @TableField("threelevel")
|
|
|
@JsonProperty(value = "threelevel")
|
|
|
- private String workshopname;
|
|
|
+ private String threelevel;
|
|
|
|
|
|
/**
|
|
|
* 分包商/劳务班组
|
|
|
*/
|
|
|
- @TableField("SUBCONTRACTORNAME")
|
|
|
+ @TableField("fourbase")
|
|
|
@JsonProperty(value = "fourbase")
|
|
|
- private String subcontractorname;
|
|
|
-
|
|
|
+ private String fourbase;
|
|
|
|
|
|
/**
|
|
|
* 递交
|
|
@@ -155,7 +169,7 @@ public class OutsideInspactionSyncDto {
|
|
|
* 检验员
|
|
|
*/
|
|
|
@TableField("CHECKERNAME")
|
|
|
- @JsonProperty(value = "checkername")
|
|
|
+ @JsonProperty(value = "inspector")
|
|
|
private String checkername;
|
|
|
|
|
|
/**
|
|
@@ -182,10 +196,10 @@ public class OutsideInspactionSyncDto {
|
|
|
/**
|
|
|
* 分包商类型
|
|
|
*/
|
|
|
- @JsonIgnoreProperties
|
|
|
+ @JsonIgnore
|
|
|
private String subcontractortype;
|
|
|
|
|
|
@TableField("LAUNCHTYPE")
|
|
|
- @JsonIgnoreProperties
|
|
|
+ @JsonIgnore
|
|
|
private String launchtype;
|
|
|
}
|