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

108 lines
1.6 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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 Boolean lackStock;
/**
* 是否开启库存积压预警
*/
private Boolean overStock;
/**
* 是否开启库存产品过期提醒
*/
private Boolean expireDate;
/**
* 是否开启近效期提醒
*/
private Boolean recentDate;
/**
* 备注
*/
private String remark;
/**
* 产品名称
*/
private String productName;
/**
* 仓库名称
*/
private String invName;
/**
* 货位名称
*/
private String invSpaceName;
/**
* 规格型号
*/
private String ggxh;
/**
* 低库存预警数量
*/
private Integer lowStockNum;
/**
* 库存积压预警数量
*/
private Integer overStockNum;
/**
* 近效期预警时间
*/
private Integer recentDateTime;
/**
* 近效期预警时间格式类型 12小时
*/
private Integer isDateBy;
/**
* 状态 0未启用 1已启用
*/
private Integer status;
}