TProjectPoolVo.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. package com.ruoyi.system.domain.vo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import com.ruoyi.invest.domain.*;
  6. import com.ruoyi.tool.domain.TUnifyFile;
  7. import io.swagger.annotations.ApiModelProperty;
  8. import lombok.Data;
  9. import org.apache.commons.lang3.builder.ToStringBuilder;
  10. import org.apache.commons.lang3.builder.ToStringStyle;
  11. import java.util.Date;
  12. import java.util.List;
  13. /**
  14. * 项目池对象 t_project_pool
  15. *
  16. * @author ruoyi
  17. * @date 2024-02-21
  18. */
  19. @Data
  20. public class TProjectPoolVo extends BaseEntity
  21. {
  22. private static final long serialVersionUID = 1L;
  23. /** 主键id */
  24. @ApiModelProperty("主键id")
  25. private String id;
  26. private String procInstId;
  27. /** 项目名称 */
  28. @Excel(name = "项目名称")
  29. private String projectName;
  30. /** 所属组别 */
  31. @Excel(name = "所属组别")
  32. private String projectGroup;
  33. /** 录入日期 */
  34. private Date recordDate;
  35. /** 项目编号 */
  36. @Excel(name = "项目编号")
  37. private String projectCode;
  38. /** 渠道 */
  39. @Excel(name = "渠道")
  40. private String channel;
  41. /** 初次接触日期 */
  42. @JsonFormat(pattern = "yyyy-MM-dd")
  43. @Excel(name = "初次接触日期", width = 30, dateFormat = "yyyy-MM-dd")
  44. private Date contactDate;
  45. /** 立项通过日期 */
  46. @JsonFormat(pattern = "yyyy-MM-dd")
  47. @Excel(name = "立项通过日期", width = 30, dateFormat = "yyyy-MM-dd")
  48. private Date projectDate;
  49. /** 投决通过日期 */
  50. @JsonFormat(pattern = "yyyy-MM-dd")
  51. @Excel(name = "投决通过日期", width = 30, dateFormat = "yyyy-MM-dd")
  52. private Date decisionDate;
  53. /** 项目所属行业 */
  54. @Excel(name = "项目所属行业")
  55. private String industry;
  56. /** 项目所属公司 */
  57. @Excel(name = "项目所属公司")
  58. private String company;
  59. /** 项目情况描述 */
  60. private String description;
  61. /** 项目联系人 */
  62. @Excel(name = "项目联系人")
  63. private String projectContacts;
  64. /** 投资负责人 */
  65. @Excel(name = "投资负责人")
  66. private String investHead;
  67. /** 历次融资 */
  68. @Excel(name = "历次融资")
  69. private String previousFinancing;
  70. /** 项目融资阶段 */
  71. @Excel(name = "项目融资阶段")
  72. private String financingStage;
  73. /** 融资条件 */
  74. private String financingCondition;
  75. /** 预期融资金额(万元) */
  76. @Excel(name = "预期融资金额")
  77. private String financingMoney;
  78. /** 预期融资时间 */
  79. @JsonFormat(pattern = "yyyy-MM-dd")
  80. // @Excel(name = "预期融资时间", width = 30, dateFormat = "yyyy-MM-dd")
  81. private Date financingDate;
  82. /** 投资亮点 */
  83. private String investSparkle;
  84. /** 投前估值(万元) */
  85. @Excel(name = "投前估值")
  86. private String investValuation;
  87. /** 预计投资金额(万元) */
  88. @Excel(name = "预计投资金额")
  89. private String investMoney;
  90. /** 投资类型 */
  91. @Excel(name = "投资类型")
  92. private String investType;
  93. /** 投资策略 */
  94. @Excel(name = "投资策略")
  95. private String investPloy;
  96. /** 投资价值 */
  97. @Excel(name = "投资价值")
  98. private String investWorth;
  99. /** 股权架构 */
  100. private String shareholding;
  101. /** 项目阶段 */
  102. @Excel(name = "项目阶段")
  103. private String projectStage;
  104. /** 项目状态 */
  105. @Excel(name = "项目状态")
  106. private String projectState;
  107. /** 备注 */
  108. private String mark;
  109. /** 状态 */
  110. private String delFlag;
  111. /** 公司信息 */
  112. @ApiModelProperty("公司信息")
  113. private TProjectCompany tProjectCompany;
  114. /** 联系人信息 */
  115. @ApiModelProperty("联系人信息")
  116. private TProjectContacts tProjectContacts;
  117. /** 渠道信息 */
  118. @ApiModelProperty("渠道信息")
  119. private TProjectChannel tProjectChannel;
  120. /** 评审信息 */
  121. @ApiModelProperty("评审信息")
  122. private TProjectReview tProjectReview;
  123. /** 会议信息 */
  124. @ApiModelProperty("会议信息")
  125. private TProjectMeeting tProjectMeeting;
  126. /** 打分记录 */
  127. @ApiModelProperty("打分记录")
  128. private TProjectScoring tProjectScoring;
  129. /** 尽调信息 */
  130. @ApiModelProperty("尽调信息")
  131. private TProjectInvestigate tProjectInvestigate;
  132. /** 尽调人员信息 */
  133. @ApiModelProperty("尽调人员信息")
  134. private TProjectInvestigatePerson tProjectInvestigatePerson;
  135. /**
  136. * 附件信息
  137. */
  138. @ApiModelProperty("附件信息")
  139. private List<TUnifyFile> listFile;
  140. /**
  141. * bp附件信息
  142. */
  143. @ApiModelProperty("bp附件信息")
  144. private List<TUnifyFile> bpFile;
  145. /**
  146. * 其他附件信息
  147. */
  148. @ApiModelProperty("其他附件信息")
  149. private List<TUnifyFile> otherFile;
  150. /**
  151. * 阶段名称
  152. */
  153. @ApiModelProperty("阶段名称")
  154. private String stageName;
  155. /**
  156. * 状态名称
  157. */
  158. @ApiModelProperty("状态名称")
  159. private String stateName;
  160. /**
  161. * 立项申请状态
  162. */
  163. private String approvalFlag;
  164. /**
  165. * 尽调申请状态
  166. */
  167. private String investigateFlag;
  168. /**
  169. * 投决申请状态
  170. */
  171. private String decisionFlag;
  172. /**
  173. * 流程状态
  174. */
  175. private Integer status;
  176. //流程信息
  177. @ApiModelProperty("流程实例ID")
  178. private String procInsId;
  179. @ApiModelProperty("流程ID")
  180. private String procDefId;
  181. //private String processDefName;
  182. @ApiModelProperty("流程部署编号")
  183. private String deployId;
  184. //流程任务信息
  185. @ApiModelProperty("任务编号")
  186. private String taskId;
  187. @ApiModelProperty("任务执行编号")
  188. private String executionId;// 运行id
  189. @ApiModelProperty("任务名称")
  190. private String taskName;
  191. @ApiModelProperty("任务Key")
  192. private String taskDefKey;
  193. private String taskCreateTiem; // 当前节点创建时间
  194. //private String taskUserId; // 当前处理人
  195. //private String status; // 流程状态
  196. @ApiModelProperty("任务执行人Id")
  197. private String assignee; // 该值未空表示 可签收,不未空表示 可处理
  198. @ApiModelProperty("任务执行人名称")
  199. private String assigneeName;
  200. //流程发起人信息
  201. @ApiModelProperty("流程发起人Id")
  202. private String startUserId;
  203. @ApiModelProperty("流程发起人名称")
  204. private String startUserName;
  205. @ApiModelProperty("流程发起人部门名称")
  206. private String startDeptName;
  207. public void setId(String id)
  208. {
  209. this.id = id;
  210. }
  211. public String getId()
  212. {
  213. return id;
  214. }
  215. public void setProjectName(String projectName)
  216. {
  217. this.projectName = projectName;
  218. }
  219. public String getProcInstId() {
  220. return procInstId;
  221. }
  222. public void setProcInstId(String procInstId) {
  223. this.procInstId = procInstId;
  224. }
  225. public String getProjectName()
  226. {
  227. return projectName;
  228. }
  229. public void setProjectGroup(String projectGroup)
  230. {
  231. this.projectGroup = projectGroup;
  232. }
  233. public String getProjectGroup()
  234. {
  235. return projectGroup;
  236. }
  237. public void setRecordDate(Date recordDate)
  238. {
  239. this.recordDate = recordDate;
  240. }
  241. public Date getRecordDate()
  242. {
  243. return recordDate;
  244. }
  245. public void setProjectCode(String projectCode)
  246. {
  247. this.projectCode = projectCode;
  248. }
  249. public String getProjectCode()
  250. {
  251. return projectCode;
  252. }
  253. public void setChannel(String channel)
  254. {
  255. this.channel = channel;
  256. }
  257. public String getChannel()
  258. {
  259. return channel;
  260. }
  261. public void setContactDate(Date contactDate)
  262. {
  263. this.contactDate = contactDate;
  264. }
  265. public Date getContactDate()
  266. {
  267. return contactDate;
  268. }
  269. public void setProjectDate(Date projectDate)
  270. {
  271. this.projectDate = projectDate;
  272. }
  273. public Date getProjectDate()
  274. {
  275. return projectDate;
  276. }
  277. public void setDecisionDate(Date decisionDate)
  278. {
  279. this.decisionDate = decisionDate;
  280. }
  281. public Date getDecisionDate()
  282. {
  283. return decisionDate;
  284. }
  285. public void setIndustry(String industry)
  286. {
  287. this.industry = industry;
  288. }
  289. public String getIndustry()
  290. {
  291. return industry;
  292. }
  293. public void setCompany(String company)
  294. {
  295. this.company = company;
  296. }
  297. public String getCompany()
  298. {
  299. return company;
  300. }
  301. public void setDescription(String description)
  302. {
  303. this.description = description;
  304. }
  305. public String getDescription()
  306. {
  307. return description;
  308. }
  309. public void setProjectContacts(String projectContacts)
  310. {
  311. this.projectContacts = projectContacts;
  312. }
  313. public String getProjectContacts()
  314. {
  315. return projectContacts;
  316. }
  317. public void setInvestHead(String investHead)
  318. {
  319. this.investHead = investHead;
  320. }
  321. public String getInvestHead()
  322. {
  323. return investHead;
  324. }
  325. public void setPreviousFinancing(String previousFinancing)
  326. {
  327. this.previousFinancing = previousFinancing;
  328. }
  329. public String getPreviousFinancing()
  330. {
  331. return previousFinancing;
  332. }
  333. public void setFinancingStage(String financingStage)
  334. {
  335. this.financingStage = financingStage;
  336. }
  337. public String getFinancingStage()
  338. {
  339. return financingStage;
  340. }
  341. public void setFinancingCondition(String financingCondition)
  342. {
  343. this.financingCondition = financingCondition;
  344. }
  345. public String getFinancingCondition()
  346. {
  347. return financingCondition;
  348. }
  349. public void setFinancingMoney(String financingMoney)
  350. {
  351. this.financingMoney = financingMoney;
  352. }
  353. public String getFinancingMoney()
  354. {
  355. return financingMoney;
  356. }
  357. public void setFinancingDate(Date financingDate)
  358. {
  359. this.financingDate = financingDate;
  360. }
  361. public Date getFinancingDate()
  362. {
  363. return financingDate;
  364. }
  365. public void setInvestSparkle(String investSparkle)
  366. {
  367. this.investSparkle = investSparkle;
  368. }
  369. public String getInvestSparkle()
  370. {
  371. return investSparkle;
  372. }
  373. public void setInvestValuation(String investValuation)
  374. {
  375. this.investValuation = investValuation;
  376. }
  377. public String getInvestValuation()
  378. {
  379. return investValuation;
  380. }
  381. public void setInvestMoney(String investMoney)
  382. {
  383. this.investMoney = investMoney;
  384. }
  385. public String getInvestMoney()
  386. {
  387. return investMoney;
  388. }
  389. public void setInvestType(String investType)
  390. {
  391. this.investType = investType;
  392. }
  393. public String getInvestType()
  394. {
  395. return investType;
  396. }
  397. public void setInvestPloy(String investPloy)
  398. {
  399. this.investPloy = investPloy;
  400. }
  401. public String getInvestPloy()
  402. {
  403. return investPloy;
  404. }
  405. public void setInvestWorth(String investWorth)
  406. {
  407. this.investWorth = investWorth;
  408. }
  409. public String getInvestWorth()
  410. {
  411. return investWorth;
  412. }
  413. public void setShareholding(String shareholding)
  414. {
  415. this.shareholding = shareholding;
  416. }
  417. public String getShareholding()
  418. {
  419. return shareholding;
  420. }
  421. public void setProjectStage(String projectStage)
  422. {
  423. this.projectStage = projectStage;
  424. }
  425. public String getProjectStage()
  426. {
  427. return projectStage;
  428. }
  429. public void setProjectState(String projectState)
  430. {
  431. this.projectState = projectState;
  432. }
  433. public String getProjectState()
  434. {
  435. return projectState;
  436. }
  437. public void setMark(String mark)
  438. {
  439. this.mark = mark;
  440. }
  441. public String getMark()
  442. {
  443. return mark;
  444. }
  445. public void setDelFlag(String delFlag)
  446. {
  447. this.delFlag = delFlag;
  448. }
  449. public String getDelFlag()
  450. {
  451. return delFlag;
  452. }
  453. public TProjectCompany gettProjectCompany() {
  454. return tProjectCompany;
  455. }
  456. public void settProjectCompany(TProjectCompany tProjectCompany) {
  457. this.tProjectCompany = tProjectCompany;
  458. }
  459. public TProjectContacts gettProjectContacts() {
  460. return tProjectContacts;
  461. }
  462. public void settProjectContacts(TProjectContacts tProjectContacts) {
  463. this.tProjectContacts = tProjectContacts;
  464. }
  465. public List<TUnifyFile> getListFile() {
  466. return listFile;
  467. }
  468. public void setListFile(List<TUnifyFile> listFile) {
  469. this.listFile = listFile;
  470. }
  471. public String getStageName() {
  472. return stageName;
  473. }
  474. public void setStageName(String stageName) {
  475. this.stageName = stageName;
  476. }
  477. public TProjectChannel gettProjectChannel() {
  478. return tProjectChannel;
  479. }
  480. public void settProjectChannel(TProjectChannel tProjectChannel) {
  481. this.tProjectChannel = tProjectChannel;
  482. }
  483. public String getStateName() {
  484. return stateName;
  485. }
  486. public void setStateName(String stateName) {
  487. this.stateName = stateName;
  488. }
  489. public List<TUnifyFile> getBpFile() {
  490. return bpFile;
  491. }
  492. public void setBpFile(List<TUnifyFile> bpFile) {
  493. this.bpFile = bpFile;
  494. }
  495. public List<TUnifyFile> getOtherFile() {
  496. return otherFile;
  497. }
  498. public void setOtherFile(List<TUnifyFile> otherFile) {
  499. this.otherFile = otherFile;
  500. }
  501. public TProjectReview gettProjectReview() {
  502. return tProjectReview;
  503. }
  504. public void settProjectReview(TProjectReview tProjectReview) {
  505. this.tProjectReview = tProjectReview;
  506. }
  507. public TProjectInvestigate gettProjectInvestigate() {
  508. return tProjectInvestigate;
  509. }
  510. public void settProjectInvestigate(TProjectInvestigate tProjectInvestigate) {
  511. this.tProjectInvestigate = tProjectInvestigate;
  512. }
  513. public String getApprovalFlag() {
  514. return approvalFlag;
  515. }
  516. public void setApprovalFlag(String approvalFlag) {
  517. this.approvalFlag = approvalFlag;
  518. }
  519. public String getInvestigateFlag() {
  520. return investigateFlag;
  521. }
  522. public void setInvestigateFlag(String investigateFlag) {
  523. this.investigateFlag = investigateFlag;
  524. }
  525. public String getDecisionFlag() {
  526. return decisionFlag;
  527. }
  528. public void setDecisionFlag(String decisionFlag) {
  529. this.decisionFlag = decisionFlag;
  530. }
  531. public TProjectInvestigatePerson gettProjectInvestigatePerson() {
  532. return tProjectInvestigatePerson;
  533. }
  534. public void settProjectInvestigatePerson(TProjectInvestigatePerson tProjectInvestigatePerson) {
  535. this.tProjectInvestigatePerson = tProjectInvestigatePerson;
  536. }
  537. public TProjectMeeting gettProjectMeeting() {
  538. return tProjectMeeting;
  539. }
  540. public void settProjectMeeting(TProjectMeeting tProjectMeeting) {
  541. this.tProjectMeeting = tProjectMeeting;
  542. }
  543. public TProjectScoring gettProjectScoring() {
  544. return tProjectScoring;
  545. }
  546. public void settProjectScoring(TProjectScoring tProjectScoring) {
  547. this.tProjectScoring = tProjectScoring;
  548. }
  549. @Override
  550. public String toString() {
  551. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  552. .append("id", getId())
  553. .append("projectName", getProjectName())
  554. .append("projectGroup", getProjectGroup())
  555. .append("recordDate", getRecordDate())
  556. .append("projectCode", getProjectCode())
  557. .append("channel", getChannel())
  558. .append("contactDate", getContactDate())
  559. .append("projectDate", getProjectDate())
  560. .append("decisionDate", getDecisionDate())
  561. .append("industry", getIndustry())
  562. .append("company", getCompany())
  563. .append("description", getDescription())
  564. .append("projectContacts", getProjectContacts())
  565. .append("investHead", getInvestHead())
  566. .append("previousFinancing", getPreviousFinancing())
  567. .append("financingStage", getFinancingStage())
  568. .append("financingCondition", getFinancingCondition())
  569. .append("financingMoney", getFinancingMoney())
  570. .append("financingDate", getFinancingDate())
  571. .append("investSparkle", getInvestSparkle())
  572. .append("investValuation", getInvestValuation())
  573. .append("investMoney", getInvestMoney())
  574. .append("investType", getInvestType())
  575. .append("investPloy", getInvestPloy())
  576. .append("investWorth", getInvestWorth())
  577. .append("shareholding", getShareholding())
  578. .append("projectStage", getProjectStage())
  579. .append("projectState", getProjectState())
  580. .append("mark", getMark())
  581. .append("delFlag", getDelFlag())
  582. .append("createBy", getCreateBy())
  583. .append("createTime", getCreateTime())
  584. .append("updateBy", getUpdateBy())
  585. .append("updateTime", getUpdateTime())
  586. .toString();
  587. }
  588. }