shenjingwei 3 недель назад
Родитель
Сommit
93f0403eb7
1 измененных файлов с 10 добавлено и 0 удалено
  1. 10 0
      src/custom/objectregister/sys_enterprise_sku_dbapply.java

+ 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)
 public class sys_enterprise_sku_dbapply {
+
+    @TableCol(title = "单据编号", column_type = YosObject.ColumnType.varchar)
+    public String billno;
+
     @TableCol(title = "申请调入企业ID", column_type = YosObject.ColumnType.bigint)
     public Long sys_enterpriseid_in = 0L;
 
     @TableCol(title = "申请调入企业仓库ID", column_type = YosObject.ColumnType.bigint)
     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)
     public Long sys_enterpriseid_out = 0L;
 
     @TableCol(title = "申请调出企业仓库ID", column_type = YosObject.ColumnType.bigint)
     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)
     public String sku;