From 37f8463032c06236bfd098133c31cda51217b00f Mon Sep 17 00:00:00 2001
From: yanzhaofeige <yanzhaofeige@qq.com>
Date: Wed, 09 Oct 2024 23:08:37 +0800
Subject: [PATCH] 数据中心编号处理

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

diff --git a/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/domain/IdcNoIndex.java b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/domain/IdcNoIndex.java
new file mode 100644
index 0000000..c1c05fd
--- /dev/null
+++ b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/domain/IdcNoIndex.java
@@ -0,0 +1,79 @@
+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编号索引对象 idc_no_index
+ * 
+ * @author ruoyi
+ * @date 2024-10-09
+ */
+public class IdcNoIndex extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** ID */
+    private Long id;
+
+    /** 省份 */
+    @Excel(name = "省份")
+    private String telNo;
+
+    /** 投产年份 */
+    @Excel(name = "投产年份")
+    private String productionYear;
+
+    /** 序号 */
+    @Excel(name = "序号")
+    private String index;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setTelNo(String telNo) 
+    {
+        this.telNo = telNo;
+    }
+
+    public String getTelNo() 
+    {
+        return telNo;
+    }
+    public void setProductionYear(String productionYear) 
+    {
+        this.productionYear = productionYear;
+    }
+
+    public String getProductionYear() 
+    {
+        return productionYear;
+    }
+    public void setIndex(String index) 
+    {
+        this.index = index;
+    }
+
+    public String getIndex() 
+    {
+        return index;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("telNo", getTelNo())
+            .append("productionYear", getProductionYear())
+            .append("index", getIndex())
+            .toString();
+    }
+}

--
Gitblit v1.9.3