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/Order.java |    9 ++++++---
 1 files changed, 6 insertions(+), 3 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
index 47637b8..c483c63 100644
--- 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
@@ -1,5 +1,6 @@
 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;
@@ -13,9 +14,11 @@
 @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;
@@ -23,7 +26,7 @@
     private String orderClassify;
     private String icon;
     private String packType;
-    private String deliveryDate;
+    private LocalDate deliveryDate;
     private String batch;
     private Integer calculateType;
     private Integer salesmanId;
@@ -41,7 +44,7 @@
     private String otherRemarks;
     private Double area;
     private Long quantity;
-    private String perimeter;
+    private Double perimeter;
     private String verifierId;
     private String verifier;
     private String creatorId;

--
Gitblit v1.8.0