From 7d27cdccf8b92f32e80499f1f06c4b8ab93936c1 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期一, 26 五月 2025 19:25:34 +0800
Subject: [PATCH] 修改空板移库,任务完成后无法加入历史档问题

---
 rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/excel/DeliveryTemplate.java |  118 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 118 insertions(+), 0 deletions(-)

diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/excel/DeliveryTemplate.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/excel/DeliveryTemplate.java
new file mode 100644
index 0000000..86e8297
--- /dev/null
+++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/excel/DeliveryTemplate.java
@@ -0,0 +1,118 @@
+package com.vincent.rsf.server.manager.entity.excel;
+
+import cn.afterturn.easypoi.excel.annotation.Excel;
+import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelAutoColumnSize;
+import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelComment;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.experimental.Accessors;
+
+import java.io.Serializable;
+
+@Data
+@ExcelAutoColumnSize
+@Accessors(chain = true)
+public class DeliveryTemplate implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    @Excel(name = "*DO鍗曞彿")
+    @ApiModelProperty(value= "*PO鍗曞彿")
+    @ExcelComment(value = "poCode", example = "PO25413975")
+    private String poCode;
+
+    @Excel(name = "*琛屽彿")
+    @ApiModelProperty(value= "*琛屽彿")
+    @ExcelComment(value = "platItemId", example = "100068541001")
+    private String platItemId;
+
+
+    @Excel(name = "鍗曟嵁绫诲瀷")
+    @ApiModelProperty(value= "鍗曟嵁绫诲瀷")
+    @ExcelComment(value = "type", example = "鍏ュ簱鍗�")
+    private String type;
+
+    @Excel(name = "鍗曟嵁鏉ユ簮")
+    @ApiModelProperty(value= "鍗曟嵁鏉ユ簮")
+    @ExcelComment(value = "source", example = "ERP鍚屾")
+    private String source;
+
+    @Excel(name = "瀹㈠崟鍙�")
+    @ApiModelProperty(value= "瀹㈠崟鍙�")
+    @ExcelComment(value = "platOrderCode", example = "2052146822")
+    private String platOrderCode;
+
+    @Excel(name = "宸ュ崟鍙�")
+    @ApiModelProperty(value= "宸ュ崟鍙�")
+    @ExcelComment(value = "platWorkCode", example = "64875413")
+    private String platWorkCode;
+
+    @Excel(name = "椤圭洰鍙�")
+    @ApiModelProperty(value= "椤圭洰鍙�")
+    @ExcelComment(value = "projectCode", example = "65413")
+    private String projectCode;
+
+    @Excel(name = "涓氬姟绫诲瀷")
+    @ApiModelProperty(value= "涓氬姟绫诲瀷")
+    @ExcelComment(value = "wkType", example = "閲囪喘鍏ュ簱鍗�")
+    private String wkType;
+
+    @Excel(name = "椤圭洰鍚嶇О")
+    @ApiModelProperty(value= "椤圭洰鍚嶇О")
+    @ExcelComment(value = "project", example = "浜笢鐢靛晢绔嬪簱")
+    private String project;
+
+    /**
+     * 鐗╂枡缂栫爜
+     */
+    @Excel(name = "*鐗╂枡缂栫爜")
+    @ApiModelProperty(value= "*鐗╂枡缂栫爜")
+    @ExcelComment(value = "matnrCode", example = "101000000002")
+    private String matnrCode;
+
+    /**
+     *
+     */
+    @Excel(name = "鐗╂枡鍚嶇О")
+    @ApiModelProperty(value= "鐗╂枡鍚嶇О")
+    @ExcelComment(value = "matnrName", example = "TC-03128瀵歌繛浣撳唴涓婃墭")
+    private String matnrName;
+
+
+    /**
+     * 鏁伴噺
+     */
+    @Excel(name = "鏁伴噺")
+    @ApiModelProperty(value= "鏁伴噺")
+    @ExcelComment(value = "anfme", example = "75")
+    private Double anfme;
+
+    /**
+     * 渚涘簲鍟嗙紪鐮�
+     */
+    @Excel(name = "*渚涘簲鍟嗙紪鐮�")
+    @ApiModelProperty(value= "*渚涘簲鍟嗙紪鐮�")
+    @ExcelComment(value = "splrCode", example = "685947")
+    private String splrCode;
+
+    /**
+     * 渚涘簲鍟嗘壒娆�
+     */
+    @Excel(name = "渚涘簲鍟嗘壒娆�")
+    @ApiModelProperty(value= "渚涘簲鍟嗘壒娆�")
+    @ExcelComment(value = "splrBatch", example = "20250401")
+    private String splrBatch;
+
+
+    @Excel(name = "棰勮閫佽揪鏃堕棿")
+    @ApiModelProperty("棰勮閫佽揪鏃堕棿")
+    @ExcelComment(value = "arrTime", example = "2025-05-21")
+    private String arrTime;
+
+
+    @Excel(name = "澶囨敞")
+    @ApiModelProperty("澶囨敞")
+    @ExcelComment(value = "memo", example = "娉細鏄撶鍝侊紝杞绘嬁鏀�")
+    private String memo;
+
+}

--
Gitblit v1.9.1