中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 5cc82f45d73865489cc39e5ffbf521bf4279ec53
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
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_tel_code
 * 
 * @author ruoyi
 * @date 2024-10-09
 */
public class IdcTelCode extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 表ID */
    private Long id;
 
    /** 省份 */
    @Excel(name = "省份")
    private String province;
 
    /** 城市 */
    @Excel(name = "城市")
    private String city;
 
    /** 号码 */
    @Excel(name = "号码")
    private String code;
 
    /** 文章是否可用 */
    @Excel(name = "文章是否可用")
    private Long state;
 
    /** 创建者 */
    @Excel(name = "创建者")
    private Long createUser;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setProvince(String province) 
    {
        this.province = province;
    }
 
    public String getProvince() 
    {
        return province;
    }
    public void setCity(String city) 
    {
        this.city = city;
    }
 
    public String getCity() 
    {
        return city;
    }
    public void setCode(String code) 
    {
        this.code = code;
    }
 
    public String getCode() 
    {
        return code;
    }
    public void setState(Long state) 
    {
        this.state = state;
    }
 
    public Long getState() 
    {
        return state;
    }
    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("province", getProvince())
            .append("city", getCity())
            .append("code", getCode())
            .append("state", getState())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("createUser", getCreateUser())
            .toString();
    }
}