From 41a0c95f57dfce5373b1c16532451230882c0a5d Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期五, 13 六月 2025 12:41:30 +0800
Subject: [PATCH] 出库单据预览功能
---
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeviceBind.java | 27 ++++++++++++++++-----------
1 files changed, 16 insertions(+), 11 deletions(-)
diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeviceBind.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeviceBind.java
index dc98990..de84b15 100644
--- a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeviceBind.java
+++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeviceBind.java
@@ -88,6 +88,10 @@
@ApiModelProperty(value= "绌烘澘闈犺繎寮�鍏�")
private String emptySimilar;
+ @ApiModelProperty(value= "鏄惁鍒犻櫎 1: 鏄� 0: 鍚� ")
+ @TableLogic
+ private Integer deleted;
+
public DeviceBind() {}
public DeviceBind(Integer currentRow,Integer startRow,Integer endRow,Integer deviceQty,Integer startDeviceNo,Integer endDeviceNo,String staList,Integer typeId,String beSimilar,String emptySimilar) {
@@ -118,16 +122,17 @@
- public Boolean getStatusBool(){
- if (null == this.status){ return null; }
- switch (this.status){
- case 1:
- return true;
- case 0:
- return false;
- default:
- return null;
- }
- }
+// public Boolean getStatusBool(){
+// if (null == this.status){ return null; }
+// switch (this.status){
+// case 1:
+// return true;
+// case 0:
+// return false;
+// default:
+// return null;
+// }
+// }
+
}
--
Gitblit v1.9.1