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

115 lines
2.7 KiB
Java

package com.glxp.api.entity.inv;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
/**
*
*/
@Data
@TableName(value = "inv_remind_set")
public class InvRemindSetEntity {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
*
*/
@TableField(value = "relId")
private String relId;
/**
*
*/
@TableField(value = "deptCode")
private String deptCode;
/**
*
*/
@TableField(value = "invCode")
private String invCode;
/**
*
*/
@TableField(value = "invSpaceCode")
private String invSpaceCode;
/**
*
*/
@TableField(value = "lowStock")
private Boolean lowStock;
/**
*
*/
@TableField(value = "lackStock")
private Boolean lackStock;
/**
*
*/
@TableField(value = "overStock")
private Boolean overStock;
/**
*
*/
@TableField(value = "expireDate")
private Boolean expireDate;
/**
*
*/
@TableField(value = "recentDate")
private Boolean recentDate;
/**
*
*/
@TableField(value = "remark")
private String remark;
@TableField(value = "`createUser`")
private String createUser;
@TableField(value = "createTime")
private Date createTime;
@TableField(value = "updateUser")
private String updateUser;
@TableField(value = "updateTime")
private Date updateTime;
/**
* 0 1
*/
@TableField(value = "`status`")
private Integer status;
@Override
public String toString() {
return "InvRemindSetEntity{" +
", 产品ID='" + relId + '\'' +
", 部门编码:='" + deptCode + '\'' +
", 仓库编码:='" + invCode + '\'' +
", 货位编码:='" + invSpaceCode + '\'' +
", 是否开启低库存预警:=" + lowStock +
", 是否开启库存负数预警:=" + lackStock +
", 是否开启库存积压预警:=" + overStock +
", 是否开启库存产品过期提醒:=" + expireDate +
", 是否开启近效期提醒:=" + recentDate +
", 备注:='" + remark + '\'' +
'}';
}
}