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/inv/InvRemindSetResponse.java

94 lines
1.4 KiB
Java

package com.glxp.api.res.inv;
import lombok.Data;
/**
* VO
*/
@Data
public class InvRemindSetResponse {
private Integer id;
/**
*
*/
private String relId;
/**
*
*/
private String deptCode;
/**
*
*/
private String invCode;
/**
*
*/
private String invSpaceCode;
/**
*
*/
private Boolean lowStock;
/**
*
*/
private Integer lowStockNum;
/**
*
*/
private Boolean lackStock;
/**
*
*/
private Boolean overStock;
/**
*
*/
private Integer overStockNum;
/**
*
*/
private Boolean expireDate;
/**
*
*/
private Boolean recentDate;
/**
*
*/
private Integer recentDateDay;
/**
*
*/
private String remark;
/**
*
*/
private String productName;
/**
*
*/
private String invName;
/**
*
*/
private String invSpaceName;
}