xuhy
2023-02-28 adb18caa714692ccabf111ae3ab3481bf04844d4
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
package com.stylefeng.guns.modular.system.controller.resp;
 
import com.stylefeng.guns.modular.system.model.TEvaluate;
import io.swagger.annotations.ApiModelProperty;
 
public class TEvaluateResp extends TEvaluate {
 
    @ApiModelProperty(value = "订单编号")
    private String code;
 
    @ApiModelProperty(value = "评论用户名")
    private String userName;
 
    @ApiModelProperty(value = "评论用户手机号")
    private String userPhone;
 
    @ApiModelProperty(value = "评论司机")
    private String driverName;
 
    @ApiModelProperty(value = "司机手机号")
    private String driverPhone;
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    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 getDriverName() {
        return driverName;
    }
 
    public void setDriverName(String driverName) {
        this.driverName = driverName;
    }
 
    public String getDriverPhone() {
        return driverPhone;
    }
 
    public void setDriverPhone(String driverPhone) {
        this.driverPhone = driverPhone;
    }
}