| | |
| | | package com.application.zhangshi_app_android.bean; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author Ljj |
| | | * @date 2023.03.18. 10:29 |
| | | * @desc 家大事记 bean 类 |
| | | */ |
| | | public class FamilyMemorabiliaBean { |
| | | public class FamilyMemorabiliaBean implements Serializable { |
| | | private long id; |
| | | private String address; |
| | | private String createTime; |
| | | private String people; |
| | | private String remark; |
| | | private String title; |
| | | private String url; |
| | | private List<String> url; |
| | | |
| | | public String getAddress() { return address; } |
| | | public void setAddress(String value) { this.address = value; } |
| | |
| | | public void setCreateTime(String value) { this.createTime = value; } |
| | | |
| | | public long getId() { return id; } |
| | | public void setId(long value) { this.id = value; } |
| | | public void setId(long value) { |
| | | this.id = value; |
| | | } |
| | | |
| | | public String getPeople() { return people; } |
| | | public void setPeople(String value) { this.people = value; } |
| | |
| | | public String getTitle() { return title; } |
| | | public void setTitle(String value) { this.title = value; } |
| | | |
| | | public String getUrl() { return url; } |
| | | public void setUrl(String value) { this.url = value; } |
| | | public List<String> getUrl() { return url; } |
| | | public void setUrl(List<String> value) { this.url = value; } |
| | | |
| | | |
| | | } |