weimingfei
2 天以前 81e258e6aa59dafce998b4f41b1271a9f5c9aff5
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
package com.doumee.keyCabinet.http.param;
 
public class AlcoholTestAlarmParam {
    //柜子id
    private Integer cabinetId;
    //会员id
    private Integer memberId;
    private String alcoholNum;
 
    public Integer getMemberId() {
        return memberId;
    }
 
    public void setMemberId(Integer memberId) {
        this.memberId = memberId;
    }
 
    public String getAlcoholNum() {
        return alcoholNum;
    }
 
    public void setAlcoholNum(String alcoholNum) {
        this.alcoholNum = alcoholNum;
    }
 
    public Integer getCabinetId() {
        return cabinetId;
    }
 
    public void setCabinetId(Integer cabinetId) {
        this.cabinetId = cabinetId;
    }
}