|
@@ -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;
|
|
|
}
|