package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 个人财产表
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-14
|
*/
|
@TableName("z_property")
|
public class ZProperty implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 本人id
|
*/
|
private Integer userId;
|
|
/**
|
* 财产类别
|
*/
|
private Integer type;
|
|
/**
|
* 收支名称
|
*/
|
private String incomeName;
|
|
/**
|
* 金额
|
*/
|
private Double price;
|
|
/**
|
* 期限
|
*/
|
private String timeLimit;
|
|
/**
|
* 变更或注销
|
*/
|
private String isChange;
|
|
/**
|
* 产权
|
*/
|
private String propertyRight;
|
|
/**
|
* 存放位置
|
*/
|
private String location;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getIncomeName() {
|
return incomeName;
|
}
|
|
public void setIncomeName(String incomeName) {
|
this.incomeName = incomeName;
|
}
|
|
public Double getPrice() {
|
return price;
|
}
|
|
public void setPrice(Double price) {
|
this.price = price;
|
}
|
|
public String getTimeLimit() {
|
return timeLimit;
|
}
|
|
public void setTimeLimit(String timeLimit) {
|
this.timeLimit = timeLimit;
|
}
|
|
public String getIsChange() {
|
return isChange;
|
}
|
|
public void setIsChange(String isChange) {
|
this.isChange = isChange;
|
}
|
|
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;
|
}
|
|
@Override
|
public String toString() {
|
return "ZProperty{" +
|
"id=" + id +
|
", userId=" + userId +
|
", type=" + type +
|
", incomeName=" + incomeName +
|
", price=" + price +
|
", timeLimit=" + timeLimit +
|
", isChange=" + isChange +
|
", propertyRight=" + propertyRight +
|
", location=" + location +
|
", remark=" + remark +
|
"}";
|
}
|
}
|