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;
|
}
|
}
|