Linjiajia
2023-04-04 2b6fd0451bfa358052ac9eb061ec1ed595587e9e
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.application.zhangshi_app_android.bean;
 
import java.io.Serializable;
 
/**
 * @author Ljj
 * @date 2023.04.04. 0:22
 * @desc 家庭设备 bean
 */
public class HomeDevicesBean implements Serializable {
    private long id;
    private String name;
    private String createTime;
    private String people;
    private String content;
    private String address;
    private String remark;
    private String url;
 
    public HomeDevicesBean(long id, String name, String createTime, String people, String content, String address, String remark, String url) {
        this.id = id;
        this.name = name;
        this.createTime = createTime;
        this.people = people;
        this.content = content;
        this.address = address;
        this.remark = remark;
        this.url = url;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public String getPeople() {
        return people;
    }
 
    public void setPeople(String people) {
        this.people = people;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
}