Geoffrey
2025-01-13 d0d174b591e2372ef79af3e81714db8eead52187
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
package com.zhitan.saving.domain.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zhitan.common.annotation.Excel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author Geoffrey
 * @date 2025/01/13
 */
@Data
@ApiModel(value = "节能项目DTO")
public class EnergySavingProgramDTO {
    private Long id;
 
 
    /**
     * 节能计划
     */
    private String plan;
 
 
    /**
     * 完成时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "完成时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date completionTime;
    /**
     * 项目组长
     */
    @Excel(name = "项目组长")
    private String liablePerson;
 
 
    /**
     * 实施计划
     */
    private String implementationPlan;
    /**
     * 当前工作
     */
    private String currentWork;
    /**
     * 节约量
     */
    private String savingAmount;
    /**
     * 备注
     */
    private String remark;
 
 
}