doum
5 天以前 cb6aca0642ac8dd5de877ade168066d85acb589c
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
package com.doumee.keyCabinet.http.param;
 
import java.util.List;
 
public class BatchOpenGridAdminParam {
    //钥匙柜主键
    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;
    }
}