44323
2024-05-16 80870e154d7755c36cdb345147532c131858e270
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package com.ruoyi.management.api.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ruoyi.common.core.annotation.Excel;
import com.ruoyi.common.core.web.domain.BaseModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 客户管理对象 t_company
 * 
 * @author xiaochen
 * @date 2023-06-07
 */
public class TCompany extends BaseModel
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /** 客户名称 */
    @Excel(name = "客户名称")
    private String companyName;
 
    /** 省份 */
    @Excel(name = "省份")
    private String province;
 
    /** 省份编码 */
    @Excel(name = "省份编码")
    private String provinceCode;
 
    /** 城市 */
    @Excel(name = "城市")
    private String city;
 
    /** 城市编码 */
    @Excel(name = "城市编码")
    private String cityCode;
 
    /** 区县 */
    @Excel(name = "区县")
    private String district;
 
    /** 区县编码 */
    @Excel(name = "区县编码")
    private String districtCode;
 
    /** 负责人名称 */
    @Excel(name = "负责人名称")
    private String headName;
 
    /** 负责人手机号 */
    @Excel(name = "负责人手机号")
    private String headPhone;
 
    /** 详细地址 */
    @Excel(name = "详细地址")
    private String address;
 
    /** 状态 1启用 0停用 */
    @Excel(name = "状态 1启用 0停用")
    private Integer state;
 
 
 
    public void setId(Integer id)
    {
        this.id = id;
    }
 
    public Integer getId()
    {
        return id;
    }
    public void setCompanyName(String companyName) 
    {
        this.companyName = companyName;
    }
 
    public String getCompanyName() 
    {
        return companyName;
    }
    public void setProvince(String province) 
    {
        this.province = province;
    }
 
    public String getProvince() 
    {
        return province;
    }
    public void setProvinceCode(String provinceCode) 
    {
        this.provinceCode = provinceCode;
    }
 
    public String getProvinceCode() 
    {
        return provinceCode;
    }
    public void setCity(String city) 
    {
        this.city = city;
    }
 
    public String getCity() 
    {
        return city;
    }
    public void setCityCode(String cityCode) 
    {
        this.cityCode = cityCode;
    }
 
    public String getCityCode() 
    {
        return cityCode;
    }
    public void setDistrict(String district) 
    {
        this.district = district;
    }
 
    public String getDistrict() 
    {
        return district;
    }
    public void setDistrictCode(String districtCode) 
    {
        this.districtCode = districtCode;
    }
 
    public String getDistrictCode() 
    {
        return districtCode;
    }
    public void setHeadName(String headName) 
    {
        this.headName = headName;
    }
 
    public String getHeadName() 
    {
        return headName;
    }
    public void setHeadPhone(String headPhone) 
    {
        this.headPhone = headPhone;
    }
 
    public String getHeadPhone() 
    {
        return headPhone;
    }
    public void setAddress(String address) 
    {
        this.address = address;
    }
 
    public String getAddress() 
    {
        return address;
    }
    public void setState(Integer state) 
    {
        this.state = state;
    }
 
    public Integer getState() 
    {
        return state;
    }
 
    @ApiModelProperty(value = "备注说明")
    @Excel(name = "备注说明")
    private String remark;
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("companyName", getCompanyName())
            .append("province", getProvince())
            .append("provinceCode", getProvinceCode())
            .append("city", getCity())
            .append("cityCode", getCityCode())
            .append("district", getDistrict())
            .append("districtCode", getDistrictCode())
            .append("headName", getHeadName())
            .append("headPhone", getHeadPhone())
            .append("address", getAddress())
            .append("remark", getRemark())
            .append("state", getState())
            .append("createBy", getCreateBy())
            .append("updateBy", getUpdateBy())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("disabled", getDisabled())
            .toString();
    }
}