weimingfei
7 天以前 9958c9393c8c3a5e2350fa9023e14cbbf74b0d9a
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;
    }
}