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;
}