package com.doumee.keyCabinet.http.param;
|
|
import java.util.List;
|
|
public class CancelFaultParam {
|
//钥匙柜主键
|
private Integer cabinetId;
|
//柜格主键列表
|
private List<Integer> gridIdList;
|
|
public Integer getCabinetId() {
|
return cabinetId;
|
}
|
|
public void setCabinetId(Integer cabinetId) {
|
this.cabinetId = cabinetId;
|
}
|
|
public List<Integer> getGridIdList() {
|
return gridIdList;
|
}
|
|
public void setGridIdList(List<Integer> gridIdList) {
|
this.gridIdList = gridIdList;
|
}
|
}
|