mitao
12 小时以前 42131eb034e559dc361fe75d653e4d904aa6a316
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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;
 
}