From e7bc156f901b06e5af54cfe86fe53e7491af7b7f Mon Sep 17 00:00:00 2001 From: kaiyu <404897439@qq.com> Date: Thu, 20 May 2021 10:22:27 +0800 Subject: [PATCH] Merge branch 'dev' of http://blit.7drlb.com:8888/r/moral into dev --- screen-manage/src/main/java/com/moral/api/pojo/vo/device/DeviceVO.java | 41 ++++++++++++++++++++++++++++++++++------- 1 files changed, 34 insertions(+), 7 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..ffb4c28 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 @@ -7,27 +7,54 @@ import com.moral.api.entity.Device; 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 String techName; + + /* + * ��������� + * */ + private String detectorName; + + /* + * ��������� + * */ + private String purchaserName; + + /* + * ������ + * */ private Organization organization; /* - * ��������� - * */ - private List<ManageAccount> operators; + * ������������ + * */ + private Version version; + /* + * ������ + * */ + private MonitorPoint monitorPoint; + + /* + * ��������� + * */ + private List<ManageAccount> operators; } -- Gitblit v1.8.0