瀏覽代碼

出库单表

user5 3 年之前
父節點
當前提交
7fc70bd331
共有 1 個文件被更改,包括 35 次插入2 次删除
  1. 35 2
      src/main/java/com/jeeplus/modules/supply/stockOut/entity/SupplyStockOut.java

+ 35 - 2
src/main/java/com/jeeplus/modules/supply/stockOut/entity/SupplyStockOut.java

@@ -1,8 +1,41 @@
 package com.jeeplus.modules.supply.stockOut.entity;
 
+import com.jeeplus.core.persistence.DataEntity;
+
 /**
- * @author: 大猫
+ * 出库单表
+ * @author: 徐滕
  * @create: 2022-02-25 08:53
  **/
-public class SupplyStockOut {
+public class SupplyStockOut extends DataEntity<SupplyStockOut> {
+    private String stockOutNumber;
+    private String wbsElement;
+    private String projectName;
+    private String projectDefinition;
+    private String materialNumber;
+    private String materialDescription;
+    private String batch;
+    private String unit;
+    private String actualQuantityIssued;
+    private String unitPrice;
+    private String money;
+    private String postingAccountDate;
+    private String supplierName;
+    private String factory;
+    private String pickingNumber;
+    private String pickingCreateBy;
+    private String pickingDepartment;
+    private String reservedNumber;
+    private String repertoryPlace;
+    private String ProjectPackageName;
+    private String stockOutPerson;
+    private String wbsElementDescription;
+    private String projectSecondClassification;
+    private String projectThirdlyClassification;
+    private String orderNumber;
+    private String assessType;
+    private String remarks;
+    private String stockOutImportDate;
+    private String accountantCertificate;
+    private String replyProof;
 }