Pu Zhibing
8 天以前 41d7465a87e2a52740936a5969c5b182e5eb09b3
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
package com.stylefeng.guns.modular.system.controller.resp;
 
import com.stylefeng.guns.modular.system.model.TRechargeRecord;
import io.swagger.annotations.ApiModelProperty;
 
public class TRechargeRecordUserResp extends TRechargeRecord {
 
    @ApiModelProperty(value = "用户姓名")
    private String userName;
 
    @ApiModelProperty(value = "用户手机号")
    private String userPhone;
    @ApiModelProperty(value = "分公司名称")
    private String branchOfficeName;
 
    public String getBranchOfficeName() {
        return branchOfficeName;
    }
 
    public void setBranchOfficeName(String branchOfficeName) {
        this.branchOfficeName = branchOfficeName;
    }
 
    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;
    }
}