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_idea")
|
public class ZIdea implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 理想标题/百年愿望
|
*/
|
private String title;
|
|
/**
|
* 始于何因
|
*/
|
private String cause;
|
|
/**
|
* 受惠人名字
|
*/
|
private String beneficiary;
|
|
/**
|
* 继承人名字
|
*/
|
private String heir;
|
|
/**
|
* 实现难度
|
*/
|
private String difficulty;
|
|
/**
|
* 是否依旧有效
|
*/
|
private Integer isEffective;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getCause() {
|
return cause;
|
}
|
|
public void setCause(String cause) {
|
this.cause = cause;
|
}
|
|
public String getBeneficiary() {
|
return beneficiary;
|
}
|
|
public void setBeneficiary(String beneficiary) {
|
this.beneficiary = beneficiary;
|
}
|
|
public String getHeir() {
|
return heir;
|
}
|
|
public void setHeir(String heir) {
|
this.heir = heir;
|
}
|
|
public String getDifficulty() {
|
return difficulty;
|
}
|
|
public void setDifficulty(String difficulty) {
|
this.difficulty = difficulty;
|
}
|
|
public Integer getIsEffective() {
|
return isEffective;
|
}
|
|
public void setIsEffective(Integer isEffective) {
|
this.isEffective = isEffective;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
@Override
|
public String toString() {
|
return "ZIdea{" +
|
"id=" + id +
|
", title=" + title +
|
", cause=" + cause +
|
", beneficiary=" + beneficiary +
|
", heir=" + heir +
|
", difficulty=" + difficulty +
|
", isEffective=" + isEffective +
|
", remark=" + remark +
|
"}";
|
}
|
}
|