From 9d03f27756f048330952c86e51cfaa6bbe61a3ae Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期三, 12 六月 2024 16:49:56 +0800
Subject: [PATCH] 流程卡打印排序功能,排产查询修改
---
north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java | 69 ++++++++++++++++++++++++++++++++++
1 files changed, 69 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..d8663cc
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java
@@ -0,0 +1,69 @@
+package com.example.erp.entity.sd;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+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 com.example.erp.entity.mm.FinishedGoodsInventory;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+@TableName("sd.`order`")
+public class Order {
+ @TableId(type = IdType.AUTO)
+ @ExcelProperty("id")
+ private Long id;
+ @ExcelProperty("璁㈠崟缂栧彿")
+ private String orderId;
+ @ExcelProperty("椤圭洰鍚嶇О")
+ private String project;
+ private Integer customerId;
+ 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 Integer 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 otherRemarks;
+ private Double area;
+ private Long quantity;
+ private Double perimeter;
+ private String verifierId;
+ private String verifier;
+ private String creatorId;
+ private String creator;
+ 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;
+ @TableField(select = false,exist = false)
+ private Integer goodsQuantity;
+
+ @TableField(value = "customer_id")
+ private Customer customer;
+ @TableField(select = false)
+ private FinishedGoodsInventory finishedGoodsInventory;
+
+}
--
Gitblit v1.8.0