中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 9a224d216652ef2d6ff2e0bd01fba69c86a3f277
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_use_base
11  * 
12  * @author ruoyi
13  * @date 2024-10-10
14  */
15 public class IdcUseBase extends BaseEntity
16 {
17     private static final long serialVersionUID = 1L;
18
19     /** 序号 */
20     private Long id;
21
22     /** 在建转过来的表ID */
23     @Excel(name = "在建转过来的表ID")
24     private Long buildId;
25
26     /** 编号 */
27     @Excel(name = "编号")
28     private String idcNo;
29
30     /** 规模类型 */
31     @Excel(name = "规模类型")
32     private Integer type;
33
34     /** 业务类型 */
35     @Excel(name = "业务类型")
36     private Integer businessType;
37
38     /** 设计机架数 */
39     @Excel(name = "设计机架数")
40     private Long frameNum;
41
42     /** 设计机架功率 */
43     @Excel(name = "设计机架功率")
44     private BigDecimal framePower;
45
46     /** 名称 */
47     @Excel(name = "名称")
48     private String name;
49
50     /** 省(自治区、直辖市) */
51     @Excel(name = "省", readConverterExp = "自=治区、直辖市")
52     private String province;
53
54     /** 市() */
55     @Excel(name = "市", readConverterExp = "市()")
56     private String city;
57
58     /** 区、县 */
59     @Excel(name = "区、县")
60     private String area;
61
62     /** 地址 */
63     @Excel(name = "地址")
64     private String address;
65
66     /** 补充地址 */
67     @Excel(name = "补充地址")
68     private String addressExt;
69
70     /** 机楼 */
71     @Excel(name = "机楼")
72     private String building;
73
74     /** 运营主体统一社会信用代码 */
75     @Excel(name = "运营主体统一社会信用代码")
76     private String creditCode;
77
78     /** 运营主体 */
79     @Excel(name = "运营主体")
80     private String mainbody;
81
82     /** 运营公司总公司 */
83     @Excel(name = "运营公司总公司")
84     private String mainbodyHeader;
85
86     /** 运营主体类型 */
87     @Excel(name = "运营主体类型")
88     private String mainbodyType;
89
90     /** 建设初始投资(万元) */
91     @Excel(name = "建设初始投资", readConverterExp = "万=元")
92     private String investment;
93
94     /** 投产时间 */
95     @Excel(name = "投产时间")
96     private String productionTime;
97
98     /** 建设等级/标准 */
99     @Excel(name = "建设等级/标准")
100     private String dcBuildingLevel;
101
102     /** 数据中心总设计面积 */
103     @Excel(name = "数据中心总设计面积")
104     private Long dcAllArea;
105
106     /** IT机房面积 */
107     @Excel(name = "IT机房面积")
108     private Long dcItArea;
109
110     /** 建筑形式 */
111     @Excel(name = "建筑形式")
112     private String buildingType;
113
114     /** 市电引入方式 */
115     @Excel(name = "市电引入方式")
116     private String cityElectricityType;
117
118     /** 市电引入方式,其它 */
119     @Excel(name = "市电引入方式,其它")
120     private String cityElectricityTypeOther;
121
122     /** 总配电量(KWA) */
123     @Excel(name = "总配电量(KWA)")
124     private BigDecimal powerDistribution;
125
126     /** 用电类型 */
127     @Excel(name = "用电类型")
128     private String electricityType;
129
130     /** 用电类型_其它 */
131     @Excel(name = "用电类型_其它")
132     private String electricityTypeOther;
133
134     /** 设计PUE */
135     @Excel(name = "设计PUE")
136     private BigDecimal pueDesign;
137
138     /** 设计全年用水量 */
139     @Excel(name = "设计全年用水量")
140     private String waterDesign;
141
142     /** 接入网络级别 */
143     @Excel(name = "接入网络级别")
144     private String netLevel;
145
146     /** 链接的运营商 */
147     @Excel(name = "链接的运营商")
148     private String netOperator;
149
150     /** 链接的运营商_其它 */
151     @Excel(name = "链接的运营商_其它")
152     private String netOperatorOther;
153
154     /** 制冷方式 */
155     @Excel(name = "制冷方式")
156     private String airRefrigerationType;
157
158     /** 制冷方式_其它 */
159     @Excel(name = "制冷方式_其它")
160     private String airRefrigerationTypeOther;
161
162     /** 排序 */
163     @Excel(name = "排序")
164     private Long sort;
165
166     /** 反馈信息 */
167     @Excel(name = "反馈信息")
168     private String message;
169
170     /** 状态 */
171     @Excel(name = "状态")
172     private Long state;
173
174     /** 是否可用 */
175     @Excel(name = "是否可用")
176     private Integer isEnable;
177
178     /** 创建者 */
179     @Excel(name = "创建者")
180     private Long createUser;
181
182     /** 更新者 */
183     @Excel(name = "更新者")
184     private Long updateUser;
185
186     public void setId(Long id) 
187     {
188         this.id = id;
189     }
190
191     public Long getId() 
192     {
193         return id;
194     }
195     public void setBuildId(Long buildId) 
196     {
197         this.buildId = buildId;
198     }
199
200     public Long getBuildId() 
201     {
202         return buildId;
203     }
204     public void setIdcNo(String idcNo) 
205     {
206         this.idcNo = idcNo;
207     }
208
209     public String getIdcNo() 
210     {
211         return idcNo;
212     }
213     public void setType(Integer type) 
214     {
215         this.type = type;
216     }
217
218     public Integer getType() 
219     {
220         return type;
221     }
222     public void setBusinessType(Integer businessType) 
223     {
224         this.businessType = businessType;
225     }
226
227     public Integer getBusinessType() 
228     {
229         return businessType;
230     }
231     public void setFrameNum(Long frameNum) 
232     {
233         this.frameNum = frameNum;
234     }
235
236     public Long getFrameNum() 
237     {
238         return frameNum;
239     }
240     public void setFramePower(BigDecimal framePower) 
241     {
242         this.framePower = framePower;
243     }
244
245     public BigDecimal getFramePower() 
246     {
247         return framePower;
248     }
249     public void setName(String name) 
250     {
251         this.name = name;
252     }
253
254     public String getName() 
255     {
256         return name;
257     }
258     public void setProvince(String province) 
259     {
260         this.province = province;
261     }
262
263     public String getProvince() 
264     {
265         return province;
266     }
267     public void setCity(String city) 
268     {
269         this.city = city;
270     }
271
272     public String getCity() 
273     {
274         return city;
275     }
276     public void setArea(String area) 
277     {
278         this.area = area;
279     }
280
281     public String getArea() 
282     {
283         return area;
284     }
285     public void setAddress(String address) 
286     {
287         this.address = address;
288     }
289
290     public String getAddress() 
291     {
292         return address;
293     }
294     public void setAddressExt(String addressExt) 
295     {
296         this.addressExt = addressExt;
297     }
298
299     public String getAddressExt() 
300     {
301         return addressExt;
302     }
303     public void setBuilding(String building) 
304     {
305         this.building = building;
306     }
307
308     public String getBuilding() 
309     {
310         return building;
311     }
312     public void setCreditCode(String creditCode) 
313     {
314         this.creditCode = creditCode;
315     }
316
317     public String getCreditCode() 
318     {
319         return creditCode;
320     }
321     public void setMainbody(String mainbody) 
322     {
323         this.mainbody = mainbody;
324     }
325
326     public String getMainbody() 
327     {
328         return mainbody;
329     }
330     public void setMainbodyHeader(String mainbodyHeader) 
331     {
332         this.mainbodyHeader = mainbodyHeader;
333     }
334
335     public String getMainbodyHeader() 
336     {
337         return mainbodyHeader;
338     }
339     public void setMainbodyType(String mainbodyType) 
340     {
341         this.mainbodyType = mainbodyType;
342     }
343
344     public String getMainbodyType() 
345     {
346         return mainbodyType;
347     }
348     public void setInvestment(String investment) 
349     {
350         this.investment = investment;
351     }
352
353     public String getInvestment() 
354     {
355         return investment;
356     }
357     public void setProductionTime(String productionTime) 
358     {
359         this.productionTime = productionTime;
360     }
361
362     public String getProductionTime() 
363     {
364         return productionTime;
365     }
366     public void setDcBuildingLevel(String dcBuildingLevel) 
367     {
368         this.dcBuildingLevel = dcBuildingLevel;
369     }
370
371     public String getDcBuildingLevel() 
372     {
373         return dcBuildingLevel;
374     }
375     public void setDcAllArea(Long dcAllArea) 
376     {
377         this.dcAllArea = dcAllArea;
378     }
379
380     public Long getDcAllArea() 
381     {
382         return dcAllArea;
383     }
384     public void setDcItArea(Long dcItArea) 
385     {
386         this.dcItArea = dcItArea;
387     }
388
389     public Long getDcItArea() 
390     {
391         return dcItArea;
392     }
393     public void setBuildingType(String buildingType) 
394     {
395         this.buildingType = buildingType;
396     }
397
398     public String getBuildingType() 
399     {
400         return buildingType;
401     }
402     public void setCityElectricityType(String cityElectricityType) 
403     {
404         this.cityElectricityType = cityElectricityType;
405     }
406
407     public String getCityElectricityType() 
408     {
409         return cityElectricityType;
410     }
411     public void setCityElectricityTypeOther(String cityElectricityTypeOther) 
412     {
413         this.cityElectricityTypeOther = cityElectricityTypeOther;
414     }
415
416     public String getCityElectricityTypeOther() 
417     {
418         return cityElectricityTypeOther;
419     }
420     public void setPowerDistribution(BigDecimal powerDistribution) 
421     {
422         this.powerDistribution = powerDistribution;
423     }
424
425     public BigDecimal getPowerDistribution() 
426     {
427         return powerDistribution;
428     }
429     public void setElectricityType(String electricityType) 
430     {
431         this.electricityType = electricityType;
432     }
433
434     public String getElectricityType() 
435     {
436         return electricityType;
437     }
438     public void setElectricityTypeOther(String electricityTypeOther) 
439     {
440         this.electricityTypeOther = electricityTypeOther;
441     }
442
443     public String getElectricityTypeOther() 
444     {
445         return electricityTypeOther;
446     }
447     public void setPueDesign(BigDecimal pueDesign) 
448     {
449         this.pueDesign = pueDesign;
450     }
451
452     public BigDecimal getPueDesign() 
453     {
454         return pueDesign;
455     }
456     public void setWaterDesign(String waterDesign) 
457     {
458         this.waterDesign = waterDesign;
459     }
460
461     public String getWaterDesign() 
462     {
463         return waterDesign;
464     }
465     public void setNetLevel(String netLevel) 
466     {
467         this.netLevel = netLevel;
468     }
469
470     public String getNetLevel() 
471     {
472         return netLevel;
473     }
474     public void setNetOperator(String netOperator) 
475     {
476         this.netOperator = netOperator;
477     }
478
479     public String getNetOperator() 
480     {
481         return netOperator;
482     }
483     public void setNetOperatorOther(String netOperatorOther) 
484     {
485         this.netOperatorOther = netOperatorOther;
486     }
487
488     public String getNetOperatorOther() 
489     {
490         return netOperatorOther;
491     }
492     public void setAirRefrigerationType(String airRefrigerationType) 
493     {
494         this.airRefrigerationType = airRefrigerationType;
495     }
496
497     public String getAirRefrigerationType() 
498     {
499         return airRefrigerationType;
500     }
501     public void setAirRefrigerationTypeOther(String airRefrigerationTypeOther) 
502     {
503         this.airRefrigerationTypeOther = airRefrigerationTypeOther;
504     }
505
506     public String getAirRefrigerationTypeOther() 
507     {
508         return airRefrigerationTypeOther;
509     }
510     public void setSort(Long sort) 
511     {
512         this.sort = sort;
513     }
514
515     public Long getSort() 
516     {
517         return sort;
518     }
519     public void setMessage(String message) 
520     {
521         this.message = message;
522     }
523
524     public String getMessage() 
525     {
526         return message;
527     }
528     public void setState(Long state) 
529     {
530         this.state = state;
531     }
532
533     public Long getState() 
534     {
535         return state;
536     }
537     public void setIsEnable(Integer isEnable) 
538     {
539         this.isEnable = isEnable;
540     }
541
542     public Integer getIsEnable() 
543     {
544         return isEnable;
545     }
546     public void setCreateUser(Long createUser) 
547     {
548         this.createUser = createUser;
549     }
550
551     public Long getCreateUser() 
552     {
553         return createUser;
554     }
555     public void setUpdateUser(Long updateUser) 
556     {
557         this.updateUser = updateUser;
558     }
559
560     public Long getUpdateUser() 
561     {
562         return updateUser;
563     }
564
565     @Override
566     public String toString() {
567         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
568             .append("id", getId())
569             .append("buildId", getBuildId())
570             .append("idcNo", getIdcNo())
571             .append("type", getType())
572             .append("businessType", getBusinessType())
573             .append("frameNum", getFrameNum())
574             .append("framePower", getFramePower())
575             .append("name", getName())
576             .append("province", getProvince())
577             .append("city", getCity())
578             .append("area", getArea())
579             .append("address", getAddress())
580             .append("addressExt", getAddressExt())
581             .append("building", getBuilding())
582             .append("creditCode", getCreditCode())
583             .append("mainbody", getMainbody())
584             .append("mainbodyHeader", getMainbodyHeader())
585             .append("mainbodyType", getMainbodyType())
586             .append("investment", getInvestment())
587             .append("productionTime", getProductionTime())
588             .append("dcBuildingLevel", getDcBuildingLevel())
589             .append("dcAllArea", getDcAllArea())
590             .append("dcItArea", getDcItArea())
591             .append("buildingType", getBuildingType())
592             .append("cityElectricityType", getCityElectricityType())
593             .append("cityElectricityTypeOther", getCityElectricityTypeOther())
594             .append("powerDistribution", getPowerDistribution())
595             .append("electricityType", getElectricityType())
596             .append("electricityTypeOther", getElectricityTypeOther())
597             .append("pueDesign", getPueDesign())
598             .append("waterDesign", getWaterDesign())
599             .append("netLevel", getNetLevel())
600             .append("netOperator", getNetOperator())
601             .append("netOperatorOther", getNetOperatorOther())
602             .append("airRefrigerationType", getAirRefrigerationType())
603             .append("airRefrigerationTypeOther", getAirRefrigerationTypeOther())
604             .append("sort", getSort())
605             .append("message", getMessage())
606             .append("state", getState())
607             .append("isEnable", getIsEnable())
608             .append("createUser", getCreateUser())
609             .append("createTime", getCreateTime())
610             .append("updateUser", getUpdateUser())
611             .append("updateTime", getUpdateTime())
612             .append("remark", getRemark())
613             .toString();
614     }
615 }