weimingfei
昨天 1beef58a3db5cc1245bb8d91887bdf787b06a6e0
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
34
35
36
package com.doumee.keyCabinet.http.param;
 
import java.util.List;
 
public class BatchOpenGridAdminParam {
    //钥匙柜主键
    private Integer cabinetId;
    //柜格主键列表
    private List<Integer> gridIdList;
    //开启方式:0=系统开启;1=手动开启
    private int openType;
 
    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;
    }
 
    public int getOpenType() {
        return openType;
    }
 
    public void setOpenType(int openType) {
        this.openType = openType;
    }
}