| New file |
| | |
| | | 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; |
| | | |
| | | } |