weimingfei
10 小时以前 8d459194e620a691994fb8226fb08c51a3dd8065
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.doumee.keyCabinet.http.param;
 
public class AlcoholTestAlarmParam {
    //会员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;
    }
}