package com.gk.firework.Domain;
|
|
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 java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("stock")
|
public class StockInfo implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
public static final String STOCK_SOLD = "已售出";
|
/** id **/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** product表id productid **/
|
private Long productid;
|
|
/** 流向码 directioncode **/
|
private String directioncode;
|
|
/** 流向码箱码 directionboxcode **/
|
private String directionboxcode;
|
|
/** 数量 num **/
|
private Integer num;
|
|
/** 归属公司(销售点,个人) owner **/
|
private String owner;
|
|
/** 状态 status **/
|
private String status;
|
|
/** 入库日期 indate **/
|
private Date indate;
|
|
/** 出库日期 outdate **/
|
private Date outdate;
|
|
/** 操作人 operator **/
|
private String operator;
|
|
/** 入库方式(1,常规入库;2,快速入库;3,退货入库) type **/
|
private Byte type;
|
|
/** 备注(保留字段) remark **/
|
private String remark;
|
|
/** 创建人 createdby **/
|
private String createdby;
|
|
/** 创建时间 createddate **/
|
private Date createddate;
|
|
/** 修改人 modifiedby **/
|
private String modifiedby;
|
|
/** 修改时间 modifieddate **/
|
private Date modifieddate;
|
|
/** 零售入库标记(0:批量入库;1:零售入库) flag **/
|
private Byte flag;
|
|
/** id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** product表id productid **/
|
public Long getProductid() {
|
return productid;
|
}
|
|
/** product表id productid **/
|
public void setProductid(Long productid) {
|
this.productid = productid;
|
}
|
|
/** 流向码 directioncode **/
|
public String getDirectioncode() {
|
return directioncode;
|
}
|
|
/** 流向码 directioncode **/
|
public void setDirectioncode(String directioncode) {
|
this.directioncode = directioncode == null ? null : directioncode.trim();
|
}
|
|
/** 流向码箱码 directionboxcode **/
|
public String getDirectionboxcode() {
|
return directionboxcode;
|
}
|
|
/** 流向码箱码 directionboxcode **/
|
public void setDirectionboxcode(String directionboxcode) {
|
this.directionboxcode = directionboxcode == null ? null : directionboxcode.trim();
|
}
|
|
/** 数量 num **/
|
public Integer getNum() {
|
return num;
|
}
|
|
/** 数量 num **/
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
/** 归属公司(销售点,个人) owner **/
|
public String getOwner() {
|
return owner;
|
}
|
|
/** 归属公司(销售点,个人) owner **/
|
public void setOwner(String owner) {
|
this.owner = owner == null ? null : owner.trim();
|
}
|
|
/** 状态 status **/
|
public String getStatus() {
|
return status;
|
}
|
|
/** 状态 status **/
|
public void setStatus(String status) {
|
this.status = status == null ? null : status.trim();
|
}
|
|
/** 入库日期 indate **/
|
public Date getIndate() {
|
return indate;
|
}
|
|
/** 入库日期 indate **/
|
public void setIndate(Date indate) {
|
this.indate = indate;
|
}
|
|
/** 出库日期 outdate **/
|
public Date getOutdate() {
|
return outdate;
|
}
|
|
/** 出库日期 outdate **/
|
public void setOutdate(Date outdate) {
|
this.outdate = outdate;
|
}
|
|
/** 操作人 operator **/
|
public String getOperator() {
|
return operator;
|
}
|
|
/** 操作人 operator **/
|
public void setOperator(String operator) {
|
this.operator = operator == null ? null : operator.trim();
|
}
|
|
/** 入库方式(1,常规入库;2,快速入库;3,退货入库) type **/
|
public Byte getType() {
|
return type;
|
}
|
|
/** 入库方式(1,常规入库;2,快速入库;3,退货入库) type **/
|
public void setType(Byte type) {
|
this.type = type;
|
}
|
|
/** 备注(保留字段) remark **/
|
public String getRemark() {
|
return remark;
|
}
|
|
/** 备注(保留字段) remark **/
|
public void setRemark(String remark) {
|
this.remark = remark == null ? null : remark.trim();
|
}
|
|
/** 创建人 createdby **/
|
public String getCreatedby() {
|
return createdby;
|
}
|
|
/** 创建人 createdby **/
|
public void setCreatedby(String createdby) {
|
this.createdby = createdby == null ? null : createdby.trim();
|
}
|
|
/** 创建时间 createddate **/
|
public Date getCreateddate() {
|
return createddate;
|
}
|
|
/** 创建时间 createddate **/
|
public void setCreateddate(Date createddate) {
|
this.createddate = createddate;
|
}
|
|
/** 修改人 modifiedby **/
|
public String getModifiedby() {
|
return modifiedby;
|
}
|
|
/** 修改人 modifiedby **/
|
public void setModifiedby(String modifiedby) {
|
this.modifiedby = modifiedby == null ? null : modifiedby.trim();
|
}
|
|
/** 修改时间 modifieddate **/
|
public Date getModifieddate() {
|
return modifieddate;
|
}
|
|
/** 修改时间 modifieddate **/
|
public void setModifieddate(Date modifieddate) {
|
this.modifieddate = modifieddate;
|
}
|
|
/** 零售入库标记(0:批量入库;1:零售入库) flag **/
|
public Byte getFlag() {
|
return flag;
|
}
|
|
/** 零售入库标记(0:批量入库;1:零售入库) flag **/
|
public void setFlag(Byte flag) {
|
this.flag = flag;
|
}
|
}
|