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