中国算力平台算力登记系统2.0
yanzhaofeige
5 days ago 1d25094b9f0e339d784e6f1b17c95c88c272dd45
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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();
    }
}