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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.doumee.keyCabinet.http.param;
 
import java.io.Serializable;
 
import lombok.Data;
 
//获取可操作柜格 - 司机
public class GetDriverGridParam implements Serializable {
    //验证人主键
    private int autoMemberId;
    //钥匙柜主键
    private int cabinetId;
    //用户主键
    private int memberId;
    //0=取 1=还
    private int type;
 
    public int getAutoMemberId() {
        return autoMemberId;
    }
 
    public void setAutoMemberId(int autoMemberId) {
        this.autoMemberId = autoMemberId;
    }
 
    public int getCabinetId() {
        return cabinetId;
    }
 
    public void setCabinetId(int cabinetId) {
        this.cabinetId = cabinetId;
    }
 
    public int getMemberId() {
        return memberId;
    }
 
    public void setMemberId(int memberId) {
        this.memberId = memberId;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
}