From 59e91a4e9ddaf23cebb12993c774aa899ab22d16 Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:22:45 +0800 Subject: [PATCH] 描述 --- src/main/java/com/gk/firework/Domain/EntryDetailInfo.java | 165 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 165 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/EntryDetailInfo.java b/src/main/java/com/gk/firework/Domain/EntryDetailInfo.java new file mode 100644 index 0000000..bc60a3c --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/EntryDetailInfo.java @@ -0,0 +1,165 @@ +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("entrydetail") +public class EntryDetailInfo implements Serializable { + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + /** id **/ + @TableId(type = IdType.AUTO) + private Long id; + + /** 入库单编码 entryorder **/ + private String entryorder; + + /** 流向码(19位或者22位) directioncode **/ + private String directioncode; + + /** 商品编码 itemcode **/ + private String itemcode; + + /** 商品名称 productname **/ + private String productname; + + /** 数量:19位流向码为1;22位流向码为后三位表示的数量 num **/ + private Integer num; + + /** 包装码 boxcode **/ + private String boxcode; + + /** 生产厂家 manufacturer **/ + private String manufacturer; + + /** 创建时间 createddate **/ + private Date createddate; + + /** 更新时间 modifieddate **/ + private Date modifieddate; + + private String createdby; + + /** id **/ + public Long getId() { + return id; + } + + /** id **/ + public void setId(Long id) { + this.id = id; + } + + /** 入库单编码 entryorder **/ + public String getEntryorder() { + return entryorder; + } + + /** 入库单编码 entryorder **/ + public void setEntryorder(String entryorder) { + this.entryorder = entryorder == null ? null : entryorder.trim(); + } + + /** 流向码(19位或者22位) directioncode **/ + public String getDirectioncode() { + return directioncode; + } + + /** 流向码(19位或者22位) directioncode **/ + public void setDirectioncode(String directioncode) { + this.directioncode = directioncode == null ? null : directioncode.trim(); + } + + /** 商品名称 productname **/ + public String getProductname() { + return productname; + } + + /** 商品名称 productname **/ + public void setProductname(String productname) { + this.productname = productname == null ? null : productname.trim(); + } + + /** 包装码 boxcode **/ + public String getBoxcode() { + return boxcode; + } + + /** 包装码 boxcode **/ + public void setBoxcode(String boxcode) { + this.boxcode = boxcode == null ? null : boxcode.trim(); + } + + /** 生产厂家 manufacturer **/ + public String getManufacturer() { + return manufacturer; + } + + /** 生产厂家 manufacturer **/ + public void setManufacturer(String manufacturer) { + this.manufacturer = manufacturer == null ? null : manufacturer.trim(); + } + + /** 创建时间 createddate **/ + public Date getCreateddate() { + return createddate; + } + + /** 创建时间 createddate **/ + public void setCreateddate(Date createddate) { + this.createddate = createddate; + } + + /** 更新时间 modifieddate **/ + public Date getModifieddate() { + return modifieddate; + } + + /** 更新时间 modifieddate **/ + public void setModifieddate(Date modifieddate) { + this.modifieddate = modifieddate; + } + + public String getItemcode() { + return itemcode; + } + + public void setItemcode(String itemcode) { + this.itemcode = itemcode; + } + + public Integer getNum() { + return num; + } + + public void setNum(Integer num) { + this.num = num; + } + + public String getCreatedby() { + return createdby; + } + + public void setCreatedby(String createdby) { + this.createdby = createdby; + } + + public EntryDetailInfo() { + } + + public EntryDetailInfo(String entryorder, String directioncode, String itemcode, String productname, String manufacturer, Date createddate, String createdby) { + this.entryorder = entryorder; + this.directioncode = directioncode; + this.itemcode = itemcode; + this.productname = productname; + this.manufacturer = manufacturer; + this.createddate = createddate; + this.createdby = createdby; + } +} \ No newline at end of file -- Gitblit v1.9.2