From 87e5654c26476fabd1156023350d7726092af8c1 Mon Sep 17 00:00:00 2001
From: jiazx0107 <jiazx0107@163.com>
Date: 星期日, 30 十一月 2025 18:28:41 +0800
Subject: [PATCH] 调整通知单

---
 fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/InoutConf.java |   35 ++++++++++++++++++++++++++++++++++-
 1 files changed, 34 insertions(+), 1 deletions(-)

diff --git a/fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/InoutConf.java b/fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/InoutConf.java
index 6e659d4..d2f50ff 100644
--- a/fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/InoutConf.java
+++ b/fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/InoutConf.java
@@ -97,7 +97,7 @@
     @TableField("snap_type")
     private String snapType;
 
-    @Column(name = "plate_snap_type", columnDefinition = "varchar(40) COMMENT '杞︾墝璇嗗埆鎶撴媿鏂瑰紡'")
+    @Column(name = "plate_snap_type", columnDefinition = "varchar(40) COMMENT '鎶撳浘璇嗗埆'")
     @TableField("plate_snap_type")
     private String plateSnapType;
 
@@ -121,4 +121,37 @@
     @Transient
     private String errorMsg;
 
+
+    public InoutConf() {
+        super();
+    }
+
+    public InoutConf(InoutConf conf) {
+        this.id = conf.getId();
+        this.deptId = conf.getDeptId();
+        this.sort = conf.getSort();
+        this.inOrder = conf.getInOrder();
+        this.inoutProgress = conf.getInoutProgress();
+        this.name = conf.getName();
+        this.sn = conf.getSn();
+        this.ip = conf.getIp();
+        this.port = conf.getPort();
+        this.loginId = conf.getLoginId();
+        this.pwd = conf.getPwd();
+        this.chanNum = conf.getChanNum();
+        this.portCtrl = conf.getPortCtrl();
+        this.type = conf.getType();
+        this.status = conf.getStatus();
+        this.protocol = conf.getProtocol();
+        this.playType = conf.getPlayType();
+        this.snapType = conf.getSnapType();
+        this.mediaAddr = conf.getMediaAddr();
+        this.remark = conf.getRemark();
+        this.errorMsg = conf.getErrorMsg();
+    }
+
+    public InoutConf(String sort) {
+        this.sort = sort;
+    }
+
 }

--
Gitblit v1.9.3