From 4450dd41e8d5828e5da4d277c86e54551a6b6c15 Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Thu, 16 Dec 2021 09:06:28 +0800 Subject: [PATCH] 设备新增,修改是工艺字段可以为多个,修改mapper,sql --- screen-manage/src/main/java/com/moral/api/pojo/vo/device/DeviceVO.java | 50 ++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 42 insertions(+), 8 deletions(-) diff --git a/screen-manage/src/main/java/com/moral/api/pojo/vo/device/DeviceVO.java b/screen-manage/src/main/java/com/moral/api/pojo/vo/device/DeviceVO.java index d6b3ea6..eb1404c 100644 --- a/screen-manage/src/main/java/com/moral/api/pojo/vo/device/DeviceVO.java +++ b/screen-manage/src/main/java/com/moral/api/pojo/vo/device/DeviceVO.java @@ -4,30 +4,64 @@ import lombok.EqualsAndHashCode; import java.util.List; +import java.util.Map; import com.moral.api.entity.Device; +import com.moral.api.entity.GovMonitorPoint; import com.moral.api.entity.ManageAccount; +import com.moral.api.entity.MonitorPoint; import com.moral.api.entity.Organization; +import com.moral.api.entity.Version; @Data @EqualsAndHashCode(callSuper = false) public class DeviceVO extends Device { /* - * ������ - * */ - private String professionName; + * ������ + * */ + private List<Map<String, Object>> professions; + /* - * ������ - * */ + * ������ + * */ + private String techName; + + /* + * ��������� + * */ + private String detectorName; + + /* + * ��������� + * */ + private String purchaserName; + + /* + * ������ + * */ private Organization organization; /* - * ��������� - * */ - private List<ManageAccount> operators; + * ������������ + * */ + private Version version; + /* + * ������ + * */ + private MonitorPoint monitorPoint; + + /* + * ������������ + * */ + private GovMonitorPoint govMonitorPoint; + + /* + * ��������� + * */ + private List<ManageAccount> operators; } -- Gitblit v1.8.0