leutu
2024-06-03 3ef35e6cd16bbfa206b26bb3271eac40ad020bcb
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.fastbee.iot.model;
 
/**
 * 用户ID和设备ID模型
 * 
 * @author kerwincui
 * @date 2021-12-16
 */
public class UserIdDeviceIdModel
{
    private Long userId;
 
    private Long deviceId;
 
    public UserIdDeviceIdModel(Long userId, Long deviceId){
        this.userId=userId;
        this.deviceId=deviceId;
    }
 
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Long getDeviceId() {
        return deviceId;
    }
 
    public void setDeviceId(Long deviceId) {
        this.deviceId = deviceId;
    }
}