123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- package com.lqkj.info.entity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.lqkj.common.annotation.Excel;
- import com.lqkj.common.core.model.BaseEntity;
- /**
- * 规划对象对象 plan_info
- *
- * @author lqkj
- * @date 2024-11-13
- */
- public class PlanInfo extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 规划id */
- private Integer planId;
- /** 区域 */
- @Excel(name = "区域")
- private Integer areaId;
- /** 类别 */
- @Excel(name = "类别")
- private Integer typeId;
- /** 名字 */
- @Excel(name = "名字")
- private String planName;
- /** 备注 */
- @Excel(name = "备注")
- private String content;
- /** 颜色 */
- @Excel(name = "颜色")
- private String colour;
- /** 面积 */
- @Excel(name = "面积")
- private Integer acreage;
- /** 成本 */
- private String cost;
- /** 收益 */
- private String earnings;
- /** 总占比 */
- private String totalPct;
- /** 风险*/
- private String risk;
- public void setPlanId(Integer planId)
- {
- this.planId = planId;
- }
- public Integer getPlanId()
- {
- return planId;
- }
- public void setAreaId(Integer areaId)
- {
- this.areaId = areaId;
- }
- public Integer getAreaId()
- {
- return areaId;
- }
- public void setTypeId(Integer typeId)
- {
- this.typeId = typeId;
- }
- public Integer getTypeId()
- {
- return typeId;
- }
- public void setPlanName(String planName)
- {
- this.planName = planName;
- }
- public String getPlanName()
- {
- return planName;
- }
- public void setContent(String content)
- {
- this.content = content;
- }
- public String getContent()
- {
- return content;
- }
- public void setColour(String colour)
- {
- this.colour = colour;
- }
- public String getColour()
- {
- return colour;
- }
- public void setAcreage(Integer acreage)
- {
- this.acreage = acreage;
- }
- public Integer getAcreage()
- {
- return acreage;
- }
- public String getCost() {
- return cost;
- }
- public void setCost(String cost) {
- this.cost = cost;
- }
- public String getEarnings() {
- return earnings;
- }
- public void setEarnings(String earnings) {
- this.earnings = earnings;
- }
- public String getTotalPct() {
- return totalPct;
- }
- public void setTotalPct(String totalPct) {
- this.totalPct = totalPct;
- }
- public String getRisk() {
- return risk;
- }
- public void setRisk(String risk) {
- this.risk = risk;
- }
- @Override
- public String toString() {
- return "PlanInfo{" +
- "planId=" + planId +
- ", areaId=" + areaId +
- ", typeId=" + typeId +
- ", planName='" + planName + '\'' +
- ", content='" + content + '\'' +
- ", colour='" + colour + '\'' +
- ", acreage=" + acreage +
- ", cost='" + cost + '\'' +
- ", earnings='" + earnings + '\'' +
- ", totalPct='" + totalPct + '\'' +
- ", risk='" + risk + '\'' +
- '}';
- }
- }
|