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("deliverydetail")
|
public class DeliveryDetailInfo implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 出库单号 deliverycode **/
|
private String deliverycode;
|
|
/** 商品编码(10位) itemcode **/
|
private String itemcode;
|
|
/** 商品名称 itemname **/
|
private String itemname;
|
|
/** 流向码(19位或22位) directioncode **/
|
private String directioncode;
|
|
/** 创建时间 createat **/
|
private Date createat;
|
|
/** 创建人 createby **/
|
private String createby;
|
|
private Integer num;
|
|
/** id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 出库单号 deliverycode **/
|
public String getDeliverycode() {
|
return deliverycode;
|
}
|
|
/** 出库单号 deliverycode **/
|
public void setDeliverycode(String deliverycode) {
|
this.deliverycode = deliverycode == null ? null : deliverycode.trim();
|
}
|
|
/** 商品编码(10位) itemcode **/
|
public String getItemcode() {
|
return itemcode;
|
}
|
|
/** 商品编码(10位) itemcode **/
|
public void setItemcode(String itemcode) {
|
this.itemcode = itemcode == null ? null : itemcode.trim();
|
}
|
|
/** 商品名称 itemname **/
|
public String getItemname() {
|
return itemname;
|
}
|
|
/** 商品名称 itemname **/
|
public void setItemname(String itemname) {
|
this.itemname = itemname == null ? null : itemname.trim();
|
}
|
|
/** 流向码(19位或22位) directioncode **/
|
public String getDirectioncode() {
|
return directioncode;
|
}
|
|
/** 流向码(19位或22位) directioncode **/
|
public void setDirectioncode(String directioncode) {
|
this.directioncode = directioncode == null ? null : directioncode.trim();
|
}
|
|
/** 创建时间 createat **/
|
public Date getCreateat() {
|
return createat;
|
}
|
|
/** 创建时间 createat **/
|
public void setCreateat(Date createat) {
|
this.createat = createat;
|
}
|
|
/** 创建人 createby **/
|
public String getCreateby() {
|
return createby;
|
}
|
|
/** 创建人 createby **/
|
public void setCreateby(String createby) {
|
this.createby = createby == null ? null : createby.trim();
|
}
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
}
|