Guo_shaoshan
2023-04-09 ab9e0ae52d360fbe512bfbd3205206fcf4221be9
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
package com.application.zhangshi_app_android.bean;
 
import java.io.Serializable;
 
/**
 * @author Ljj
 * @date 2023.04.03. 19:54
 * @desc 家族资产
 */
public class FamilyAssetsBean implements Serializable {
    private String address;
    private String createTime;
    private String holder;
    private long id;
    private String location;
    private String remark;
    private String title;
    private String type;
    private String url;
 
    public String getAddress() { return address; }
    public void setAddress(String value) { this.address = value; }
 
    public String getCreateTime() { return createTime; }
    public void setCreateTime(String value) { this.createTime = value; }
 
    public String getHolder() { return holder; }
    public void setHolder(String value) { this.holder = value; }
 
    public long getId() { return id; }
    public void setId(long value) { this.id = value; }
 
    public String getLocation() { return location; }
    public void setLocation(String value) { this.location = value; }
 
    public String getRemark() { return remark; }
    public void setRemark(String value) { this.remark = value; }
 
    public String getTitle() { return title; }
    public void setTitle(String value) { this.title = value; }
 
    public String getType() { return type; }
    public void setType(String value) { this.type = value; }
 
    public String getUrl() { return url; }
    public void setUrl(String value) { this.url = value; }
}