puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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
package com.stylefeng.guns.modular.system.controller.resp;
 
import com.stylefeng.guns.modular.system.model.TAgent;
import com.stylefeng.guns.modular.system.model.TComplaint;
import io.swagger.annotations.ApiModelProperty;
 
import java.math.BigDecimal;
 
public class TComplaintResp extends TComplaint {
 
    @ApiModelProperty(value = "投诉人名称")
    private String userName;
 
    @ApiModelProperty(value = "投诉人电话")
    private String userPhone;
 
    @ApiModelProperty(value = "司机电话")
    private String driverPhone;
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getUserPhone() {
        return userPhone;
    }
 
    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }
 
    public String getDriverPhone() {
        return driverPhone;
    }
 
    public void setDriverPhone(String driverPhone) {
        this.driverPhone = driverPhone;
    }
}