123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- package com.ruoyi.system.domain.project;
- import java.math.BigDecimal;
- import java.util.ArrayList;
- import java.util.List;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 项目-线索信息对象 bm_project_info
- *
- * @author ruoyi
- * @date 2021-03-04
- */
- public class BmProjectInfo extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** id* */
- private Long id;
- /** 项目id* */
- @Excel(name = "项目id*")
- private Long bmProjectId;
- /** 项目名称* */
- @Excel(name = "项目名称*")
- private String name;
- /** 投资方联系人* */
- @Excel(name = "投资方联系人*")
- private String contactor;
- /** 投资方联系方式* */
- @Excel(name = "投资方联系方式*")
- private String phone;
- /** 预计投资额* */
- @Excel(name = "预计投资额*")
- private BigDecimal needAmt;
- /** 固定资产投资* */
- @Excel(name = "固定资产投资*")
- private BigDecimal fixedAssets;
- /** 产品名称* */
- @Excel(name = "产品名称*")
- private String productName;
- /** 设计产能* */
- @Excel(name = "设计产能*")
- private String productQty;
- /** 预计产值* */
- @Excel(name = "预计产值*")
- private BigDecimal productPrice;
- /** 预计税收* */
- @Excel(name = "预计税收*")
- private BigDecimal productTax;
- /** 预计用工* */
- @Excel(name = "预计用工*")
- private String productEmp;
- /** 项目计划用地 */
- @Excel(name = "项目计划用地")
- private BigDecimal plannedLand;
- /** 独立供地 */
- @Excel(name = "独立供地")
- private BigDecimal independentLand;
- /** 流转土地 */
- @Excel(name = "流转土地")
- private BigDecimal circulationLan;
- /** 计划租赁用房 */
- @Excel(name = "计划租赁用房")
- private BigDecimal needRoom;
- /** 计划租赁厂房 */
- @Excel(name = "计划租赁厂房")
- private BigDecimal needFactoryRoom;
- /** 计划租赁办公生活用房 */
- @Excel(name = "计划租赁办公生活用房")
- private BigDecimal needBusRoom;
- /** 其他需求 */
- @Excel(name = "其他需求")
- private String other;
- /** 拟落户地点* */
- @Excel(name = "拟落户地点*")
- private String address;
- /** 是否签订框架协议* Y/N */
- @Excel(name = "是否签订框架协议* Y/N")
- private String isFrameorder;
- /** 框架协议附件url(框架协议为是,需要上传) */
- @Excel(name = "框架协议附件url(框架协议为是,需要上传)")
- private String attachment;
- /** 备注 */
- @Excel(name = "备注")
- private String description;
- /**
- * 项目引荐列表
- */
- private List<BmProjectReferral> referralList;
- public List<BmProjectReferral> getReferralList() {
- return referralList;
- }
- public void setReferralList(List<BmProjectReferral> referralList) {
- this.referralList = referralList;
- }
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setBmProjectId(Long bmProjectId)
- {
- this.bmProjectId = bmProjectId;
- }
- public Long getBmProjectId()
- {
- return bmProjectId;
- }
- public void setName(String name)
- {
- this.name = name;
- }
- public String getName()
- {
- return name;
- }
- public void setContactor(String contactor)
- {
- this.contactor = contactor;
- }
- public String getContactor()
- {
- return contactor;
- }
- public void setPhone(String phone)
- {
- this.phone = phone;
- }
- public String getPhone()
- {
- return phone;
- }
- public void setNeedAmt(BigDecimal needAmt)
- {
- this.needAmt = needAmt;
- }
- public BigDecimal getNeedAmt()
- {
- return needAmt;
- }
- public void setFixedAssets(BigDecimal fixedAssets)
- {
- this.fixedAssets = fixedAssets;
- }
- public BigDecimal getFixedAssets()
- {
- return fixedAssets;
- }
- public void setProductName(String productName)
- {
- this.productName = productName;
- }
- public String getProductName()
- {
- return productName;
- }
- public void setProductQty(String productQty)
- {
- this.productQty = productQty;
- }
- public String getProductQty()
- {
- return productQty;
- }
- public void setProductPrice(BigDecimal productPrice)
- {
- this.productPrice = productPrice;
- }
- public BigDecimal getProductPrice()
- {
- return productPrice;
- }
- public void setProductTax(BigDecimal productTax)
- {
- this.productTax = productTax;
- }
- public BigDecimal getProductTax()
- {
- return productTax;
- }
- public void setProductEmp(String productEmp)
- {
- this.productEmp = productEmp;
- }
- public String getProductEmp()
- {
- return productEmp;
- }
- public void setPlannedLand(BigDecimal plannedLand)
- {
- this.plannedLand = plannedLand;
- }
- public BigDecimal getPlannedLand()
- {
- return plannedLand;
- }
- public void setIndependentLand(BigDecimal independentLand)
- {
- this.independentLand = independentLand;
- }
- public BigDecimal getIndependentLand()
- {
- return independentLand;
- }
- public void setCirculationLan(BigDecimal circulationLan)
- {
- this.circulationLan = circulationLan;
- }
- public BigDecimal getCirculationLan()
- {
- return circulationLan;
- }
- public void setNeedRoom(BigDecimal needRoom)
- {
- this.needRoom = needRoom;
- }
- public BigDecimal getNeedRoom()
- {
- return needRoom;
- }
- public void setNeedFactoryRoom(BigDecimal needFactoryRoom)
- {
- this.needFactoryRoom = needFactoryRoom;
- }
- public BigDecimal getNeedFactoryRoom()
- {
- return needFactoryRoom;
- }
- public void setNeedBusRoom(BigDecimal needBusRoom)
- {
- this.needBusRoom = needBusRoom;
- }
- public BigDecimal getNeedBusRoom()
- {
- return needBusRoom;
- }
- public void setOther(String other)
- {
- this.other = other;
- }
- public String getOther()
- {
- return other;
- }
- public void setAddress(String address)
- {
- this.address = address;
- }
- public String getAddress()
- {
- return address;
- }
- public void setIsFrameorder(String isFrameorder)
- {
- this.isFrameorder = isFrameorder;
- }
- public String getIsFrameorder()
- {
- return isFrameorder;
- }
- public void setAttachment(String attachment)
- {
- this.attachment = attachment;
- }
- public String getAttachment()
- {
- return attachment;
- }
- public void setDescription(String description)
- {
- this.description = description;
- }
- public String getDescription()
- {
- return description;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("bmProjectId", getBmProjectId())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("name", getName())
- .append("isDel", getIsDel())
- .append("contactor", getContactor())
- .append("phone", getPhone())
- .append("needAmt", getNeedAmt())
- .append("fixedAssets", getFixedAssets())
- .append("productName", getProductName())
- .append("productQty", getProductQty())
- .append("productPrice", getProductPrice())
- .append("productTax", getProductTax())
- .append("productEmp", getProductEmp())
- .append("plannedLand", getPlannedLand())
- .append("independentLand", getIndependentLand())
- .append("circulationLan", getCirculationLan())
- .append("needRoom", getNeedRoom())
- .append("needFactoryRoom", getNeedFactoryRoom())
- .append("needBusRoom", getNeedBusRoom())
- .append("other", getOther())
- .append("address", getAddress())
- .append("isFrameorder", getIsFrameorder())
- .append("attachment", getAttachment())
- .append("description", getDescription())
- .toString();
- }
- }
|