weimingfei
4 天以前 2e9e14088a9a7ec0eabb99eed54efeb1254fa927
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 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;
    }
}