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;
|
}
|
}
|