对比新文件 |
| | |
| | | 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.math.BigDecimal; |
| | | import java.util.Date; |
| | | @TableName("deliveryorder") |
| | | public class DeliveryOrderInfo implements Serializable { |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** 出库单 ordercode **/ |
| | | private String ordercode; |
| | | |
| | | /** 创建时间 createat **/ |
| | | private Date createat; |
| | | |
| | | /** 创建人 createby **/ |
| | | private String createby; |
| | | |
| | | /** 操作员 operator **/ |
| | | private String operator; |
| | | |
| | | /** 操作时间 operatat **/ |
| | | private Date operatat; |
| | | |
| | | /** 店铺 shop **/ |
| | | private String shop; |
| | | |
| | | /** 箱数 boxnum **/ |
| | | private Integer boxnum; |
| | | |
| | | /** 运输证 transportcert **/ |
| | | private String transportcert; |
| | | |
| | | /** 箱数 出库方式(1.正常出库;2.退货出库) **/ |
| | | private Byte type; |
| | | |
| | | private String companynumber; |
| | | |
| | | /** id **/ |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | /** id **/ |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | /** 出库单 ordercode **/ |
| | | public String getOrdercode() { |
| | | return ordercode; |
| | | } |
| | | |
| | | /** 出库单 ordercode **/ |
| | | public void setOrdercode(String ordercode) { |
| | | this.ordercode = ordercode == null ? null : ordercode.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(); |
| | | } |
| | | |
| | | /** 操作员 operator **/ |
| | | public String getOperator() { |
| | | return operator; |
| | | } |
| | | |
| | | /** 操作员 operator **/ |
| | | public void setOperator(String operator) { |
| | | this.operator = operator == null ? null : operator.trim(); |
| | | } |
| | | |
| | | /** 操作时间 operatat **/ |
| | | public Date getOperatat() { |
| | | return operatat; |
| | | } |
| | | |
| | | /** 操作时间 operatat **/ |
| | | public void setOperatat(Date operatat) { |
| | | this.operatat = operatat; |
| | | } |
| | | |
| | | /** 店铺 shop **/ |
| | | public String getShop() { |
| | | return shop; |
| | | } |
| | | |
| | | /** 店铺 shop **/ |
| | | public void setShop(String shop) { |
| | | this.shop = shop == null ? null : shop.trim(); |
| | | } |
| | | |
| | | /** 箱数 boxnum **/ |
| | | public Integer getBoxnum() { |
| | | return boxnum; |
| | | } |
| | | |
| | | /** 箱数 boxnum **/ |
| | | public void setBoxnum(Integer boxnum) { |
| | | this.boxnum = boxnum; |
| | | } |
| | | |
| | | public Byte getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(Byte type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getCompanynumber() { |
| | | return companynumber; |
| | | } |
| | | |
| | | public void setCompanynumber(String companynumber) { |
| | | this.companynumber = companynumber; |
| | | } |
| | | |
| | | public String getTransportcert() { |
| | | return transportcert; |
| | | } |
| | | |
| | | public void setTransportcert(String transportcert) { |
| | | this.transportcert = transportcert; |
| | | } |
| | | } |