diff --git a/detection/src/main/java/com/njcn/gather/device/pojo/param/PqDevParam.java b/detection/src/main/java/com/njcn/gather/device/pojo/param/PqDevParam.java index 3d2f23b3..f34e342b 100644 --- a/detection/src/main/java/com/njcn/gather/device/pojo/param/PqDevParam.java +++ b/detection/src/main/java/com/njcn/gather/device/pojo/param/PqDevParam.java @@ -119,6 +119,9 @@ public class PqDevParam { @ApiModelProperty("预投计划") private String preinvestmentPlan; + @ApiModelProperty("委托方") + private String delegate; + /** * 更新操作实体 */ diff --git a/detection/src/main/java/com/njcn/gather/device/pojo/po/PqDev.java b/detection/src/main/java/com/njcn/gather/device/pojo/po/PqDev.java index 66a5c6a4..08427a27 100644 --- a/detection/src/main/java/com/njcn/gather/device/pojo/po/PqDev.java +++ b/detection/src/main/java/com/njcn/gather/device/pojo/po/PqDev.java @@ -211,5 +211,9 @@ public class PqDev extends BaseEntity implements Serializable { */ private Float humidity; + /** + * 委托方 + */ + private String delegate; }