|
|
|
@ -28,16 +28,12 @@ public class QLccInvLedger extends RelationalPathBase<LccInvLedger> { |
|
|
|
public final StringPath ledgerRemark = createString("ledgerRemark"); |
|
|
|
/** 托盘条码 */ |
|
|
|
public final StringPath lpn = createString("lpn"); |
|
|
|
/** 改变前库存位置 */ |
|
|
|
public final StringPath locCodeBefore = createString("locCodeBefore"); |
|
|
|
/** 改变前堆叠层号从0开始 */ |
|
|
|
public final NumberPath<Integer> layerIndexBefore = createNumber("layerIndexBefore", Integer.class); |
|
|
|
/** 改变前库存数量 */ |
|
|
|
public final NumberPath<Integer> qtyBefore = createNumber("qtyBefore", Integer.class); |
|
|
|
/** 改变前入库占用数量 */ |
|
|
|
public final NumberPath<Integer> qtyInBefore = createNumber("qtyInBefore", Integer.class); |
|
|
|
/** 改变前出库占用数量 */ |
|
|
|
public final NumberPath<Integer> qtyOutBefore = createNumber("qtyOutBefore", Integer.class); |
|
|
|
/** 库存改变数量 */ |
|
|
|
public final NumberPath<Integer> qtyChange = createNumber("qtyChange", Integer.class); |
|
|
|
/** 入库占用改变数量 */ |
|
|
|
public final NumberPath<Integer> qtyInChange = createNumber("qtyInChange", Integer.class); |
|
|
|
/** 出库占用改变数量 */ |
|
|
|
public final NumberPath<Integer> qtyOutChange = createNumber("qtyOutChange", Integer.class); |
|
|
|
/** 改变后堆叠层号从0开始 */ |
|
|
|
public final NumberPath<Integer> layerIndex = createNumber("layerIndex", Integer.class); |
|
|
|
/** 改变前库存位置 */ |
|
|
|
@ -89,19 +85,17 @@ public class QLccInvLedger extends RelationalPathBase<LccInvLedger> { |
|
|
|
addMetadata(ledgerType, ColumnMetadata.named("ledger_type").withIndex(4).ofType(Types.VARCHAR).withSize(20)); |
|
|
|
addMetadata(ledgerRemark, ColumnMetadata.named("ledger_remark").withIndex(5).ofType(Types.VARCHAR).withSize(200)); |
|
|
|
addMetadata(lpn, ColumnMetadata.named("lpn").withIndex(6).ofType(Types.VARCHAR).withSize(50)); |
|
|
|
addMetadata(locCodeBefore, ColumnMetadata.named("loc_code_before").withIndex(7).ofType(Types.VARCHAR).withSize(50)); |
|
|
|
addMetadata(layerIndexBefore, ColumnMetadata.named("layer_index_before").withIndex(8).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyBefore, ColumnMetadata.named("qty_before").withIndex(9).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyInBefore, ColumnMetadata.named("qty_in_before").withIndex(10).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyOutBefore, ColumnMetadata.named("qty_out_before").withIndex(11).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(layerIndex, ColumnMetadata.named("layer_index").withIndex(12).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(locCode, ColumnMetadata.named("loc_code").withIndex(13).ofType(Types.VARCHAR).withSize(50)); |
|
|
|
addMetadata(qty, ColumnMetadata.named("qty").withIndex(14).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyIn, ColumnMetadata.named("qty_in").withIndex(15).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyOut, ColumnMetadata.named("qty_out").withIndex(16).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(createAt, ColumnMetadata.named("create_at").withIndex(17).ofType(Types.TIMESTAMP)); |
|
|
|
addMetadata(createBy, ColumnMetadata.named("create_by").withIndex(18).ofType(Types.VARCHAR).withSize(50)); |
|
|
|
addMetadata(updateAt, ColumnMetadata.named("update_at").withIndex(19).ofType(Types.TIMESTAMP)); |
|
|
|
addMetadata(updateBy, ColumnMetadata.named("update_by").withIndex(20).ofType(Types.VARCHAR).withSize(50)); |
|
|
|
addMetadata(qtyChange, ColumnMetadata.named("qty_change").withIndex(7).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyInChange, ColumnMetadata.named("qty_in_change").withIndex(8).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyOutChange, ColumnMetadata.named("qty_out_change").withIndex(9).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(layerIndex, ColumnMetadata.named("layer_index").withIndex(10).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(locCode, ColumnMetadata.named("loc_code").withIndex(11).ofType(Types.VARCHAR).withSize(50)); |
|
|
|
addMetadata(qty, ColumnMetadata.named("qty").withIndex(12).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyIn, ColumnMetadata.named("qty_in").withIndex(13).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(qtyOut, ColumnMetadata.named("qty_out").withIndex(14).ofType(Types.INTEGER).withSize(10)); |
|
|
|
addMetadata(createAt, ColumnMetadata.named("create_at").withIndex(15).ofType(Types.TIMESTAMP)); |
|
|
|
addMetadata(createBy, ColumnMetadata.named("create_by").withIndex(16).ofType(Types.VARCHAR).withSize(50)); |
|
|
|
addMetadata(updateAt, ColumnMetadata.named("update_at").withIndex(17).ofType(Types.TIMESTAMP)); |
|
|
|
addMetadata(updateBy, ColumnMetadata.named("update_by").withIndex(18).ofType(Types.VARCHAR).withSize(50)); |
|
|
|
} |
|
|
|
} |
|
|
|
|