中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 5cc82f45d73865489cc39e5ffbf521bf4279ec53
commit | author | age
5cc82f 1 package com.odcc.cpzidc.bis.domain;
Y 2
3 import java.math.BigDecimal;
4 import org.apache.commons.lang3.builder.ToStringBuilder;
5 import org.apache.commons.lang3.builder.ToStringStyle;
6 import com.odcc.cpzidc.common.annotation.Excel;
7 import com.odcc.cpzidc.common.core.domain.BaseEntity;
8
9 /**
10  * 在建数据中心对象 idc_build_base
11  * 
12  * @author ruoyi
13  * @date 2024-10-10
14  */
15 public class IdcBuildBase extends BaseEntity
16 {
17     private static final long serialVersionUID = 1L;
18
19     /** 序号 */
20     private Long id;
21
22     /** 规模类型 */
23     @Excel(name = "规模类型")
24     private Integer type;
25
26     /** 业务类型 */
27     @Excel(name = "业务类型")
28     private Long businessType;
29
30     /** 设计机架数 */
31     @Excel(name = "设计机架数")
32     private Long frameNum;
33
34     /** 设计机架功率 */
35     @Excel(name = "设计机架功率")
36     private BigDecimal framePower;
37
38     /** 名称 */
39     @Excel(name = "名称")
40     private String name;
41
42     /** 省(自治区、直辖市) */
43     @Excel(name = "省", readConverterExp = "自=治区、直辖市")
44     private String province;
45
46     /** 市() */
47     @Excel(name = "市", readConverterExp = "市()")
48     private String city;
49
50     /** 区、县 */
51     @Excel(name = "区、县")
52     private String area;
53
54     /** 地址 */
55     @Excel(name = "地址")
56     private String address;
57
58     /** 补充地址 */
59     @Excel(name = "补充地址")
60     private String addressExt;
61
62     /** 机楼 */
63     @Excel(name = "机楼")
64     private String building;
65
66     /** 运营主体统一社会信用代码 */
67     @Excel(name = "运营主体统一社会信用代码")
68     private String creditCode;
69
70     /** 运营主体 */
71     @Excel(name = "运营主体")
72     private String mainbody;
73
74     /** 运营公司总公司 */
75     @Excel(name = "运营公司总公司")
76     private String mainbodyHeader;
77
78     /** 运营主体类型 */
79     @Excel(name = "运营主体类型")
80     private String mainbodyType;
81
82     /** 建设初始投资(万元) */
83     @Excel(name = "建设初始投资", readConverterExp = "万=元")
84     private String investment;
85
86     /** 建设进度 */
87     @Excel(name = "建设进度")
88     private String progress;
89
90     /** 投产时间 */
91     @Excel(name = "投产时间")
92     private String productionTime;
93
94     /** 数据中心建设等级或标准 */
95     @Excel(name = "数据中心建设等级或标准")
96     private String dcBuildingLevel;
97
98     /** 数据中心总设计面积 */
99     @Excel(name = "数据中心总设计面积")
100     private Long dcAllArea;
101
102     /** IT机房面积 */
103     @Excel(name = "IT机房面积")
104     private Long dcItArea;
105
106     /** 建筑形式 */
107     @Excel(name = "建筑形式")
108     private String buildingType;
109
110     /** 抗震级别 */
111     @Excel(name = "抗震级别")
112     private String seismicLevel;
113
114     /** 应用类别 */
115     @Excel(name = "应用类别")
116     private String useType;
117
118     /** 设计PUE */
119     @Excel(name = "设计PUE")
120     private BigDecimal pueDesign;
121
122     /** 设计耗水量(年) */
123     @Excel(name = "设计耗水量(年)")
124     private String waterDesign;
125
126     /** 链接的运营商 */
127     @Excel(name = "链接的运营商")
128     private String netOperator;
129
130     /** 链接的运营商_其它 */
131     @Excel(name = "链接的运营商_其它")
132     private String netOperatorOther;
133
134     /** 接入网络级别 */
135     @Excel(name = "接入网络级别")
136     private String netLevel;
137
138     /** 排序 */
139     @Excel(name = "排序")
140     private Long sort;
141
142     /** 管理员反馈信息 */
143     @Excel(name = "管理员反馈信息")
144     private String message;
145
146     /** 状态0: 1   2 */
147     @Excel(name = "状态0: 1   2")
148     private Long state;
149
150     /** 是否可用 */
151     @Excel(name = "是否可用")
152     private Integer isEnable;
153
154     /** 创建者 */
155     @Excel(name = "创建者")
156     private Long createUser;
157
158     public void setId(Long id) 
159     {
160         this.id = id;
161     }
162
163     public Long getId() 
164     {
165         return id;
166     }
167     public void setType(Integer type) 
168     {
169         this.type = type;
170     }
171
172     public Integer getType() 
173     {
174         return type;
175     }
176     public void setBusinessType(Long businessType) 
177     {
178         this.businessType = businessType;
179     }
180
181     public Long getBusinessType() 
182     {
183         return businessType;
184     }
185     public void setFrameNum(Long frameNum) 
186     {
187         this.frameNum = frameNum;
188     }
189
190     public Long getFrameNum() 
191     {
192         return frameNum;
193     }
194     public void setFramePower(BigDecimal framePower) 
195     {
196         this.framePower = framePower;
197     }
198
199     public BigDecimal getFramePower() 
200     {
201         return framePower;
202     }
203     public void setName(String name) 
204     {
205         this.name = name;
206     }
207
208     public String getName() 
209     {
210         return name;
211     }
212     public void setProvince(String province) 
213     {
214         this.province = province;
215     }
216
217     public String getProvince() 
218     {
219         return province;
220     }
221     public void setCity(String city) 
222     {
223         this.city = city;
224     }
225
226     public String getCity() 
227     {
228         return city;
229     }
230     public void setArea(String area) 
231     {
232         this.area = area;
233     }
234
235     public String getArea() 
236     {
237         return area;
238     }
239     public void setAddress(String address) 
240     {
241         this.address = address;
242     }
243
244     public String getAddress() 
245     {
246         return address;
247     }
248     public void setAddressExt(String addressExt) 
249     {
250         this.addressExt = addressExt;
251     }
252
253     public String getAddressExt() 
254     {
255         return addressExt;
256     }
257     public void setBuilding(String building) 
258     {
259         this.building = building;
260     }
261
262     public String getBuilding() 
263     {
264         return building;
265     }
266     public void setCreditCode(String creditCode) 
267     {
268         this.creditCode = creditCode;
269     }
270
271     public String getCreditCode() 
272     {
273         return creditCode;
274     }
275     public void setMainbody(String mainbody) 
276     {
277         this.mainbody = mainbody;
278     }
279
280     public String getMainbody() 
281     {
282         return mainbody;
283     }
284     public void setMainbodyHeader(String mainbodyHeader) 
285     {
286         this.mainbodyHeader = mainbodyHeader;
287     }
288
289     public String getMainbodyHeader() 
290     {
291         return mainbodyHeader;
292     }
293     public void setMainbodyType(String mainbodyType) 
294     {
295         this.mainbodyType = mainbodyType;
296     }
297
298     public String getMainbodyType() 
299     {
300         return mainbodyType;
301     }
302     public void setInvestment(String investment) 
303     {
304         this.investment = investment;
305     }
306
307     public String getInvestment() 
308     {
309         return investment;
310     }
311     public void setProgress(String progress) 
312     {
313         this.progress = progress;
314     }
315
316     public String getProgress() 
317     {
318         return progress;
319     }
320     public void setProductionTime(String productionTime) 
321     {
322         this.productionTime = productionTime;
323     }
324
325     public String getProductionTime() 
326     {
327         return productionTime;
328     }
329     public void setDcBuildingLevel(String dcBuildingLevel) 
330     {
331         this.dcBuildingLevel = dcBuildingLevel;
332     }
333
334     public String getDcBuildingLevel() 
335     {
336         return dcBuildingLevel;
337     }
338     public void setDcAllArea(Long dcAllArea) 
339     {
340         this.dcAllArea = dcAllArea;
341     }
342
343     public Long getDcAllArea() 
344     {
345         return dcAllArea;
346     }
347     public void setDcItArea(Long dcItArea) 
348     {
349         this.dcItArea = dcItArea;
350     }
351
352     public Long getDcItArea() 
353     {
354         return dcItArea;
355     }
356     public void setBuildingType(String buildingType) 
357     {
358         this.buildingType = buildingType;
359     }
360
361     public String getBuildingType() 
362     {
363         return buildingType;
364     }
365     public void setSeismicLevel(String seismicLevel) 
366     {
367         this.seismicLevel = seismicLevel;
368     }
369
370     public String getSeismicLevel() 
371     {
372         return seismicLevel;
373     }
374     public void setUseType(String useType) 
375     {
376         this.useType = useType;
377     }
378
379     public String getUseType() 
380     {
381         return useType;
382     }
383     public void setPueDesign(BigDecimal pueDesign) 
384     {
385         this.pueDesign = pueDesign;
386     }
387
388     public BigDecimal getPueDesign() 
389     {
390         return pueDesign;
391     }
392     public void setWaterDesign(String waterDesign) 
393     {
394         this.waterDesign = waterDesign;
395     }
396
397     public String getWaterDesign() 
398     {
399         return waterDesign;
400     }
401     public void setNetOperator(String netOperator) 
402     {
403         this.netOperator = netOperator;
404     }
405
406     public String getNetOperator() 
407     {
408         return netOperator;
409     }
410     public void setNetOperatorOther(String netOperatorOther) 
411     {
412         this.netOperatorOther = netOperatorOther;
413     }
414
415     public String getNetOperatorOther() 
416     {
417         return netOperatorOther;
418     }
419     public void setNetLevel(String netLevel) 
420     {
421         this.netLevel = netLevel;
422     }
423
424     public String getNetLevel() 
425     {
426         return netLevel;
427     }
428     public void setSort(Long sort) 
429     {
430         this.sort = sort;
431     }
432
433     public Long getSort() 
434     {
435         return sort;
436     }
437     public void setMessage(String message) 
438     {
439         this.message = message;
440     }
441
442     public String getMessage() 
443     {
444         return message;
445     }
446     public void setState(Long state) 
447     {
448         this.state = state;
449     }
450
451     public Long getState() 
452     {
453         return state;
454     }
455     public void setIsEnable(Integer isEnable) 
456     {
457         this.isEnable = isEnable;
458     }
459
460     public Integer getIsEnable() 
461     {
462         return isEnable;
463     }
464     public void setCreateUser(Long createUser) 
465     {
466         this.createUser = createUser;
467     }
468
469     public Long getCreateUser() 
470     {
471         return createUser;
472     }
473
474     @Override
475     public String toString() {
476         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
477             .append("id", getId())
478             .append("type", getType())
479             .append("businessType", getBusinessType())
480             .append("frameNum", getFrameNum())
481             .append("framePower", getFramePower())
482             .append("name", getName())
483             .append("province", getProvince())
484             .append("city", getCity())
485             .append("area", getArea())
486             .append("address", getAddress())
487             .append("addressExt", getAddressExt())
488             .append("building", getBuilding())
489             .append("creditCode", getCreditCode())
490             .append("mainbody", getMainbody())
491             .append("mainbodyHeader", getMainbodyHeader())
492             .append("mainbodyType", getMainbodyType())
493             .append("investment", getInvestment())
494             .append("progress", getProgress())
495             .append("productionTime", getProductionTime())
496             .append("dcBuildingLevel", getDcBuildingLevel())
497             .append("dcAllArea", getDcAllArea())
498             .append("dcItArea", getDcItArea())
499             .append("buildingType", getBuildingType())
500             .append("seismicLevel", getSeismicLevel())
501             .append("useType", getUseType())
502             .append("pueDesign", getPueDesign())
503             .append("waterDesign", getWaterDesign())
504             .append("netOperator", getNetOperator())
505             .append("netOperatorOther", getNetOperatorOther())
506             .append("netLevel", getNetLevel())
507             .append("remark", getRemark())
508             .append("sort", getSort())
509             .append("message", getMessage())
510             .append("state", getState())
511             .append("isEnable", getIsEnable())
512             .append("createTime", getCreateTime())
513             .append("updateTime", getUpdateTime())
514             .append("createUser", getCreateUser())
515             .toString();
516     }
517 }