zxl
2025-11-10 cb415813de667096290d6bd0f924f5b523104117
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
package com.ycl.platform.domain.excel;
 
 
import annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * zgyw
 *
 * @author : zxl
 * @date : 2025-11-05 10:31
 **/
@Data
public class DailyMonitorDemeritRecordExp {
    @Excel(name="区域",width = 20)
    private String dept;
 
    @Excel(name="设备编号",width = 25)
    private String serialNumber;
    @Excel(name="设备名",width = 25)
    private String deviceName;
 
    @Excel(name="是否报备",width = 25)
    private String isReport;
    @Excel(name="分建类型",width = 25)
    private String constructionType;
    @Excel(name="扣分",width = 25)
    private BigDecimal demerit;
    @Excel(name="日期",width = 25)
    private String recordTime;
 
}