package com.doumee.keyCabinet.http.param;
|
|
import java.io.Serializable;
|
|
//开启柜格 - 司机
|
public class OpenGridDriverParam implements Serializable {
|
//验证方式 0刷脸 1刷卡
|
private int authType;
|
//用户id
|
private int memberId;
|
//钥匙柜主键
|
private int cabinetId;
|
//柜格主键
|
private int gridId;
|
//开启方式:0=系统开启;1=手动开启
|
private int openType;
|
|
//派车申请单主键
|
private Integer carUseBookId;
|
//取钥匙方式:0=随车;1=派车单;2=保洁打扫
|
private Integer openWay;
|
|
public int getAuthType() {
|
return authType;
|
}
|
|
public void setAuthType(int authType) {
|
this.authType = authType;
|
}
|
|
public int getMemberId() {
|
return memberId;
|
}
|
|
public void setMemberId(int memberId) {
|
this.memberId = memberId;
|
}
|
|
public int getCabinetId() {
|
return cabinetId;
|
}
|
|
public void setCabinetId(int cabinetId) {
|
this.cabinetId = cabinetId;
|
}
|
|
public int getGridId() {
|
return gridId;
|
}
|
|
public void setGridId(int gridId) {
|
this.gridId = gridId;
|
}
|
|
public int getOpenType() {
|
return openType;
|
}
|
|
public void setOpenType(int openType) {
|
this.openType = openType;
|
}
|
|
public Integer getCarUseBookId() {
|
return carUseBookId;
|
}
|
|
public void setCarUseBookId(Integer carUseBookId) {
|
this.carUseBookId = carUseBookId;
|
}
|
|
public Integer getOpenWay() {
|
return openWay;
|
}
|
|
public void setOpenWay(Integer openWay) {
|
this.openWay = openWay;
|
}
|
}
|