From 4f2ae176faff8ef8429755e17492b703922f5a50 Mon Sep 17 00:00:00 2001 From: caozehui <2427765068@qq.com> Date: Wed, 21 May 2025 15:11:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/njcn/gather/device/pojo/param/PqDevParam.java | 3 +++ .../src/main/java/com/njcn/gather/device/pojo/po/PqDev.java | 4 ++++ 2 files changed, 7 insertions(+) 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; }