package com.zy.asrs.entity.result;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 月结结果
|
*/
|
@Data
|
public class MonthlySettleResultVO {
|
|
/**
|
* 月结ID
|
*/
|
@ApiModelProperty(value = "月结ID")
|
private Long settleId;
|
|
/**
|
* 月结编号
|
*/
|
@ApiModelProperty(value = "月结编号")
|
private String settleNo;
|
|
/**
|
* 总入库数量
|
*/
|
@ApiModelProperty(value = "总入库数量")
|
private BigDecimal totalInQty;
|
|
/**
|
* 总出库数量
|
*/
|
@ApiModelProperty(value = "总出库数量")
|
private BigDecimal totalOutQty;
|
|
/**
|
* 物料种类数
|
*/
|
@ApiModelProperty(value = "物料种类数")
|
private Integer totalMaterials;
|
}
|