From 9a224d216652ef2d6ff2e0bd01fba69c86a3f277 Mon Sep 17 00:00:00 2001
From: yanzhaofeige <yanzhaofeige@qq.com>
Date: Fri, 11 Oct 2024 11:28:55 +0800
Subject: [PATCH] 基础表单更新

---
 cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/domain/IdcUseTransport.java |  166 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 166 insertions(+), 0 deletions(-)

diff --git a/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/domain/IdcUseTransport.java b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/domain/IdcUseTransport.java
new file mode 100644
index 0000000..df32320
--- /dev/null
+++ b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/domain/IdcUseTransport.java
@@ -0,0 +1,166 @@
+package com.odcc.cpzidc.bis.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.odcc.cpzidc.common.annotation.Excel;
+import com.odcc.cpzidc.common.core.domain.BaseEntity;
+
+/**
+ * 运力指标信息对象 idc_use_transport
+ * 
+ * @author ruoyi
+ * @date 2024-10-10
+ */
+public class IdcUseTransport extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 序号 */
+    private Long id;
+
+    /** 数据中心ID */
+    @Excel(name = "数据中心ID")
+    private Long baseId;
+
+    /** 日期节点 */
+    @Excel(name = "日期节点")
+    private String dateNode;
+
+    /** 算力中心网络出口带宽(Gbps) */
+    @Excel(name = "算力中心网络出口带宽", readConverterExp = "G=bps")
+    private String idcBandwidthExport;
+
+    /** 算力中心内IB技术部署率(%) */
+    @Excel(name = "算力中心内IB技术部署率", readConverterExp = "%=")
+    private String idcIbRate;
+
+    /** 算力中心内RoCE等技术部署率(%) */
+    @Excel(name = "算力中心内RoCE等技术部署率", readConverterExp = "%=")
+    private String idcRoceRate;
+
+    /** 算力中心内全光交换技术部署率(%) */
+    @Excel(name = "算力中心内全光交换技术部署率", readConverterExp = "%=")
+    private String idcOpticalRate;
+
+    /** 排序 */
+    @Excel(name = "排序")
+    private Long Sort;
+
+    /** 更新者 */
+    @Excel(name = "更新者")
+    private Long updateUser;
+
+    /** 创建者 */
+    @Excel(name = "创建者")
+    private Long createUser;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setBaseId(Long baseId) 
+    {
+        this.baseId = baseId;
+    }
+
+    public Long getBaseId() 
+    {
+        return baseId;
+    }
+    public void setDateNode(String dateNode) 
+    {
+        this.dateNode = dateNode;
+    }
+
+    public String getDateNode() 
+    {
+        return dateNode;
+    }
+    public void setIdcBandwidthExport(String idcBandwidthExport) 
+    {
+        this.idcBandwidthExport = idcBandwidthExport;
+    }
+
+    public String getIdcBandwidthExport() 
+    {
+        return idcBandwidthExport;
+    }
+    public void setIdcIbRate(String idcIbRate) 
+    {
+        this.idcIbRate = idcIbRate;
+    }
+
+    public String getIdcIbRate() 
+    {
+        return idcIbRate;
+    }
+    public void setIdcRoceRate(String idcRoceRate) 
+    {
+        this.idcRoceRate = idcRoceRate;
+    }
+
+    public String getIdcRoceRate() 
+    {
+        return idcRoceRate;
+    }
+    public void setIdcOpticalRate(String idcOpticalRate) 
+    {
+        this.idcOpticalRate = idcOpticalRate;
+    }
+
+    public String getIdcOpticalRate() 
+    {
+        return idcOpticalRate;
+    }
+    public void setSort(Long Sort) 
+    {
+        this.Sort = Sort;
+    }
+
+    public Long getSort() 
+    {
+        return Sort;
+    }
+    public void setUpdateUser(Long updateUser) 
+    {
+        this.updateUser = updateUser;
+    }
+
+    public Long getUpdateUser() 
+    {
+        return updateUser;
+    }
+    public void setCreateUser(Long createUser) 
+    {
+        this.createUser = createUser;
+    }
+
+    public Long getCreateUser() 
+    {
+        return createUser;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("baseId", getBaseId())
+            .append("dateNode", getDateNode())
+            .append("idcBandwidthExport", getIdcBandwidthExport())
+            .append("idcIbRate", getIdcIbRate())
+            .append("idcRoceRate", getIdcRoceRate())
+            .append("idcOpticalRate", getIdcOpticalRate())
+            .append("Sort", getSort())
+            .append("createTime", getCreateTime())
+            .append("updateTime", getUpdateTime())
+            .append("updateUser", getUpdateUser())
+            .append("createUser", getCreateUser())
+            .append("remark", getRemark())
+            .toString();
+    }
+}

--
Gitblit v1.9.3