中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 9a224d216652ef2d6ff2e0bd01fba69c86a3f277
commit | author | age
3ef6ab 1 package com.odcc.cpzidc.bis.domain;
Y 2
3 import org.apache.commons.lang3.builder.ToStringBuilder;
4 import org.apache.commons.lang3.builder.ToStringStyle;
5 import com.odcc.cpzidc.common.annotation.Excel;
6 import com.odcc.cpzidc.common.core.domain.BaseEntity;
7
8 /**
9  * 草稿箱对象 idc_drafts
10  * 
11  * @author ruoyi
12  * @date 2024-10-09
13  */
14 public class IdcDrafts extends BaseEntity
15 {
16     private static final long serialVersionUID = 1L;
17
18     /** 序号 */
19     private Long id;
20
21     /** 数据中心 ID */
22     @Excel(name = "数据中心 ID")
23     private Long baseId;
24
25     /** 日期节点 */
26     @Excel(name = "日期节点")
27     private String dateNode;
28
29     /** 暂存类型 */
30     @Excel(name = "暂存类型")
31     private Long type;
32
33     /** 在用基础信息 */
34     @Excel(name = "在用基础信息")
35     private String idcUseBase;
36
37     /** 在用绿色 */
38     @Excel(name = "在用绿色")
39     private String idcUseGreen;
40
41     /** 在用算力 */
42     @Excel(name = "在用算力")
43     private String idcUseComputility;
44
45     /** 在用基础设施 */
46     @Excel(name = "在用基础设施")
47     private String idcUseInfrastructure;
48
49     /** 在用存力指标 */
50     @Excel(name = "在用存力指标")
51     private String idcUseStorage;
52
53     /** 在用运力指标 */
54     @Excel(name = "在用运力指标")
55     private String idcUseTransport;
56
57     /** 在建基础 */
58     @Excel(name = "在建基础")
59     private String idcBuildBase;
60
61     /** 在建扩展 */
62     @Excel(name = "在建扩展")
63     private String idcBuildExtend;
64
65     /** 排序 */
66     @Excel(name = "排序")
67     private Long sort;
68
69     /** 状态 */
70     @Excel(name = "状态")
71     private Integer state;
72
73     /** 创建者 */
74     @Excel(name = "创建者")
75     private Long createUser;
76
77     /** 更新者 */
78     @Excel(name = "更新者")
79     private Long updateUser;
80
81     public void setId(Long id) 
82     {
83         this.id = id;
84     }
85
86     public Long getId() 
87     {
88         return id;
89     }
90     public void setBaseId(Long baseId) 
91     {
92         this.baseId = baseId;
93     }
94
95     public Long getBaseId() 
96     {
97         return baseId;
98     }
99     public void setDateNode(String dateNode) 
100     {
101         this.dateNode = dateNode;
102     }
103
104     public String getDateNode() 
105     {
106         return dateNode;
107     }
108     public void setType(Long type) 
109     {
110         this.type = type;
111     }
112
113     public Long getType() 
114     {
115         return type;
116     }
117     public void setIdcUseBase(String idcUseBase) 
118     {
119         this.idcUseBase = idcUseBase;
120     }
121
122     public String getIdcUseBase() 
123     {
124         return idcUseBase;
125     }
126     public void setIdcUseGreen(String idcUseGreen) 
127     {
128         this.idcUseGreen = idcUseGreen;
129     }
130
131     public String getIdcUseGreen() 
132     {
133         return idcUseGreen;
134     }
135     public void setIdcUseComputility(String idcUseComputility) 
136     {
137         this.idcUseComputility = idcUseComputility;
138     }
139
140     public String getIdcUseComputility() 
141     {
142         return idcUseComputility;
143     }
144     public void setIdcUseInfrastructure(String idcUseInfrastructure) 
145     {
146         this.idcUseInfrastructure = idcUseInfrastructure;
147     }
148
149     public String getIdcUseInfrastructure() 
150     {
151         return idcUseInfrastructure;
152     }
153     public void setIdcUseStorage(String idcUseStorage) 
154     {
155         this.idcUseStorage = idcUseStorage;
156     }
157
158     public String getIdcUseStorage() 
159     {
160         return idcUseStorage;
161     }
162     public void setIdcUseTransport(String idcUseTransport) 
163     {
164         this.idcUseTransport = idcUseTransport;
165     }
166
167     public String getIdcUseTransport() 
168     {
169         return idcUseTransport;
170     }
171     public void setIdcBuildBase(String idcBuildBase) 
172     {
173         this.idcBuildBase = idcBuildBase;
174     }
175
176     public String getIdcBuildBase() 
177     {
178         return idcBuildBase;
179     }
180     public void setIdcBuildExtend(String idcBuildExtend) 
181     {
182         this.idcBuildExtend = idcBuildExtend;
183     }
184
185     public String getIdcBuildExtend() 
186     {
187         return idcBuildExtend;
188     }
189     public void setSort(Long sort) 
190     {
191         this.sort = sort;
192     }
193
194     public Long getSort() 
195     {
196         return sort;
197     }
198     public void setState(Integer state) 
199     {
200         this.state = state;
201     }
202
203     public Integer getState() 
204     {
205         return state;
206     }
207     public void setCreateUser(Long createUser) 
208     {
209         this.createUser = createUser;
210     }
211
212     public Long getCreateUser() 
213     {
214         return createUser;
215     }
216     public void setUpdateUser(Long updateUser) 
217     {
218         this.updateUser = updateUser;
219     }
220
221     public Long getUpdateUser() 
222     {
223         return updateUser;
224     }
225
226     @Override
227     public String toString() {
228         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
229             .append("id", getId())
230             .append("baseId", getBaseId())
231             .append("dateNode", getDateNode())
232             .append("type", getType())
233             .append("idcUseBase", getIdcUseBase())
234             .append("idcUseGreen", getIdcUseGreen())
235             .append("idcUseComputility", getIdcUseComputility())
236             .append("idcUseInfrastructure", getIdcUseInfrastructure())
237             .append("idcUseStorage", getIdcUseStorage())
238             .append("idcUseTransport", getIdcUseTransport())
239             .append("idcBuildBase", getIdcBuildBase())
240             .append("idcBuildExtend", getIdcBuildExtend())
241             .append("sort", getSort())
242             .append("state", getState())
243             .append("createTime", getCreateTime())
244             .append("createUser", getCreateUser())
245             .append("updateTime", getUpdateTime())
246             .append("updateUser", getUpdateUser())
247             .append("remark", getRemark())
248             .toString();
249     }
250 }