From c3a11538b96aeac198fbaa467210ef8754773ad1 Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期五, 24 十月 2025 18:14:06 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 ruoyi-system/src/main/java/com/ruoyi/system/export/AssetAdMaterialSporadicSettlementImport.java |   71 +++++++++++++++++++++++++++++++++++
 1 files changed, 71 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/export/AssetAdMaterialSporadicSettlementImport.java b/ruoyi-system/src/main/java/com/ruoyi/system/export/AssetAdMaterialSporadicSettlementImport.java
new file mode 100644
index 0000000..351a8b2
--- /dev/null
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/export/AssetAdMaterialSporadicSettlementImport.java
@@ -0,0 +1,71 @@
+package com.ruoyi.system.export;
+
+import cn.afterturn.easypoi.excel.annotation.Excel;
+import io.swagger.annotations.ApiModel;
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.time.LocalDate;
+
+/**
+ * <p>
+ * 广告物料零星结算表关联表
+ * </p>
+ *
+ * @author mitao
+ * @since 2025-10-17
+ */
+@Data
+@ApiModel(value="AssetAdMaterialSporadicSettlementInfo对象", description="广告物料零星结算表关联表")
+public class AssetAdMaterialSporadicSettlementImport {
+
+    @Excel(name = "日期", width = 20)
+    private LocalDate settlementDate;
+
+    @Excel(name = "安装地点", width = 20)
+    private String address;
+
+    @Excel(name = "名称", width = 20)
+    private String adName;
+
+    @Excel(name = "材质工艺", width = 20)
+    private String material;
+
+    /**
+     * 设计图例oss地址
+     */
+    private String designLegend;
+
+    @Excel(name = "设计图例",type = 2, width = 20)
+    private String designLegendTemp;
+
+    /**
+     * 安装图例oss地址
+     */
+    private String installationLegend;
+
+    @Excel(name = "安装图例",type = 2, width = 20)
+    private String installationLegendTemp;
+
+    @Excel(name = "长(米)", width = 20)
+    private Double length;
+
+    @Excel(name = "高(米)", width = 20)
+    private Double height;
+
+    @Excel(name = "数量", width = 20)
+    private Integer quantity;
+
+    @Excel(name = "小计", width = 20)
+    private String subtotal;
+
+    @Excel(name = "单价(元)", width = 20)
+    private BigDecimal unitPrice;
+
+    @Excel(name = "金额(元)", width = 20)
+    private BigDecimal amount;
+
+    @Excel(name = "备注", width = 20)
+    private String remark;
+
+}

--
Gitblit v1.7.1