xuhy
2023-08-11 9f883e7eb1b181aab1a2dc36765a1d11e39cf532
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
package com.sinata.ministryoftransport.model;
 
import java.util.Date;
 
/**
 * 网约车平台公司服务机构
 */
public class BaseInfoCompanyService {
    /**
     * 行政区划代码
     */
    private Integer Address;
    /**
     * 服务机构名称
     */
    private String ServiceName;
    /**
     * 服务机构代码
     */
    private String ServiceNo;
    /**
     * 服务机构地址
     */
    private String DetailAddress;
    /**
     * 服务机构负责人姓名
     */
    private String ResponsibleName;
    /**
     * 负责人联系电话
     */
    private String ResponsiblePhone;
    /**
     * 服务机构管理人姓名
     */
    private String ManagerName;
    /**
     * 管理人联系电话
     */
    private String ManagerPhone;
    /**
     * 服务机构紧急联系电话
     */
    private String ContactPhone;
    /**
     * 行政文书送达邮寄地址
     */
    private String MailAddress;
    /**
     * 服务机构设立日期
     */
    private Date CreateDate;
    /**
     * 状态(0:有效,1:无效)
     */
    private Integer State;
    /**
     * 操作标识(1:新增,2:更新,3:删除)
     */
    private Integer Flag;
    /**
     * 更新时间
     */
    private Date UpdateTime;
 
    public Integer getAddress() {
        return Address;
    }
 
    public void setAddress(Integer address) {
        Address = address;
    }
 
    public String getServiceName() {
        return ServiceName;
    }
 
    public void setServiceName(String serviceName) {
        ServiceName = serviceName;
    }
 
    public String getServiceNo() {
        return ServiceNo;
    }
 
    public void setServiceNo(String serviceNo) {
        ServiceNo = serviceNo;
    }
 
    public String getDetailAddress() {
        return DetailAddress;
    }
 
    public void setDetailAddress(String detailAddress) {
        DetailAddress = detailAddress;
    }
 
    public String getResponsibleName() {
        return ResponsibleName;
    }
 
    public void setResponsibleName(String responsibleName) {
        ResponsibleName = responsibleName;
    }
 
    public String getResponsiblePhone() {
        return ResponsiblePhone;
    }
 
    public void setResponsiblePhone(String responsiblePhone) {
        ResponsiblePhone = responsiblePhone;
    }
 
    public String getManagerName() {
        return ManagerName;
    }
 
    public void setManagerName(String managerName) {
        ManagerName = managerName;
    }
 
    public String getManagerPhone() {
        return ManagerPhone;
    }
 
    public void setManagerPhone(String managerPhone) {
        ManagerPhone = managerPhone;
    }
 
    public String getContactPhone() {
        return ContactPhone;
    }
 
    public void setContactPhone(String contactPhone) {
        ContactPhone = contactPhone;
    }
 
    public String getMailAddress() {
        return MailAddress;
    }
 
    public void setMailAddress(String mailAddress) {
        MailAddress = mailAddress;
    }
 
    public Date getCreateDate() {
        return CreateDate;
    }
 
    public void setCreateDate(Date createDate) {
        CreateDate = createDate;
    }
 
    public Integer getState() {
        return State;
    }
 
    public void setState(Integer state) {
        State = state;
    }
 
    public Integer getFlag() {
        return Flag;
    }
 
    public void setFlag(Integer flag) {
        Flag = flag;
    }
 
    public Date getUpdateTime() {
        return UpdateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        UpdateTime = updateTime;
    }
 
    @Override
    public String toString() {
        return "BaseInfoCompanyService{" +
                "Address=" + Address +
                ", ServiceName='" + ServiceName + '\'' +
                ", ServiceNo='" + ServiceNo + '\'' +
                ", DetailAddress='" + DetailAddress + '\'' +
                ", ResponsibleName='" + ResponsibleName + '\'' +
                ", ResponsiblePhone='" + ResponsiblePhone + '\'' +
                ", ManagerName='" + ManagerName + '\'' +
                ", ManagerPhone='" + ManagerPhone + '\'' +
                ", ContactPhone='" + ContactPhone + '\'' +
                ", MailAddress='" + MailAddress + '\'' +
                ", CreateDate=" + CreateDate +
                ", State=" + State +
                ", Flag=" + Flag +
                ", UpdateTime=" + UpdateTime +
                '}';
    }
}