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-spms-java/src/main/java/com/glxp/api/res/inv/InvRemindMsgResponse.java

138 lines
2.0 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;
import java.util.Date;
/**
* 库存预警消息VO
*/
@Data
public class InvRemindMsgResponse {
private Integer id;
/**
* 关联主键ID
*/
private Integer relId;
/**
* 批次号
*/
private String batchNo;
/**
* 生产日期
*/
private String productionDate;
/**
* 失效日期
*/
private String expireDate;
/**
* 部门
*/
private String deptCode;
/**
* 仓库号
*/
private String invCode;
/**
* 货位号
*/
private String invSpaceCode;
/**
* 进数量
*/
private Integer inCount;
/**
* 出数量
*/
private Integer outCount;
/**
* 结余数量
*/
private Integer reCount;
/**
* 消息状态: 1:未确认2已确认
*/
private Integer status;
/**
* 预警类型1库存不足预警2库存负数预警3库存积压预警4库存过期预警5库存近效期预警
*/
private Integer type;
/**
* 备注
*/
private String remark;
/**
* 产品名称
*/
private String productName;
/**
* 仓库名称
*/
private String invName;
/**
* 货位名称
*/
private String invSpaceName;
/**
* 预警消息内容
*/
private String msg;
/**
* 处理方式
*/
private String handleMsg;
/**
* 下次提醒时间
*/
private Date nextRemindTime;
/**
* 消息忽略状态: 0不忽略1忽略7天2忽略15天3忽略30天
*/
private Integer ignoreStatus;
/**
* 规格型号
*/
private String ggxh;
/**
* 供应商名称
*/
private String supName;
/**
* 生产厂家
*/
private String manufactory;
/**
* 批注文号
*/
private String zczbhhzbapzbh;
private int remindCount;
}