From 1b86547ddc47a96e86eb376d0a381814ad621fd0 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 22 二月 2024 08:13:31 +0800
Subject: [PATCH] 提交产品界面
---
north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java | 39 +++++++++++++++++++++++++++++++++++++++
1 files changed, 39 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java
new file mode 100644
index 0000000..8509248
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java
@@ -0,0 +1,39 @@
+package com.example.erp.entity.sd;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Data;
+
+import java.sql.Date;
+import java.time.LocalDate;
+
+@Data
+public class Delivery {
+ @TableId(type = IdType.AUTO)
+
+ private Long id;
+ private Integer deliveryState;
+ private Integer stockState;
+ private String deliveryId;
+ private String orderId;
+ private String project;
+ private String customerId;
+ private String customerName;
+ private LocalDate deliveryDate;
+ private String payMethod;
+ private LocalDate payDate;
+ private String salesmanId;
+ private String salesman;
+ private String creatorId;
+ private String creator;
+ private String contacts;
+ private String contactNumber;
+ private String deliveryAddress;
+ private Double area;
+ private Integer quantity;
+ private Double money;
+ private String remarks;
+ private LocalDate createTime;
+ private LocalDate updateTime;
+
+}
--
Gitblit v1.8.0