weimingfei
7 天以前 4caffc77d00a9048ffd51eea9973f62888e13ba6
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
package com.doumee.keyCabinet.http.param;
 
import java.math.BigDecimal;
 
public class CreateOrderParam {
    //票据id
    private String billId;
    //票据类型 1/2 门票/套餐
    private String billType;
    //票据二维码
    private String code;
    //手环机id
    private String devCode;
    //会员id
    private String memberId;
    private String phone;
    private String userName;
    private BigDecimal money;
    //业务id
    private String busId;
 
    public String getBillId() {
        return billId;
    }
 
    public void setBillId(String billId) {
        this.billId = billId;
    }
 
    public String getBillType() {
        return billType;
    }
 
    public void setBillType(String billType) {
        this.billType = billType;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getDevCode() {
        return devCode;
    }
 
    public void setDevCode(String devCode) {
        this.devCode = devCode;
    }
 
    public String getMemberId() {
        return memberId;
    }
 
    public void setMemberId(String memberId) {
        this.memberId = memberId;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public BigDecimal getMoney() {
        return money;
    }
 
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
 
    public String getBusId() {
        return busId;
    }
 
    public void setBusId(String busId) {
        this.busId = busId;
    }
}