中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 5cc82f45d73865489cc39e5ffbf521bf4279ec53
commit | author | age
1d2509 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编号索引对象 idc_no_index
10  * 
11  * @author ruoyi
12  * @date 2024-10-09
13  */
14 public class IdcNoIndex extends BaseEntity
15 {
16     private static final long serialVersionUID = 1L;
17
18     /** ID */
19     private Long id;
20
21     /** 省份 */
22     @Excel(name = "省份")
23     private String telNo;
24
25     /** 投产年份 */
26     @Excel(name = "投产年份")
27     private String productionYear;
28
29     /** 序号 */
30     @Excel(name = "序号")
31     private String index;
32
33     public void setId(Long id) 
34     {
35         this.id = id;
36     }
37
38     public Long getId() 
39     {
40         return id;
41     }
42     public void setTelNo(String telNo) 
43     {
44         this.telNo = telNo;
45     }
46
47     public String getTelNo() 
48     {
49         return telNo;
50     }
51     public void setProductionYear(String productionYear) 
52     {
53         this.productionYear = productionYear;
54     }
55
56     public String getProductionYear() 
57     {
58         return productionYear;
59     }
60     public void setIndex(String index) 
61     {
62         this.index = index;
63     }
64
65     public String getIndex() 
66     {
67         return index;
68     }
69
70     @Override
71     public String toString() {
72         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
73             .append("id", getId())
74             .append("telNo", getTelNo())
75             .append("productionYear", getProductionYear())
76             .append("index", getIndex())
77             .toString();
78     }
79 }