liukangdong
2025-01-13 34f587564c9a34515e7deda4dcd02eb748480e1f
server/system_service/src/main/java/com/doumee/service/business/third/model/response/TmsOutQtyAndVehicleQtyResponse.java
@@ -15,12 +15,26 @@
@ApiModel("tms指定时间范围内累计出库量返回参数")
public class TmsOutQtyAndVehicleQtyResponse {
    @ApiModelProperty(value = "累计出库量")
    private BigDecimal totalOutQty;//数字   累计出库量
    @ApiModelProperty(value = "省外累计出库量")
    @ApiModelProperty(value = "累计出库量 累计值")
    private BigDecimal totalOutQty;//数字   累计出库量(totalOutT01Qty+totalOutT03Qty)
    @ApiModelProperty(value = "省外累计出库量  累计值")
    private BigDecimal outSideProvinceOutQty;//   数字   省外累计出库量
    @ApiModelProperty(value = "省内累计出库量")
    @ApiModelProperty(value = "省内累计出库量  累计值")
    private BigDecimal inSideProvinceOutQty;//   数字   省内累计出库量
    @ApiModelProperty(value = "累计出库车次")
    private Integer vehicleQty;//数字   累计出库车次
    @ApiModelProperty(value = "省外其他(移库)量")
    private BigDecimal outSideProvinceOutT03Qty   ;//数字   省外其他(移库)量
    @ApiModelProperty(value = "省外销售量")
    private BigDecimal  outSideProvinceOutT01Qty   ;//数字   省外销售量
    @ApiModelProperty(value = "省内销售量")
    private BigDecimal inSideProvinceOutT01Qty;//   数字   省内销售量
    @ApiModelProperty(value = "省内其他(移库)量")
    private BigDecimal   inSideProvinceOutT03Qty;//   数字   省内其他(移库)量
    @ApiModelProperty(value = "调拨出库量(省内销售+省外销售)")
    private BigDecimal  totalOutT01Qty   ;//数字   调拨出库量(省内销售+省外销售)
    @ApiModelProperty(value = "其他出库量(省内其他+省外其他)")
    private BigDecimal  totalOutT03Qty   ;//数字   其他出库量(省内其他+省外其他)
    @ApiModelProperty(value = "累计出库量")
    private Integer  vehicleQty   ;//数字   车次数
}