123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742 |
- package com.ruoyi.system.domain.project;
- import java.math.BigDecimal;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- 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_orderinfo
- *
- * @author ruoyi
- * @date 2021-03-05
- */
- public class BmProjectOrderinfo extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** id* */
- private Long id;
- /** 项目id* */
- @Excel(name = "项目id*")
- private Long bmProjectId;
- /** 签约日期* */
- @Excel(name = "签约日期*")
- @JsonFormat(pattern = "yyyy-MM-dd")
- private Date orderDate;
- /** 投资方式* */
- @Excel(name = "投资方式*")
- private String investmentType;
- /** 是否外资* */
- @Excel(name = "是否外资*")
- private String isOutInvestment;
- /** 总投资额度* */
- @Excel(name = "总投资额度*")
- private BigDecimal totInvestment;
- /** 固定资产投资额度* */
- @Excel(name = "固定资产投资额度*")
- private BigDecimal fixedAssets;
- /** 境外投资 */
- @Excel(name = "境外投资")
- private BigDecimal overseasInvestment;
- /** 境内省外投资 */
- @Excel(name = "境内省外投资")
- private BigDecimal jnswInvestm;
- /** 省内市外投资 */
- @Excel(name = "省内市外投资")
- private BigDecimal snswInvestm;
- /** 市内县外投资 */
- @Excel(name = "市内县外投资")
- private BigDecimal snxwInvestm;
- /** 县内投资 */
- @Excel(name = "县内投资")
- private BigDecimal xnInvestm;
- /** 是否独立供地* */
- @Excel(name = "是否独立供地*")
- private String isIndependentLan;
- /** 供地面积 */
- @Excel(name = "供地面积")
- private BigDecimal landArea;
- /** 供地位置 */
- @Excel(name = "供地位置")
- private String landAddress;
- /** 土地证url */
- @Excel(name = "土地证url")
- private String landPhoto;
- /** 流转土地面积 */
- @Excel(name = "流转土地面积")
- private BigDecimal circulationLand;
- /** 流转土地位置 */
- @Excel(name = "流转土地位置")
- private String circulationAddres;
- /** 土地流转合同 */
- @Excel(name = "土地流转合同")
- private String circulationDoc;
- /** 产权证 */
- @Excel(name = "产权证")
- private String circulationPhoto;
- /** 租赁厂房面积 */
- @Excel(name = "租赁厂房面积")
- private BigDecimal leasePlantArea;
- /** 租赁厂房位置 */
- @Excel(name = "租赁厂房位置")
- private String leasePlantAddress;
- /** 租赁合同 */
- @Excel(name = "租赁合同")
- private String leasePlantDoc;
- /** 租赁产权证 */
- @Excel(name = "租赁产权证")
- private String leasePlantPhoto;
- /** 合同约定产值* */
- @Excel(name = "合同约定产值*")
- private BigDecimal agreementTot;
- /** 合同约定税收* */
- @Excel(name = "合同约定税收*")
- private BigDecimal agreementTax;
- /** 合同约定开工时间* */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "合同约定开工时间*", width = 30, dateFormat = "yyyy-MM-dd")
- private Date agreementStartdate;
- /** 合同约定竣工时间* */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "合同约定竣工时间*", width = 30, dateFormat = "yyyy-MM-dd")
- private Date agreementEnddate;
- /** 合同签约对方* */
- @Excel(name = "合同签约对方*")
- private String agreementPartner;
- /** 对方合同签约人* */
- @Excel(name = "对方合同签约人*")
- private String partner;
- /** 合同签约我方* */
- @Excel(name = "合同签约我方*")
- private String agreementUs;
- /** 我方合同签约人* */
- @Excel(name = "我方合同签约人*")
- private String signUs;
- /** 第三方 */
- @Excel(name = "第三方")
- private String agreementThird;
- /** 第三方签约人 */
- @Excel(name = "第三方签约人")
- private String third;
- /** 合同url* */
- @Excel(name = "合同url*")
- private String agreementUrl;
- /** 在潜注册公司名称* */
- @Excel(name = "在潜注册公司名称*")
- private String name;
- /** 法定代表人* */
- @Excel(name = "法定代表人*")
- private String legalRep;
- /** 注册资本金* */
- @Excel(name = "注册资本金*")
- private BigDecimal totMoney;
- /** 注册地址* */
- @Excel(name = "注册地址*")
- private String address;
- /** 统一社会信用代码* */
- @Excel(name = "统一社会信用代码*")
- private String code;
- /** 营业执照图片url* */
- @Excel(name = "营业执照图片url*")
- private String bussinessUrl;
- /** 备案单位* */
- @Excel(name = "备案单位*")
- private String recordName;
- /** 备案文号* */
- @Excel(name = "备案文号*")
- private String recordCode;
- /** 备案总投资额* */
- @Excel(name = "备案总投资额*")
- private BigDecimal recordTot;
- /** 备案建设周期* */
- @Excel(name = "备案建设周期*")
- private String recordTime;
- /** 备案表url* */
- @Excel(name = "备案表url*")
- private String recordUrl;
- /** 企业包服务-联系领导* */
- @Excel(name = "企业包服务-联系领导*")
- private String contactLeader;
- /** 联系方式* */
- @Excel(name = "联系方式*")
- private String contactPhone;
- /** 责任单位* */
- @Excel(name = "责任单位*")
- private String contactCompany;
- /** 责任人* */
- @Excel(name = "责任人*")
- private String contactPerson;
- /** 联系方式* */
- @Excel(name = "联系方式*")
- private String contactPersonPhone;
- 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 Date getOrderDate() {
- return orderDate;
- }
- public void setOrderDate(Date orderDate) {
- this.orderDate = orderDate;
- }
- public void setInvestmentType(String investmentType)
- {
- this.investmentType = investmentType;
- }
- public String getInvestmentType()
- {
- return investmentType;
- }
- public void setIsOutInvestment(String isOutInvestment)
- {
- this.isOutInvestment = isOutInvestment;
- }
- public String getIsOutInvestment()
- {
- return isOutInvestment;
- }
- public void setTotInvestment(BigDecimal totInvestment)
- {
- this.totInvestment = totInvestment;
- }
- public BigDecimal getTotInvestment()
- {
- return totInvestment;
- }
- public void setFixedAssets(BigDecimal fixedAssets)
- {
- this.fixedAssets = fixedAssets;
- }
- public BigDecimal getFixedAssets()
- {
- return fixedAssets;
- }
- public void setOverseasInvestment(BigDecimal overseasInvestment)
- {
- this.overseasInvestment = overseasInvestment;
- }
- public BigDecimal getOverseasInvestment()
- {
- return overseasInvestment;
- }
- public void setJnswInvestm(BigDecimal jnswInvestm)
- {
- this.jnswInvestm = jnswInvestm;
- }
- public BigDecimal getJnswInvestm()
- {
- return jnswInvestm;
- }
- public void setSnswInvestm(BigDecimal snswInvestm)
- {
- this.snswInvestm = snswInvestm;
- }
- public BigDecimal getSnswInvestm()
- {
- return snswInvestm;
- }
- public void setSnxwInvestm(BigDecimal snxwInvestm)
- {
- this.snxwInvestm = snxwInvestm;
- }
- public BigDecimal getSnxwInvestm()
- {
- return snxwInvestm;
- }
- public void setXnInvestm(BigDecimal xnInvestm)
- {
- this.xnInvestm = xnInvestm;
- }
- public BigDecimal getXnInvestm()
- {
- return xnInvestm;
- }
- public void setIsIndependentLan(String isIndependentLan)
- {
- this.isIndependentLan = isIndependentLan;
- }
- public String getIsIndependentLan()
- {
- return isIndependentLan;
- }
- public void setLandArea(BigDecimal landArea)
- {
- this.landArea = landArea;
- }
- public BigDecimal getLandArea()
- {
- return landArea;
- }
- public void setLandAddress(String landAddress)
- {
- this.landAddress = landAddress;
- }
- public String getLandAddress()
- {
- return landAddress;
- }
- public void setLandPhoto(String landPhoto)
- {
- this.landPhoto = landPhoto;
- }
- public String getLandPhoto()
- {
- return landPhoto;
- }
- public void setCirculationLand(BigDecimal circulationLand)
- {
- this.circulationLand = circulationLand;
- }
- public BigDecimal getCirculationLand()
- {
- return circulationLand;
- }
- public void setCirculationAddres(String circulationAddres)
- {
- this.circulationAddres = circulationAddres;
- }
- public String getCirculationAddres()
- {
- return circulationAddres;
- }
- public void setCirculationDoc(String circulationDoc)
- {
- this.circulationDoc = circulationDoc;
- }
- public String getCirculationDoc()
- {
- return circulationDoc;
- }
- public void setCirculationPhoto(String circulationPhoto)
- {
- this.circulationPhoto = circulationPhoto;
- }
- public String getCirculationPhoto()
- {
- return circulationPhoto;
- }
- public void setLeasePlantArea(BigDecimal leasePlantArea)
- {
- this.leasePlantArea = leasePlantArea;
- }
- public BigDecimal getLeasePlantArea()
- {
- return leasePlantArea;
- }
- public void setLeasePlantAddress(String leasePlantAddress)
- {
- this.leasePlantAddress = leasePlantAddress;
- }
- public String getLeasePlantAddress()
- {
- return leasePlantAddress;
- }
- public void setLeasePlantDoc(String leasePlantDoc)
- {
- this.leasePlantDoc = leasePlantDoc;
- }
- public String getLeasePlantDoc()
- {
- return leasePlantDoc;
- }
- public void setLeasePlantPhoto(String leasePlantPhoto)
- {
- this.leasePlantPhoto = leasePlantPhoto;
- }
- public String getLeasePlantPhoto()
- {
- return leasePlantPhoto;
- }
- public void setAgreementTot(BigDecimal agreementTot)
- {
- this.agreementTot = agreementTot;
- }
- public BigDecimal getAgreementTot()
- {
- return agreementTot;
- }
- public void setAgreementTax(BigDecimal agreementTax)
- {
- this.agreementTax = agreementTax;
- }
- public BigDecimal getAgreementTax()
- {
- return agreementTax;
- }
- public void setAgreementStartdate(Date agreementStartdate)
- {
- this.agreementStartdate = agreementStartdate;
- }
- public Date getAgreementStartdate()
- {
- return agreementStartdate;
- }
- public void setAgreementEnddate(Date agreementEnddate)
- {
- this.agreementEnddate = agreementEnddate;
- }
- public Date getAgreementEnddate()
- {
- return agreementEnddate;
- }
- public void setAgreementPartner(String agreementPartner)
- {
- this.agreementPartner = agreementPartner;
- }
- public String getAgreementPartner()
- {
- return agreementPartner;
- }
- public void setPartner(String partner)
- {
- this.partner = partner;
- }
- public String getPartner()
- {
- return partner;
- }
- public void setAgreementUs(String agreementUs)
- {
- this.agreementUs = agreementUs;
- }
- public String getAgreementUs()
- {
- return agreementUs;
- }
- public void setSignUs(String signUs)
- {
- this.signUs = signUs;
- }
- public String getSignUs()
- {
- return signUs;
- }
- public void setAgreementThird(String agreementThird)
- {
- this.agreementThird = agreementThird;
- }
- public String getAgreementThird()
- {
- return agreementThird;
- }
- public void setThird(String third)
- {
- this.third = third;
- }
- public String getThird()
- {
- return third;
- }
- public void setAgreementUrl(String agreementUrl)
- {
- this.agreementUrl = agreementUrl;
- }
- public String getAgreementUrl()
- {
- return agreementUrl;
- }
- public void setName(String name)
- {
- this.name = name;
- }
- public String getName()
- {
- return name;
- }
- public void setLegalRep(String legalRep)
- {
- this.legalRep = legalRep;
- }
- public String getLegalRep()
- {
- return legalRep;
- }
- public void setTotMoney(BigDecimal totMoney)
- {
- this.totMoney = totMoney;
- }
- public BigDecimal getTotMoney()
- {
- return totMoney;
- }
- public void setAddress(String address)
- {
- this.address = address;
- }
- public String getAddress()
- {
- return address;
- }
- public void setCode(String code)
- {
- this.code = code;
- }
- public String getCode()
- {
- return code;
- }
- public void setBussinessUrl(String bussinessUrl)
- {
- this.bussinessUrl = bussinessUrl;
- }
- public String getBussinessUrl()
- {
- return bussinessUrl;
- }
- public void setRecordName(String recordName)
- {
- this.recordName = recordName;
- }
- public String getRecordName()
- {
- return recordName;
- }
- public void setRecordCode(String recordCode)
- {
- this.recordCode = recordCode;
- }
- public String getRecordCode()
- {
- return recordCode;
- }
- public void setRecordTot(BigDecimal recordTot)
- {
- this.recordTot = recordTot;
- }
- public BigDecimal getRecordTot()
- {
- return recordTot;
- }
- public void setRecordTime(String recordTime)
- {
- this.recordTime = recordTime;
- }
- public String getRecordTime()
- {
- return recordTime;
- }
- public void setRecordUrl(String recordUrl)
- {
- this.recordUrl = recordUrl;
- }
- public String getRecordUrl()
- {
- return recordUrl;
- }
- public void setContactLeader(String contactLeader)
- {
- this.contactLeader = contactLeader;
- }
- public String getContactLeader()
- {
- return contactLeader;
- }
- public void setContactPhone(String contactPhone)
- {
- this.contactPhone = contactPhone;
- }
- public String getContactPhone()
- {
- return contactPhone;
- }
- public void setContactCompany(String contactCompany)
- {
- this.contactCompany = contactCompany;
- }
- public String getContactCompany()
- {
- return contactCompany;
- }
- public String getContactPerson() {
- return contactPerson;
- }
- public void setContactPerson(String contactPerson) {
- this.contactPerson = contactPerson;
- }
- public String getContactPersonPhone() {
- return contactPersonPhone;
- }
- public void setContactPersonPhone(String contactPersonPhone) {
- this.contactPersonPhone = contactPersonPhone;
- }
- @Override
- public String toString() {
- return "BmProjectOrderinfo{" +
- "id=" + id +
- ", bmProjectId=" + bmProjectId +
- ", orderDate=" + orderDate +
- ", investmentType='" + investmentType + '\'' +
- ", isOutInvestment='" + isOutInvestment + '\'' +
- ", totInvestment=" + totInvestment +
- ", fixedAssets=" + fixedAssets +
- ", overseasInvestment=" + overseasInvestment +
- ", jnswInvestm=" + jnswInvestm +
- ", snswInvestm=" + snswInvestm +
- ", snxwInvestm=" + snxwInvestm +
- ", xnInvestm=" + xnInvestm +
- ", isIndependentLan='" + isIndependentLan + '\'' +
- ", landArea=" + landArea +
- ", landAddress='" + landAddress + '\'' +
- ", landPhoto='" + landPhoto + '\'' +
- ", circulationLand=" + circulationLand +
- ", circulationAddres='" + circulationAddres + '\'' +
- ", circulationDoc='" + circulationDoc + '\'' +
- ", circulationPhoto='" + circulationPhoto + '\'' +
- ", leasePlantArea=" + leasePlantArea +
- ", leasePlantAddress='" + leasePlantAddress + '\'' +
- ", leasePlantDoc='" + leasePlantDoc + '\'' +
- ", leasePlantPhoto='" + leasePlantPhoto + '\'' +
- ", agreementTot=" + agreementTot +
- ", agreementTax=" + agreementTax +
- ", agreementStartdate=" + agreementStartdate +
- ", agreementEnddate=" + agreementEnddate +
- ", agreementPartner='" + agreementPartner + '\'' +
- ", partner='" + partner + '\'' +
- ", agreementUs='" + agreementUs + '\'' +
- ", signUs='" + signUs + '\'' +
- ", agreementThird='" + agreementThird + '\'' +
- ", third='" + third + '\'' +
- ", agreementUrl='" + agreementUrl + '\'' +
- ", name='" + name + '\'' +
- ", legalRep='" + legalRep + '\'' +
- ", totMoney=" + totMoney +
- ", address='" + address + '\'' +
- ", code='" + code + '\'' +
- ", bussinessUrl='" + bussinessUrl + '\'' +
- ", recordName='" + recordName + '\'' +
- ", recordCode='" + recordCode + '\'' +
- ", recordTot=" + recordTot +
- ", recordTime='" + recordTime + '\'' +
- ", recordUrl='" + recordUrl + '\'' +
- ", contactLeader='" + contactLeader + '\'' +
- ", contactPhone='" + contactPhone + '\'' +
- ", contactCompany='" + contactCompany + '\'' +
- ", contactPerson='" + contactPerson + '\'' +
- ", contactPersonPhone='" + contactPersonPhone + '\'' +
- '}';
- }
- }
|