package com.application.zhangshi_app_android.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* @author Ljj
|
* @date 2023.04.21. 19:11
|
* @desc 个人财产 Bean
|
*/
|
public class PropertyBean implements Serializable {
|
|
private String type;
|
private String name;
|
private String price;//价值
|
private String createTime;//时间
|
private String term;//期限
|
private String status;//变更或注销
|
private String propertyRight;//产权
|
private String location;//位置
|
private String remark;//备注
|
private String url;//电子文件
|
|
public PropertyBean() {
|
}
|
public PropertyBean(String type, String name, String price, String createTime, String term, String status, String propertyRight, String location, String remark, String url) {
|
this.type = type;
|
this.name = name;
|
this.price = price;
|
this.createTime = createTime;
|
this.term = term;
|
this.status = status;
|
this.propertyRight = propertyRight;
|
this.location = location;
|
this.remark = remark;
|
this.url = url;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPrice() {
|
return price;
|
}
|
|
public void setPrice(String price) {
|
this.price = price;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getTerm() {
|
return term;
|
}
|
|
public void setTerm(String term) {
|
this.term = term;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getPropertyRight() {
|
return propertyRight;
|
}
|
|
public void setPropertyRight(String propertyRight) {
|
this.propertyRight = propertyRight;
|
}
|
|
public String getLocation() {
|
return location;
|
}
|
|
public void setLocation(String location) {
|
this.location = location;
|
}
|
|
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;
|
}
|
}
|