BmProject.java 4.6 KB

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