From 59e91a4e9ddaf23cebb12993c774aa899ab22d16 Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: Mon, 19 Jun 2023 14:22:45 +0800
Subject: [PATCH] 描述
---
src/main/java/com/gk/firework/Domain/DeliveryDetailInfo.java | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 115 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/gk/firework/Domain/DeliveryDetailInfo.java b/src/main/java/com/gk/firework/Domain/DeliveryDetailInfo.java
new file mode 100644
index 0000000..3ea8da7
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/DeliveryDetailInfo.java
@@ -0,0 +1,115 @@
+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;
+ }
+}
\ No newline at end of file
--
Gitblit v1.9.2