From e748d7c052c9b06f2a2ffe5dbc1cb21babfdbdb4 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期五, 05 七月 2024 10:09:07 +0800
Subject: [PATCH] 添加右键菜单相关语言,对应界面添加客户名称字段,配置标签打印按钮和打印类型下拉框

---
 north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 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..a0763cd
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java
@@ -0,0 +1,41 @@
+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 paymentTerms;
+    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 Double otherMoney;
+    private String remarks;
+    private LocalDate createTime;
+    private LocalDate updateTime;
+
+}

--
Gitblit v1.8.0