|
@@ -37,25 +37,25 @@ public class WmspInventoryClose implements IBasePO<BigDecimal> {
|
|
* 上个月库存(上一个结转周期(每个月25号)留存的库存)(CLOSE_LASTMONTH_INVENTORY,DECIMAL,0)
|
|
* 上个月库存(上一个结转周期(每个月25号)留存的库存)(CLOSE_LASTMONTH_INVENTORY,DECIMAL,0)
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value="上个月库存(上一个结转周期(每个月25号)留存的库存)",required=false)
|
|
@ApiModelProperty(value="上个月库存(上一个结转周期(每个月25号)留存的库存)",required=false)
|
|
- private Short closeLastmonthInventory;
|
|
|
|
|
|
+ private BigDecimal closeLastmonthInventory;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 本月入库(生产入库+退货入库+盘盈 = 本月入库)(CLOSE_THISMONTH_INBOUND,DECIMAL,0)
|
|
* 本月入库(生产入库+退货入库+盘盈 = 本月入库)(CLOSE_THISMONTH_INBOUND,DECIMAL,0)
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value="本月入库(生产入库+退货入库+盘盈 = 本月入库)",required=false)
|
|
@ApiModelProperty(value="本月入库(生产入库+退货入库+盘盈 = 本月入库)",required=false)
|
|
- private Short closeThismonthInbound;
|
|
|
|
|
|
+ private BigDecimal closeThismonthInbound;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 本月出库(出库+盘亏=本月出库)(CLOSE_THISMONTH_OUTBOUND,DECIMAL,0)
|
|
* 本月出库(出库+盘亏=本月出库)(CLOSE_THISMONTH_OUTBOUND,DECIMAL,0)
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value="本月出库(出库+盘亏=本月出库)",required=false)
|
|
@ApiModelProperty(value="本月出库(出库+盘亏=本月出库)",required=false)
|
|
- private Short closeThismonthOutbound;
|
|
|
|
|
|
+ private BigDecimal closeThismonthOutbound;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 本月库存(上月库存 + 本月入库 — 本月出库 = 本月库存)(CLOSE_THISMONTH_INVENTORY,DECIMAL,0)
|
|
* 本月库存(上月库存 + 本月入库 — 本月出库 = 本月库存)(CLOSE_THISMONTH_INVENTORY,DECIMAL,0)
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value="本月库存(上月库存 + 本月入库 — 本月出库 = 本月库存)",required=false)
|
|
@ApiModelProperty(value="本月库存(上月库存 + 本月入库 — 本月出库 = 本月库存)",required=false)
|
|
- private Short closeThismonthInventory;
|
|
|
|
|
|
+ private BigDecimal closeThismonthInventory;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 记录创建人(INSERT_USERNAME,VARCHAR,20)
|
|
* 记录创建人(INSERT_USERNAME,VARCHAR,20)
|
|
@@ -137,35 +137,35 @@ public class WmspInventoryClose implements IBasePO<BigDecimal> {
|
|
this.warehouseId = warehouseId;
|
|
this.warehouseId = warehouseId;
|
|
}
|
|
}
|
|
|
|
|
|
- public Short getCloseLastmonthInventory() {
|
|
|
|
|
|
+ public BigDecimal getCloseLastmonthInventory() {
|
|
return closeLastmonthInventory;
|
|
return closeLastmonthInventory;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setCloseLastmonthInventory(Short closeLastmonthInventory) {
|
|
|
|
|
|
+ public void setCloseLastmonthInventory(BigDecimal closeLastmonthInventory) {
|
|
this.closeLastmonthInventory = closeLastmonthInventory;
|
|
this.closeLastmonthInventory = closeLastmonthInventory;
|
|
}
|
|
}
|
|
|
|
|
|
- public Short getCloseThismonthInbound() {
|
|
|
|
|
|
+ public BigDecimal getCloseThismonthInbound() {
|
|
return closeThismonthInbound;
|
|
return closeThismonthInbound;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setCloseThismonthInbound(Short closeThismonthInbound) {
|
|
|
|
|
|
+ public void setCloseThismonthInbound(BigDecimal closeThismonthInbound) {
|
|
this.closeThismonthInbound = closeThismonthInbound;
|
|
this.closeThismonthInbound = closeThismonthInbound;
|
|
}
|
|
}
|
|
|
|
|
|
- public Short getCloseThismonthOutbound() {
|
|
|
|
|
|
+ public BigDecimal getCloseThismonthOutbound() {
|
|
return closeThismonthOutbound;
|
|
return closeThismonthOutbound;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setCloseThismonthOutbound(Short closeThismonthOutbound) {
|
|
|
|
|
|
+ public void setCloseThismonthOutbound(BigDecimal closeThismonthOutbound) {
|
|
this.closeThismonthOutbound = closeThismonthOutbound;
|
|
this.closeThismonthOutbound = closeThismonthOutbound;
|
|
}
|
|
}
|
|
|
|
|
|
- public Short getCloseThismonthInventory() {
|
|
|
|
|
|
+ public BigDecimal getCloseThismonthInventory() {
|
|
return closeThismonthInventory;
|
|
return closeThismonthInventory;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setCloseThismonthInventory(Short closeThismonthInventory) {
|
|
|
|
|
|
+ public void setCloseThismonthInventory(BigDecimal closeThismonthInventory) {
|
|
this.closeThismonthInventory = closeThismonthInventory;
|
|
this.closeThismonthInventory = closeThismonthInventory;
|
|
}
|
|
}
|
|
|
|
|