ustcyc
2025-01-07 de5d55508afd27fb2b47e6d4d6fd9984525c222c
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package com.zhitan.basicdata.domain;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.zhitan.common.annotation.Excel;
import com.zhitan.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.Date;
 
/**
 * 能源品种设置对象 sys_enerclass
 *
 * @author ruoyi
 * @date 2024-10-15
 */
@TableName("sys_enerclass")
public class SysEnerclass extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** 能源类别ID */
    private Integer enerclassid;
 
    /** 能源类别名称 */
    @Excel(name = "能源类别名称")
    private String enerclassname;
 
    /** 操作人 */
    @Excel(name = "操作人")
    private String oprMan;
 
    /** 操作时间 */
    @Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date oprTime;
 
    /** 更新人 */
    @Excel(name = "更新人")
    private String modMan;
 
    /** 更新时间 */
    @Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date modTime;
 
    /** 备注 */
    @Excel(name = "备注")
    private String note;
 
        
    public void setEnerclassid(Integer enerclassid)
    {
        this.enerclassid = enerclassid;
    }
 
    public Integer getEnerclassid()
    {
        return enerclassid;
    }
        
    public void setEnerclassname(String enerclassname)
    {
        this.enerclassname = enerclassname;
    }
 
    public String getEnerclassname()
    {
        return enerclassname;
    }
        
    public void setOprMan(String oprMan)
    {
        this.oprMan = oprMan;
    }
 
    public String getOprMan()
    {
        return oprMan;
    }
        
    public void setOprTime(Date oprTime)
    {
        this.oprTime = oprTime;
    }
 
    public Date getOprTime()
    {
        return oprTime;
    }
        
    public void setModMan(String modMan)
    {
        this.modMan = modMan;
    }
 
    public String getModMan()
    {
        return modMan;
    }
        
    public void setModTime(Date modTime)
    {
        this.modTime = modTime;
    }
 
    public Date getModTime()
    {
        return modTime;
    }
        
    public void setNote(String note)
    {
        this.note = note;
    }
 
    public String getNote()
    {
        return note;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("enerclassid", getEnerclassid())
            .append("enerclassname", getEnerclassname())
            .append("oprMan", getOprMan())
            .append("oprTime", getOprTime())
            .append("modMan", getModMan())
            .append("modTime", getModTime())
            .append("note", getNote())
        .toString();
    }
}