You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/res/inout/IoStatDataResponse.java

137 lines
1.8 KiB
Java

package com.glxp.api.res.inout;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
/**
* 出入库汇总数据VO
*/
@Data
public class IoStatDataResponse {
private Integer id;
/**
* 记录号外键
*/
private String recordKeyFk;
/**
* 年度
*/
private Integer year;
/**
* 季度
*/
private Integer quarter;
/**
* 月份
*/
private Integer month;
/**
* 日
*/
private Integer day;
/**
* 物资编码主键
*/
private String relIdFk;
/**
* 产品DI
*/
private String nameCode;
/**
* 产品名称
*/
private String productName;
/**
* 规格型号
*/
private String ggxh;
/**
* 批次号
*/
private String batchNo;
/**
* 期初数量
*/
private Integer beginCount;
/**
* 期初价格
*/
private BigDecimal beginPrice;
/**
* 期初金额
*/
private BigDecimal beginAmount;
/**
* 入库数量
*/
private Integer inCount;
/**
* 入库价格
*/
private BigDecimal inPrice;
/**
* 入库金额
*/
private BigDecimal inAmount;
/**
* 出库数量
*/
private Integer outCount;
/**
* 出库价格
*/
private BigDecimal outPrice;
/**
* 出库金额
*/
private BigDecimal outAmount;
/**
* 结余数量
*/
private Integer balanceCount;
/**
* 结余价格
*/
private BigDecimal balancePrice;
/**
* 结余金额
*/
private BigDecimal balanceAmount;
/**
* 备注
*/
private String remark;
/**
* 更新时间
*/
private Date updateTime;
}