| | |
| | | * @desc 个人财产 Bean |
| | | */ |
| | | public class PropertyBean implements Serializable { |
| | | |
| | | private String type; |
| | | private String name; |
| | | private int id;//id |
| | | private int userId;//用户id |
| | | private String type;//财产类别 |
| | | private String incomeName;//收支名称 |
| | | private String price;//价值 |
| | | private String createTime;//时间 |
| | | private String term;//期限 |
| | | private String status;//变更或注销 |
| | | private String timeLimit;//期限 |
| | | private String isChange;//变更或注销 |
| | | private String propertyRight;//产权 |
| | | private String location;//位置 |
| | | private String createTime;//创建时间 |
| | | private String remark;//备注 |
| | | private String url;//电子文件 |
| | | private int status;//是否注销 1.是 0.否 |
| | | private String happenTime;//发生时间 |
| | | |
| | | 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 int getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(int id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getHappenTime() { |
| | | return happenTime; |
| | | } |
| | | |
| | | public void setHappenTime(String happenTime) { |
| | | this.happenTime = happenTime; |
| | | } |
| | | |
| | | public String getType() { |
| | |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | public String getIncomeName() { |
| | | return incomeName; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | public void setIncomeName(String incomeName) { |
| | | this.incomeName = incomeName; |
| | | } |
| | | |
| | | public String getPrice() { |
| | |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public String getTerm() { |
| | | return term; |
| | | public String getTimeLimit() { |
| | | return timeLimit; |
| | | } |
| | | |
| | | public void setTerm(String term) { |
| | | this.term = term; |
| | | public void setTimeLimit(String timeLimit) { |
| | | this.timeLimit = timeLimit; |
| | | } |
| | | |
| | | public String getStatus() { |
| | | return status; |
| | | public String getIsChange() { |
| | | return isChange; |
| | | } |
| | | |
| | | public void setStatus(String status) { |
| | | this.status = status; |
| | | public void setIsChange(String isChange) { |
| | | this.isChange = isChange; |
| | | } |
| | | |
| | | public String getPropertyRight() { |
| | |
| | | public void setUrl(String url) { |
| | | this.url = url; |
| | | } |
| | | |
| | | public int getUserId() { |
| | | return userId; |
| | | } |
| | | |
| | | public void setUserId(int userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | public String getStatus() { |
| | | return status==1?"是":"否"; |
| | | } |
| | | |
| | | public void setStatus(String status) { |
| | | this.status = status.equals("是")?1:0; |
| | | } |
| | | } |