BmProjectReferral.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package com.ruoyi.system.domain.project;
  2. import java.math.BigDecimal;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. import org.apache.commons.lang3.builder.ToStringStyle;
  5. import com.ruoyi.common.annotation.Excel;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. /**
  8. * 项目引荐对象 bm_project_referral
  9. *
  10. * @author ruoyi
  11. * @date 2021-03-04
  12. */
  13. public class BmProjectReferral extends BaseEntity
  14. {
  15. private static final long serialVersionUID = 1L;
  16. /** 项目投资方id* */
  17. private Long id;
  18. /** 项目id* */
  19. @Excel(name = "项目id*")
  20. private Long bmProjectId;
  21. /** 联系方式* */
  22. @Excel(name = "联系方式*")
  23. private String phone;
  24. /** 投资分配额* */
  25. @Excel(name = "投资分配额*")
  26. private BigDecimal investmentAllcocation;
  27. /** 引荐方联系人* */
  28. @Excel(name = "引荐方联系人*")
  29. private String referral;
  30. /** 引荐方联系方式* */
  31. @Excel(name = "引荐方联系方式*")
  32. private String referralPhone;
  33. public void setId(Long id)
  34. {
  35. this.id = id;
  36. }
  37. public Long getId()
  38. {
  39. return id;
  40. }
  41. public void setBmProjectId(Long bmProjectId)
  42. {
  43. this.bmProjectId = bmProjectId;
  44. }
  45. public Long getBmProjectId()
  46. {
  47. return bmProjectId;
  48. }
  49. public void setPhone(String phone)
  50. {
  51. this.phone = phone;
  52. }
  53. public String getPhone()
  54. {
  55. return phone;
  56. }
  57. public void setInvestmentAllcocation(BigDecimal investmentAllcocation)
  58. {
  59. this.investmentAllcocation = investmentAllcocation;
  60. }
  61. public BigDecimal getInvestmentAllcocation()
  62. {
  63. return investmentAllcocation;
  64. }
  65. public void setReferral(String referral)
  66. {
  67. this.referral = referral;
  68. }
  69. public String getReferral()
  70. {
  71. return referral;
  72. }
  73. public void setReferralPhone(String referralPhone)
  74. {
  75. this.referralPhone = referralPhone;
  76. }
  77. public String getReferralPhone()
  78. {
  79. return referralPhone;
  80. }
  81. @Override
  82. public String toString() {
  83. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  84. .append("id", getId())
  85. .append("bmProjectId", getBmProjectId())
  86. .append("createBy", getCreateBy())
  87. .append("createTime", getCreateTime())
  88. .append("updateBy", getUpdateBy())
  89. .append("updateTime", getUpdateTime())
  90. .append("isDel", getIsDel())
  91. .append("phone", getPhone())
  92. .append("sysDeptId", getSysDeptId())
  93. .append("investmentAllcocation", getInvestmentAllcocation())
  94. .append("referral", getReferral())
  95. .append("referralPhone", getReferralPhone())
  96. .toString();
  97. }
  98. }