中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 5cc82f45d73865489cc39e5ffbf521bf4279ec53
commit | author | age
5cc82f 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_use_transport
10  * 
11  * @author ruoyi
12  * @date 2024-10-10
13  */
14 public class IdcUseTransport 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     /** 算力中心网络出口带宽(Gbps) */
30     @Excel(name = "算力中心网络出口带宽", readConverterExp = "G=bps")
31     private String idcBandwidthExport;
32
33     /** 算力中心内IB技术部署率(%) */
34     @Excel(name = "算力中心内IB技术部署率", readConverterExp = "%=")
35     private String idcIbRate;
36
37     /** 算力中心内RoCE等技术部署率(%) */
38     @Excel(name = "算力中心内RoCE等技术部署率", readConverterExp = "%=")
39     private String idcRoceRate;
40
41     /** 算力中心内全光交换技术部署率(%) */
42     @Excel(name = "算力中心内全光交换技术部署率", readConverterExp = "%=")
43     private String idcOpticalRate;
44
45     /** 排序 */
46     @Excel(name = "排序")
47     private Long Sort;
48
49     /** 更新者 */
50     @Excel(name = "更新者")
51     private Long updateUser;
52
53     /** 创建者 */
54     @Excel(name = "创建者")
55     private Long createUser;
56
57     public void setId(Long id) 
58     {
59         this.id = id;
60     }
61
62     public Long getId() 
63     {
64         return id;
65     }
66     public void setBaseId(Long baseId) 
67     {
68         this.baseId = baseId;
69     }
70
71     public Long getBaseId() 
72     {
73         return baseId;
74     }
75     public void setDateNode(String dateNode) 
76     {
77         this.dateNode = dateNode;
78     }
79
80     public String getDateNode() 
81     {
82         return dateNode;
83     }
84     public void setIdcBandwidthExport(String idcBandwidthExport) 
85     {
86         this.idcBandwidthExport = idcBandwidthExport;
87     }
88
89     public String getIdcBandwidthExport() 
90     {
91         return idcBandwidthExport;
92     }
93     public void setIdcIbRate(String idcIbRate) 
94     {
95         this.idcIbRate = idcIbRate;
96     }
97
98     public String getIdcIbRate() 
99     {
100         return idcIbRate;
101     }
102     public void setIdcRoceRate(String idcRoceRate) 
103     {
104         this.idcRoceRate = idcRoceRate;
105     }
106
107     public String getIdcRoceRate() 
108     {
109         return idcRoceRate;
110     }
111     public void setIdcOpticalRate(String idcOpticalRate) 
112     {
113         this.idcOpticalRate = idcOpticalRate;
114     }
115
116     public String getIdcOpticalRate() 
117     {
118         return idcOpticalRate;
119     }
120     public void setSort(Long Sort) 
121     {
122         this.Sort = Sort;
123     }
124
125     public Long getSort() 
126     {
127         return Sort;
128     }
129     public void setUpdateUser(Long updateUser) 
130     {
131         this.updateUser = updateUser;
132     }
133
134     public Long getUpdateUser() 
135     {
136         return updateUser;
137     }
138     public void setCreateUser(Long createUser) 
139     {
140         this.createUser = createUser;
141     }
142
143     public Long getCreateUser() 
144     {
145         return createUser;
146     }
147
148     @Override
149     public String toString() {
150         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
151             .append("id", getId())
152             .append("baseId", getBaseId())
153             .append("dateNode", getDateNode())
154             .append("idcBandwidthExport", getIdcBandwidthExport())
155             .append("idcIbRate", getIdcIbRate())
156             .append("idcRoceRate", getIdcRoceRate())
157             .append("idcOpticalRate", getIdcOpticalRate())
158             .append("Sort", getSort())
159             .append("createTime", getCreateTime())
160             .append("updateTime", getUpdateTime())
161             .append("updateUser", getUpdateUser())
162             .append("createUser", getCreateUser())
163             .append("remark", getRemark())
164             .toString();
165     }
166 }