BmProject.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. package com.ruoyi.system.domain.project;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import com.ruoyi.common.annotation.Excel;
  8. import com.ruoyi.common.core.domain.BaseEntity;
  9. /**
  10. * 项目(添加线索)对象 bm_project
  11. *
  12. * @author bm
  13. * @date 2021-03-03
  14. */
  15. public class BmProject extends BaseEntity
  16. {
  17. private static final long serialVersionUID = 1L;
  18. /** 项目id* */
  19. private Long id;
  20. /** 项目名称* */
  21. @Excel(name = "项目名称*")
  22. private String name;
  23. /** 产业类别(首位产业、战略新兴) */
  24. @Excel(name = "产业类别(首位产业、战略新兴)")
  25. private String industryCategory;
  26. /** 所属行业(数据字典)* */
  27. @Excel(name = "所属行业(数据字典)*")
  28. private String industry;
  29. /** 是否返乡创业* */
  30. @Excel(name = "是否返乡创业*")
  31. private String isBackbussiness;
  32. /** 项目状态(数据字典)* */
  33. @Excel(name = "项目状态(数据字典)*")
  34. private Long projectStatus;
  35. /** 项目状态(数据字典)中的名称* */
  36. private String dictLabel;
  37. /** 填报单位* */
  38. @Excel(name = "填报单位*")
  39. private Long deptId;
  40. /** 总投资金额 */
  41. @Excel(name = "总投资金额")
  42. private BigDecimal totAmt;
  43. /** 合同约定开工时间 */
  44. @JsonFormat(pattern = "yyyy-MM-dd")
  45. @Excel(name = "合同约定开工时间", width = 30, dateFormat = "yyyy-MM-dd")
  46. private Date orderBeginTime;
  47. /** 合同约定竣工时间 */
  48. @JsonFormat(pattern = "yyyy-MM-dd")
  49. @Excel(name = "合同约定竣工时间", width = 30, dateFormat = "yyyy-MM-dd")
  50. private Date orderEndTime;
  51. /**
  52. * 填报单位
  53. */
  54. @Excel(name = "填报单位")
  55. private String deptName;
  56. public String getDictLabel() {
  57. return dictLabel;
  58. }
  59. public void setDictLabel(String dictLabel) {
  60. this.dictLabel = dictLabel;
  61. }
  62. public void setId(Long id)
  63. {
  64. this.id = id;
  65. }
  66. public Long getId()
  67. {
  68. return id;
  69. }
  70. public void setName(String name)
  71. {
  72. this.name = name;
  73. }
  74. public String getName()
  75. {
  76. return name;
  77. }
  78. public void setIndustryCategory(String industryCategory)
  79. {
  80. this.industryCategory = industryCategory;
  81. }
  82. public String getIndustryCategory()
  83. {
  84. return industryCategory;
  85. }
  86. public void setIndustry(String industry)
  87. {
  88. this.industry = industry;
  89. }
  90. public String getIndustry()
  91. {
  92. return industry;
  93. }
  94. public void setIsBackbussiness(String isBackbussiness)
  95. {
  96. this.isBackbussiness = isBackbussiness;
  97. }
  98. public String getIsBackbussiness()
  99. {
  100. return isBackbussiness;
  101. }
  102. public void setProjectStatus(Long projectStatus)
  103. {
  104. this.projectStatus = projectStatus;
  105. }
  106. public Long getProjectStatus()
  107. {
  108. return projectStatus;
  109. }
  110. public void setDeptId(Long deptId)
  111. {
  112. this.deptId = deptId;
  113. }
  114. public Long getDeptId()
  115. {
  116. return deptId;
  117. }
  118. public void setTotAmt(BigDecimal totAmt)
  119. {
  120. this.totAmt = totAmt;
  121. }
  122. public BigDecimal getTotAmt()
  123. {
  124. return totAmt;
  125. }
  126. public void setOrderBeginTime(Date orderBeginTime)
  127. {
  128. this.orderBeginTime = orderBeginTime;
  129. }
  130. public Date getOrderBeginTime()
  131. {
  132. return orderBeginTime;
  133. }
  134. public void setOrderEndTime(Date orderEndTime)
  135. {
  136. this.orderEndTime = orderEndTime;
  137. }
  138. public Date getOrderEndTime()
  139. {
  140. return orderEndTime;
  141. }
  142. public String getDeptName() {
  143. return deptName;
  144. }
  145. public void setDeptName(String deptName) {
  146. this.deptName = deptName;
  147. }
  148. @Override
  149. public String toString() {
  150. return "BmProject{" +
  151. "id=" + id +
  152. ", name='" + name + '\'' +
  153. ", industryCategory='" + industryCategory + '\'' +
  154. ", industry='" + industry + '\'' +
  155. ", isBackbussiness='" + isBackbussiness + '\'' +
  156. ", projectStatus=" + projectStatus +
  157. ", dictLabel='" + dictLabel + '\'' +
  158. ", deptId=" + deptId +
  159. ", totAmt=" + totAmt +
  160. ", orderBeginTime=" + orderBeginTime +
  161. ", orderEndTime=" + orderEndTime +
  162. ", deptName='" + deptName + '\'' +
  163. '}';
  164. }
  165. }