From 03b5b8a480fb201e288486299eb385a00d2aac66 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期一, 13 十月 2025 09:25:16 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/ycawdasrs-2' into ycawdasrs-2
---
src/main/java/com/zy/third/entity/ExdOutstockSource.java | 193 ++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 193 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/zy/third/entity/ExdOutstockSource.java b/src/main/java/com/zy/third/entity/ExdOutstockSource.java
new file mode 100644
index 0000000..caee837
--- /dev/null
+++ b/src/main/java/com/zy/third/entity/ExdOutstockSource.java
@@ -0,0 +1,193 @@
+package com.zy.third.entity;
+
+import com.baomidou.mybatisplus.annotations.TableField;
+import com.baomidou.mybatisplus.annotations.TableId;
+import com.baomidou.mybatisplus.annotations.TableName;
+import java.io.Serializable;
+import java.math.BigDecimal;
+import java.util.Date;
+
+import com.baomidou.mybatisplus.enums.IdType;
+import lombok.Data;
+
+/**
+ *
+ * @TableName Exd_Outstock_Source
+ */
+@TableName(value ="Exd_Outstock_Source")
+@Data
+public class ExdOutstockSource implements Serializable {
+ /**
+ *
+ */
+ @TableId(value = "ID", type = IdType.AUTO)
+ private String ID;
+
+ /**
+ *
+ */
+ private Integer finterid;
+
+ /**
+ *
+ */
+ private String fbillno;
+
+ /**
+ *
+ */
+ private Integer ftrantype;
+
+ /**
+ *
+ */
+ private Date fdate;
+
+ /**
+ *
+ */
+ private Integer frob;
+
+ /**
+ *
+ */
+ private Integer fdeptid;
+
+ /**
+ *
+ */
+ private Integer fsupplyid;
+
+ /**
+ *
+ */
+ private Integer fbillerid;
+
+ /**
+ *
+ */
+ private Integer fentryid;
+
+ /**
+ *
+ */
+ private Integer fitemid;
+
+ /**
+ *
+ */
+ private Double fqty;
+
+ /**
+ *
+ */
+ private Double fprice;
+
+ /**
+ *
+ */
+ private String fbatchno;
+
+ /**
+ *
+ */
+ private Integer funitid;
+
+ /**
+ *
+ */
+ private String fsourcebillno;
+
+ /**
+ *
+ */
+ private Integer fsourceentryid;
+
+ /**
+ *
+ */
+ private Integer fsourceinterid;
+
+ /**
+ *
+ */
+ private Integer fsourcetrantype;
+
+ /**
+ *
+ */
+ private Integer fdcspid;
+
+ /**
+ *
+ */
+ private Integer fdcstockid;
+
+ /**
+ *
+ */
+ private Integer fscspid;
+
+ /**
+ *
+ */
+ private Integer fscstockid;
+
+ /**
+ *
+ */
+ private String forderbillno;
+
+ /**
+ *
+ */
+ private Integer forderentryid;
+
+ /**
+ *
+ */
+ private Integer forderinterid;
+
+ /**
+ *
+ */
+ private Integer fplanmode;
+
+ /**
+ *
+ */
+ private Date writetime;
+
+ /**
+ *
+ */
+ private String writor;
+
+ /**
+ *
+ */
+ private Integer status;
+
+ /**
+ *
+ */
+ private Date readtime;
+
+ /**
+ *
+ */
+ private String reador;
+
+ /**
+ *
+ */
+ private String writormsg;
+
+ /**
+ *
+ */
+ private String readormsg;
+
+ @TableField(exist = false)
+ private static final long serialVersionUID = 1L;
+}
\ No newline at end of file
--
Gitblit v1.9.1