From 3ad02364ce97ab8188d18c52695c8b57b1e47ea6 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期二, 23 一月 2024 08:40:37 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override
---
north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 56 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java
new file mode 100644
index 0000000..1ee2fd3
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java
@@ -0,0 +1,56 @@
+package com.example.erp.entity.sd;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+public class Order {
+ @TableId(type = IdType.AUTO)
+
+ private Long id;
+ private String orderId;
+ private String project;
+
+ private String customerName;
+ private String orderType;
+ private String orderClassify;
+ private String icon;
+ private String packType;
+ private String deliveryDate;
+ private String batch;
+ private Integer calculateType;
+ private String salesmanId;
+ private String salesman;
+ private String alType;
+ private Double money;
+ private String contractId;
+ private String customerBatch;
+ private String contacts;
+ private String contactNumber;
+ private String deliveryAddress;
+ private Double otherMoney;
+ private String otherMoneyRemarks;
+ private String processingNote;
+ private String otherRemaks;
+ private Double area;
+ private Long quantity;
+ private String verifierId;
+ private String verifier;
+ private String createrId;
+ private String creater;
+ private Integer createOrder;
+ private Integer processReview;
+ private Integer orderReview;
+ private Integer productionOrder;
+ private Integer processingCard;
+ private Integer warehousing;
+ private Integer delivery;
+ private LocalDate createTime;
+ private LocalDate updateTime;
+
+ private Customer customer;
+
+}
--
Gitblit v1.8.0