Przeglądaj źródła

新增调拨申请

shenjingwei 3 tygodni temu
rodzic
commit
93f0403eb7

+ 10 - 0
src/custom/objectregister/sys_enterprise_sku_dbapply.java

@@ -6,18 +6,28 @@ import common.data.db.initialization.base.YosObject;
 
 
 @Table(comment = "企业序列号调拨申请", uniquecolumn = "sys_enterprise_sku_dbapplyid", issystem = false)
 @Table(comment = "企业序列号调拨申请", uniquecolumn = "sys_enterprise_sku_dbapplyid", issystem = false)
 public class sys_enterprise_sku_dbapply {
 public class sys_enterprise_sku_dbapply {
+
+    @TableCol(title = "单据编号", column_type = YosObject.ColumnType.varchar)
+    public String billno;
+
     @TableCol(title = "申请调入企业ID", column_type = YosObject.ColumnType.bigint)
     @TableCol(title = "申请调入企业ID", column_type = YosObject.ColumnType.bigint)
     public Long sys_enterpriseid_in = 0L;
     public Long sys_enterpriseid_in = 0L;
 
 
     @TableCol(title = "申请调入企业仓库ID", column_type = YosObject.ColumnType.bigint)
     @TableCol(title = "申请调入企业仓库ID", column_type = YosObject.ColumnType.bigint)
     public Long sys_enterprise_stockid_in = 0L;
     public Long sys_enterprise_stockid_in = 0L;
 
 
+    @TableCol(title = "入库单ID", column_type = YosObject.ColumnType.bigint)
+    public Long stockbillid_in = 0L;
+
     @TableCol(title = "申请调出企业ID", column_type = YosObject.ColumnType.bigint)
     @TableCol(title = "申请调出企业ID", column_type = YosObject.ColumnType.bigint)
     public Long sys_enterpriseid_out = 0L;
     public Long sys_enterpriseid_out = 0L;
 
 
     @TableCol(title = "申请调出企业仓库ID", column_type = YosObject.ColumnType.bigint)
     @TableCol(title = "申请调出企业仓库ID", column_type = YosObject.ColumnType.bigint)
     public Long sys_enterprise_stockid_out = 0L;
     public Long sys_enterprise_stockid_out = 0L;
 
 
+    @TableCol(title = "出库单ID", column_type = YosObject.ColumnType.bigint)
+    public Long stockbillid_out = 0L;
+
     @TableCol(title = "申请调拨序列号", column_type = YosObject.ColumnType.varchar, numeric_precision = 500, is_nullable = false)
     @TableCol(title = "申请调拨序列号", column_type = YosObject.ColumnType.varchar, numeric_precision = 500, is_nullable = false)
     public String sku;
     public String sku;