| | |
| | | @JsonIgnore |
| | | protected boolean isset_dealTime = false; |
| | | |
| | | private Integer lastRecord = null; |
| | | @JsonIgnore |
| | | protected boolean isset_lastRecord = false; |
| | | |
| | | /** |
| | | * 默认构造函数 |
| | | */ |
| | |
| | | return this.dealTime == null; |
| | | } |
| | | |
| | | public Integer getLastRecord() { |
| | | return this.lastRecord; |
| | | } |
| | | |
| | | public void setLastRecord(Integer lastRecord) { |
| | | this.lastRecord = lastRecord; |
| | | this.isset_lastRecord = true; |
| | | } |
| | | |
| | | @JsonIgnore |
| | | public boolean isEmptyLastRecord() { |
| | | return this.lastRecord == null; |
| | | } |
| | | |
| | | /** |
| | | * 重写 toString() 方法 |
| | | */ |
| | |
| | | .append("operatorId=").append(this.operatorId) |
| | | .append("operatorName=").append(this.operatorName) |
| | | .append("dealTime=").append(this.dealTime) |
| | | .append("lastRecord=").append(this.lastRecord) |
| | | .toString(); |
| | | } |
| | | |
| | |
| | | if (this.isset_dealTime) { |
| | | l_goods_user_record.setDealTime(this.getDealTime()); |
| | | } |
| | | if (this.isset_lastRecord) { |
| | | l_goods_user_record.setLastRecord(this.getLastRecord()); |
| | | } |
| | | return l_goods_user_record; |
| | | } |
| | | } |
| | |
| | | import com.walker.jdbc.sqlgen.InsertBuilder; |
| | | import com.walker.jdbc.sqlgen.SelectBuilder; |
| | | import com.walker.jdbc.sqlgen.UpdateBuilder; |
| | | import com.walker.jdbc.util.StringUtils; |
| | | |
| | | import org.springframework.jdbc.core.RowMapper; |
| | | |
| | | import java.sql.ResultSet; |
| | |
| | | public static final String OperatorId = "operator_id"; |
| | | public static final String OperatorName = "operator_name"; |
| | | public static final String DealTime = "deal_time"; |
| | | public static final String LastRecord = "last_record"; |
| | | |
| | | /** |
| | | * 默认构造函数 |
| | |
| | | } |
| | | if (lGoodsUserRecord.isset_dealTime) { |
| | | this.setDealTime(lGoodsUserRecord.getDealTime()); |
| | | } |
| | | if (lGoodsUserRecord.isset_lastRecord) { |
| | | this.setLastRecord(lGoodsUserRecord.getLastRecord()); |
| | | } |
| | | // 去掉,2022-09-07 |
| | | // this.setDatabaseName_(l_goods_user_record.getDatabaseName_()); |
| | |
| | | ib.set(OperatorId, this.getOperatorId(), this.isset_operatorId); |
| | | ib.set(OperatorName, this.getOperatorName(), this.isset_operatorName); |
| | | ib.set(DealTime, this.getDealTime(), this.isset_dealTime); |
| | | ib.set(LastRecord, this.getLastRecord(), this.isset_lastRecord); |
| | | return ib.genMapSql(); |
| | | } |
| | | |
| | |
| | | ub.set(OperatorId, this.getOperatorId(), this.isset_operatorId); |
| | | ub.set(OperatorName, this.getOperatorName(), this.isset_operatorName); |
| | | ub.set(DealTime, this.getDealTime(), this.isset_dealTime); |
| | | ub.set(LastRecord, this.getLastRecord(), this.isset_lastRecord); |
| | | ub.where(this.getPkName_(), this.getPkValue_()); |
| | | return ub.genMapSql(); |
| | | } |
| | |
| | | ub.set(OperatorId, this.getOperatorId(), this.isset_operatorId); |
| | | ub.set(OperatorName, this.getOperatorName(), this.isset_operatorName); |
| | | ub.set(DealTime, this.getDealTime(), this.isset_dealTime); |
| | | ub.set(LastRecord, this.getLastRecord(), this.isset_lastRecord); |
| | | return ub.genMapSql(where, parameters); |
| | | } |
| | | |
| | |
| | | ub.set(OperatorId, this.getOperatorId(), this.isset_operatorId); |
| | | ub.set(OperatorName, this.getOperatorName(), this.isset_operatorName); |
| | | ub.set(DealTime, this.getDealTime(), this.isset_dealTime); |
| | | ub.set(LastRecord, this.getLastRecord(), this.isset_lastRecord); |
| | | return ub.genArraySql(where, parameters); |
| | | } |
| | | |
| | |
| | | */ |
| | | @Override |
| | | public SqlAndParameters<Map<String, Object>> getSelectSql_(String where, Map<String, Object> parameters) { |
| | | return new SqlAndParameters<>("select id, wh_goods_id, record_type, trans_business_id, now_user_phone, now_user_name, operator_id, operator_name, deal_time from " + this.getTableName_() + " " + where, parameters); |
| | | return new SqlAndParameters<>("select id, wh_goods_id, record_type, trans_business_id, now_user_phone, now_user_name, operator_id, operator_name, deal_time, last_record from " + this.getTableName_() + " " + where, parameters); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Override |
| | | public SqlAndParameters<Object[]> getSelectSql_(String where, Object[] parameters) { |
| | | return new SqlAndParameters<>("select id, wh_goods_id, record_type, trans_business_id, now_user_phone, now_user_name, operator_id, operator_name, deal_time from " + this.getTableName_() + " " + where, parameters); |
| | | return new SqlAndParameters<>("select id, wh_goods_id, record_type, trans_business_id, now_user_phone, now_user_name, operator_id, operator_name, deal_time, last_record from " + this.getTableName_() + " " + where, parameters); |
| | | } |
| | | |
| | | /** |
| | |
| | | l_goods_user_record.setDealTime(rs.getLong(columnIndex)); |
| | | } |
| | | } |
| | | columnIndex = resultSetUtils.findColumn(rs, LGoodsUserRecord_mapper.LastRecord); |
| | | if (columnIndex > 0) { |
| | | if (rs.getBigDecimal(columnIndex) == null) { |
| | | l_goods_user_record.setLastRecord(null); |
| | | } else { |
| | | l_goods_user_record.setLastRecord(rs.getInt(columnIndex)); |
| | | } |
| | | } |
| | | return l_goods_user_record; |
| | | } |
| | | } |
| | |
| | | @JsonIgnore |
| | | protected boolean isset_dealTime = false; |
| | | |
| | | private Integer lastRecord = null; |
| | | @JsonIgnore |
| | | protected boolean isset_lastRecord = false; |
| | | |
| | | /** |
| | | * 默认构造函数 |
| | | */ |
| | |
| | | return this.dealTime == null; |
| | | } |
| | | |
| | | public Integer getLastRecord() { |
| | | return this.lastRecord; |
| | | } |
| | | |
| | | public void setLastRecord(Integer lastRecord) { |
| | | this.lastRecord = lastRecord; |
| | | this.isset_lastRecord = true; |
| | | } |
| | | |
| | | @JsonIgnore |
| | | public boolean isEmptyLastRecord() { |
| | | return this.lastRecord == null; |
| | | } |
| | | |
| | | /** |
| | | * 重写 toString() 方法 |
| | | */ |
| | |
| | | .append("warehouseType=").append(this.warehouseType) |
| | | .append("warehouseId=").append(this.warehouseId) |
| | | .append("dealTime=").append(this.dealTime) |
| | | .append("lastRecord=").append(this.lastRecord) |
| | | .toString(); |
| | | } |
| | | |
| | |
| | | if (this.isset_dealTime) { |
| | | l_goods_wh_record.setDealTime(this.getDealTime()); |
| | | } |
| | | if (this.isset_lastRecord) { |
| | | l_goods_wh_record.setLastRecord(this.getLastRecord()); |
| | | } |
| | | return l_goods_wh_record; |
| | | } |
| | | } |
| | |
| | | public static final String WarehouseType = "warehouse_type"; |
| | | public static final String WarehouseId = "warehouse_id"; |
| | | public static final String DealTime = "deal_time"; |
| | | public static final String LastRecord = "last_record"; |
| | | |
| | | /** |
| | | * 默认构造函数 |
| | |
| | | } |
| | | if (lGoodsWhRecord.isset_dealTime) { |
| | | this.setDealTime(lGoodsWhRecord.getDealTime()); |
| | | } |
| | | if (lGoodsWhRecord.isset_lastRecord) { |
| | | this.setLastRecord(lGoodsWhRecord.getLastRecord()); |
| | | } |
| | | // 去掉,2022-09-07 |
| | | // this.setDatabaseName_(l_goods_wh_record.getDatabaseName_()); |
| | |
| | | ib.set(WarehouseType, this.getWarehouseType(), this.isset_warehouseType); |
| | | ib.set(WarehouseId, this.getWarehouseId(), this.isset_warehouseId); |
| | | ib.set(DealTime, this.getDealTime(), this.isset_dealTime); |
| | | ib.set(LastRecord, this.getLastRecord(), this.isset_lastRecord); |
| | | return ib.genMapSql(); |
| | | } |
| | | |
| | |
| | | ub.set(WarehouseType, this.getWarehouseType(), this.isset_warehouseType); |
| | | ub.set(WarehouseId, this.getWarehouseId(), this.isset_warehouseId); |
| | | ub.set(DealTime, this.getDealTime(), this.isset_dealTime); |
| | | ub.set(LastRecord, this.getLastRecord(), this.isset_lastRecord); |
| | | ub.where(this.getPkName_(), this.getPkValue_()); |
| | | return ub.genMapSql(); |
| | | } |
| | |
| | | ub.set(WarehouseType, this.getWarehouseType(), this.isset_warehouseType); |
| | | ub.set(WarehouseId, this.getWarehouseId(), this.isset_warehouseId); |
| | | ub.set(DealTime, this.getDealTime(), this.isset_dealTime); |
| | | ub.set(LastRecord, this.getLastRecord(), this.isset_lastRecord); |
| | | return ub.genMapSql(where, parameters); |
| | | } |
| | | |
| | |
| | | ub.set(WarehouseType, this.getWarehouseType(), this.isset_warehouseType); |
| | | ub.set(WarehouseId, this.getWarehouseId(), this.isset_warehouseId); |
| | | ub.set(DealTime, this.getDealTime(), this.isset_dealTime); |
| | | ub.set(LastRecord, this.getLastRecord(), this.isset_lastRecord); |
| | | return ub.genArraySql(where, parameters); |
| | | } |
| | | |
| | |
| | | */ |
| | | @Override |
| | | public SqlAndParameters<Map<String, Object>> getSelectSql_(String where, Map<String, Object> parameters) { |
| | | return new SqlAndParameters<>("select id, warehouse_flow_id, wh_goods_id, warehouse_type, warehouse_id, deal_time from " + this.getTableName_() + " " + where, parameters); |
| | | return new SqlAndParameters<>("select id, warehouse_flow_id, wh_goods_id, warehouse_type, warehouse_id, deal_time, last_record from " + this.getTableName_() + " " + where, parameters); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Override |
| | | public SqlAndParameters<Object[]> getSelectSql_(String where, Object[] parameters) { |
| | | return new SqlAndParameters<>("select id, warehouse_flow_id, wh_goods_id, warehouse_type, warehouse_id, deal_time from " + this.getTableName_() + " " + where, parameters); |
| | | return new SqlAndParameters<>("select id, warehouse_flow_id, wh_goods_id, warehouse_type, warehouse_id, deal_time, last_record from " + this.getTableName_() + " " + where, parameters); |
| | | } |
| | | |
| | | /** |
| | |
| | | l_goods_wh_record.setDealTime(rs.getLong(columnIndex)); |
| | | } |
| | | } |
| | | columnIndex = resultSetUtils.findColumn(rs, LGoodsWhRecord_mapper.LastRecord); |
| | | if (columnIndex > 0) { |
| | | if (rs.getBigDecimal(columnIndex) == null) { |
| | | l_goods_wh_record.setLastRecord(null); |
| | | } else { |
| | | l_goods_wh_record.setLastRecord(rs.getInt(columnIndex)); |
| | | } |
| | | } |
| | | return l_goods_wh_record; |
| | | } |
| | | } |
| | |
| | | @JsonIgnore |
| | | protected boolean isset_stopTime = false; |
| | | |
| | | private Long inWarehouseFormId = null; |
| | | @JsonIgnore |
| | | protected boolean isset_inWarehouseFormId = false; |
| | | |
| | | private Long inBusinessFormCode = null; |
| | | @JsonIgnore |
| | | protected boolean isset_inBusinessFormCode = false; |
| | | |
| | | private Long outWarehouseFormId = null; |
| | | @JsonIgnore |
| | | protected boolean isset_outWarehouseFormId = false; |
| | | |
| | | private Long outBusinessFormCode = null; |
| | | @JsonIgnore |
| | | protected boolean isset_outBusinessFormCode = false; |
| | | |
| | | /** |
| | | * 默认构造函数 |
| | | */ |
| | |
| | | return this.stopTime == null; |
| | | } |
| | | |
| | | public Long getInWarehouseFormId() { |
| | | return this.inWarehouseFormId; |
| | | } |
| | | |
| | | public void setInWarehouseFormId(Long inWarehouseFormId) { |
| | | this.inWarehouseFormId = inWarehouseFormId; |
| | | this.isset_inWarehouseFormId = true; |
| | | } |
| | | |
| | | @JsonIgnore |
| | | public boolean isEmptyInWarehouseFormId() { |
| | | return this.inWarehouseFormId == null; |
| | | } |
| | | |
| | | public Long getInBusinessFormCode() { |
| | | return this.inBusinessFormCode; |
| | | } |
| | | |
| | | public void setInBusinessFormCode(Long inBusinessFormCode) { |
| | | this.inBusinessFormCode = inBusinessFormCode; |
| | | this.isset_inBusinessFormCode = true; |
| | | } |
| | | |
| | | @JsonIgnore |
| | | public boolean isEmptyInBusinessFormCode() { |
| | | return this.inBusinessFormCode == null; |
| | | } |
| | | |
| | | public Long getOutWarehouseFormId() { |
| | | return this.outWarehouseFormId; |
| | | } |
| | | |
| | | public void setOutWarehouseFormId(Long outWarehouseFormId) { |
| | | this.outWarehouseFormId = outWarehouseFormId; |
| | | this.isset_outWarehouseFormId = true; |
| | | } |
| | | |
| | | @JsonIgnore |
| | | public boolean isEmptyOutWarehouseFormId() { |
| | | return this.outWarehouseFormId == null; |
| | | } |
| | | |
| | | public Long getOutBusinessFormCode() { |
| | | return this.outBusinessFormCode; |
| | | } |
| | | |
| | | public void setOutBusinessFormCode(Long outBusinessFormCode) { |
| | | this.outBusinessFormCode = outBusinessFormCode; |
| | | this.isset_outBusinessFormCode = true; |
| | | } |
| | | |
| | | @JsonIgnore |
| | | public boolean isEmptyOutBusinessFormCode() { |
| | | return this.outBusinessFormCode == null; |
| | | } |
| | | |
| | | /** |
| | | * 重写 toString() 方法 |
| | | */ |
| | |
| | | .append("inventoryDate=").append(this.inventoryDate) |
| | | .append("createTime=").append(this.createTime) |
| | | .append("stopTime=").append(this.stopTime) |
| | | .append("inWarehouseFormId=").append(this.inWarehouseFormId) |
| | | .append("inBusinessFormCode=").append(this.inBusinessFormCode) |
| | | .append("outWarehouseFormId=").append(this.outWarehouseFormId) |
| | | .append("outBusinessFormCode=").append(this.outBusinessFormCode) |
| | | .toString(); |
| | | } |
| | | |
| | |
| | | if (this.isset_stopTime) { |
| | | l_wh_form_inventory.setStopTime(this.getStopTime()); |
| | | } |
| | | if (this.isset_inWarehouseFormId) { |
| | | l_wh_form_inventory.setInWarehouseFormId(this.getInWarehouseFormId()); |
| | | } |
| | | if (this.isset_inBusinessFormCode) { |
| | | l_wh_form_inventory.setInBusinessFormCode(this.getInBusinessFormCode()); |
| | | } |
| | | if (this.isset_outWarehouseFormId) { |
| | | l_wh_form_inventory.setOutWarehouseFormId(this.getOutWarehouseFormId()); |
| | | } |
| | | if (this.isset_outBusinessFormCode) { |
| | | l_wh_form_inventory.setOutBusinessFormCode(this.getOutBusinessFormCode()); |
| | | } |
| | | return l_wh_form_inventory; |
| | | } |
| | | } |
| | |
| | | public static final String InventoryDate = "inventory_date"; |
| | | public static final String CreateTime = "create_time"; |
| | | public static final String StopTime = "stop_time"; |
| | | public static final String InWarehouseFormId = "in_warehouse_form_id"; |
| | | public static final String InBusinessFormCode = "in_business_form_code"; |
| | | public static final String OutWarehouseFormId = "out_warehouse_form_id"; |
| | | public static final String OutBusinessFormCode = "out_business_form_code"; |
| | | |
| | | /** |
| | | * 默认构造函数 |
| | |
| | | if (lWhFormInventory.isset_stopTime) { |
| | | this.setStopTime(lWhFormInventory.getStopTime()); |
| | | } |
| | | if (lWhFormInventory.isset_inWarehouseFormId) { |
| | | this.setInWarehouseFormId(lWhFormInventory.getInWarehouseFormId()); |
| | | } |
| | | if (lWhFormInventory.isset_inBusinessFormCode) { |
| | | this.setInBusinessFormCode(lWhFormInventory.getInBusinessFormCode()); |
| | | } |
| | | if (lWhFormInventory.isset_outWarehouseFormId) { |
| | | this.setOutWarehouseFormId(lWhFormInventory.getOutWarehouseFormId()); |
| | | } |
| | | if (lWhFormInventory.isset_outBusinessFormCode) { |
| | | this.setOutBusinessFormCode(lWhFormInventory.getOutBusinessFormCode()); |
| | | } |
| | | // 去掉,2022-09-07 |
| | | // this.setDatabaseName_(l_wh_form_inventory.getDatabaseName_()); |
| | | } |
| | |
| | | ib.set(InventoryDate, this.getInventoryDate(), this.isset_inventoryDate); |
| | | ib.set(CreateTime, this.getCreateTime(), this.isset_createTime); |
| | | ib.set(StopTime, this.getStopTime(), this.isset_stopTime); |
| | | ib.set(InWarehouseFormId, this.getInWarehouseFormId(), this.isset_inWarehouseFormId); |
| | | ib.set(InBusinessFormCode, this.getInBusinessFormCode(), this.isset_inBusinessFormCode); |
| | | ib.set(OutWarehouseFormId, this.getOutWarehouseFormId(), this.isset_outWarehouseFormId); |
| | | ib.set(OutBusinessFormCode, this.getOutBusinessFormCode(), this.isset_outBusinessFormCode); |
| | | return ib.genMapSql(); |
| | | } |
| | | |
| | |
| | | ub.set(InventoryDate, this.getInventoryDate(), this.isset_inventoryDate); |
| | | ub.set(CreateTime, this.getCreateTime(), this.isset_createTime); |
| | | ub.set(StopTime, this.getStopTime(), this.isset_stopTime); |
| | | ub.set(InWarehouseFormId, this.getInWarehouseFormId(), this.isset_inWarehouseFormId); |
| | | ub.set(InBusinessFormCode, this.getInBusinessFormCode(), this.isset_inBusinessFormCode); |
| | | ub.set(OutWarehouseFormId, this.getOutWarehouseFormId(), this.isset_outWarehouseFormId); |
| | | ub.set(OutBusinessFormCode, this.getOutBusinessFormCode(), this.isset_outBusinessFormCode); |
| | | ub.where(this.getPkName_(), this.getPkValue_()); |
| | | return ub.genMapSql(); |
| | | } |
| | |
| | | ub.set(InventoryDate, this.getInventoryDate(), this.isset_inventoryDate); |
| | | ub.set(CreateTime, this.getCreateTime(), this.isset_createTime); |
| | | ub.set(StopTime, this.getStopTime(), this.isset_stopTime); |
| | | ub.set(InWarehouseFormId, this.getInWarehouseFormId(), this.isset_inWarehouseFormId); |
| | | ub.set(InBusinessFormCode, this.getInBusinessFormCode(), this.isset_inBusinessFormCode); |
| | | ub.set(OutWarehouseFormId, this.getOutWarehouseFormId(), this.isset_outWarehouseFormId); |
| | | ub.set(OutBusinessFormCode, this.getOutBusinessFormCode(), this.isset_outBusinessFormCode); |
| | | return ub.genMapSql(where, parameters); |
| | | } |
| | | |
| | |
| | | ub.set(InventoryDate, this.getInventoryDate(), this.isset_inventoryDate); |
| | | ub.set(CreateTime, this.getCreateTime(), this.isset_createTime); |
| | | ub.set(StopTime, this.getStopTime(), this.isset_stopTime); |
| | | ub.set(InWarehouseFormId, this.getInWarehouseFormId(), this.isset_inWarehouseFormId); |
| | | ub.set(InBusinessFormCode, this.getInBusinessFormCode(), this.isset_inBusinessFormCode); |
| | | ub.set(OutWarehouseFormId, this.getOutWarehouseFormId(), this.isset_outWarehouseFormId); |
| | | ub.set(OutBusinessFormCode, this.getOutBusinessFormCode(), this.isset_outBusinessFormCode); |
| | | return ub.genArraySql(where, parameters); |
| | | } |
| | | |
| | |
| | | */ |
| | | @Override |
| | | public SqlAndParameters<Map<String, Object>> getSelectSql_(String where, Map<String, Object> parameters) { |
| | | return new SqlAndParameters<>("select id, business_form_code, business_form_name, warehouse_type, warehouse_id, warehouse_name, operator_id, operator_name, states, operator_id2, operator_name2, beiz1, agency_id, agency_name, creator_id, creator_name, inventory_date, create_time, stop_time from " + this.getTableName_() + " " + where, parameters); |
| | | return new SqlAndParameters<>("select id, business_form_code, business_form_name, warehouse_type, warehouse_id, warehouse_name, operator_id, operator_name, states, operator_id2, operator_name2, beiz1, agency_id, agency_name, creator_id, creator_name, inventory_date, create_time, stop_time, in_warehouse_form_id, in_business_form_code, out_warehouse_form_id, out_business_form_code from " + this.getTableName_() + " " + where, parameters); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Override |
| | | public SqlAndParameters<Object[]> getSelectSql_(String where, Object[] parameters) { |
| | | return new SqlAndParameters<>("select id, business_form_code, business_form_name, warehouse_type, warehouse_id, warehouse_name, operator_id, operator_name, states, operator_id2, operator_name2, beiz1, agency_id, agency_name, creator_id, creator_name, inventory_date, create_time, stop_time from " + this.getTableName_() + " " + where, parameters); |
| | | return new SqlAndParameters<>("select id, business_form_code, business_form_name, warehouse_type, warehouse_id, warehouse_name, operator_id, operator_name, states, operator_id2, operator_name2, beiz1, agency_id, agency_name, creator_id, creator_name, inventory_date, create_time, stop_time, in_warehouse_form_id, in_business_form_code, out_warehouse_form_id, out_business_form_code from " + this.getTableName_() + " " + where, parameters); |
| | | } |
| | | |
| | | /** |
| | |
| | | l_wh_form_inventory.setStopTime(rs.getLong(columnIndex)); |
| | | } |
| | | } |
| | | columnIndex = resultSetUtils.findColumn(rs, LWhFormInventory_mapper.InWarehouseFormId); |
| | | if (columnIndex > 0) { |
| | | if (rs.getBigDecimal(columnIndex) == null) { |
| | | l_wh_form_inventory.setInWarehouseFormId(null); |
| | | } else { |
| | | l_wh_form_inventory.setInWarehouseFormId(rs.getLong(columnIndex)); |
| | | } |
| | | } |
| | | columnIndex = resultSetUtils.findColumn(rs, LWhFormInventory_mapper.InBusinessFormCode); |
| | | if (columnIndex > 0) { |
| | | if (rs.getBigDecimal(columnIndex) == null) { |
| | | l_wh_form_inventory.setInBusinessFormCode(null); |
| | | } else { |
| | | l_wh_form_inventory.setInBusinessFormCode(rs.getLong(columnIndex)); |
| | | } |
| | | } |
| | | columnIndex = resultSetUtils.findColumn(rs, LWhFormInventory_mapper.OutWarehouseFormId); |
| | | if (columnIndex > 0) { |
| | | if (rs.getBigDecimal(columnIndex) == null) { |
| | | l_wh_form_inventory.setOutWarehouseFormId(null); |
| | | } else { |
| | | l_wh_form_inventory.setOutWarehouseFormId(rs.getLong(columnIndex)); |
| | | } |
| | | } |
| | | columnIndex = resultSetUtils.findColumn(rs, LWhFormInventory_mapper.OutBusinessFormCode); |
| | | if (columnIndex > 0) { |
| | | if (rs.getBigDecimal(columnIndex) == null) { |
| | | l_wh_form_inventory.setOutBusinessFormCode(null); |
| | | } else { |
| | | l_wh_form_inventory.setOutBusinessFormCode(rs.getLong(columnIndex)); |
| | | } |
| | | } |
| | | return l_wh_form_inventory; |
| | | } |
| | | } |