PatentNewBo.java 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. package com.goafanti.patent.bo;
  2. import java.math.BigDecimal;
  3. import java.util.List;
  4. import com.goafanti.common.model.PatentNew;
  5. import com.goafanti.common.utils.excel.Excel;
  6. public class PatentNewBo extends PatentNew{
  7. /**
  8. *
  9. */
  10. private static final long serialVersionUID = 1L;
  11. @Excel(name = "专利编号")
  12. private String patentNo;
  13. @Excel(name = "专利名称")
  14. private String name;
  15. @Excel(name = "类型", readConverterExp="0=发明专利,1=实用新型,2=外观设计")
  16. private Integer type;
  17. @Excel(name = "申请日期")
  18. private String applyDates;
  19. @Excel(name = "权利人")
  20. private String holders;
  21. @Excel(name = "授权日期")
  22. private String authorizationDates;
  23. @Excel(name = "发明人")
  24. private String inventor;
  25. @Excel(name = "年费状态",readConverterExp = "0=无信息,1=代缴费")
  26. private Integer annualFeeStatus;
  27. @Excel(name = "营销员提醒状态",readConverterExp = "0=未提醒,1=已提醒")
  28. private Integer salesmanRemind;
  29. @Excel(name = "email")
  30. private String email;
  31. @Excel(name = "年费")
  32. private BigDecimal patentAmount;
  33. @Excel(name = "滞纳金")
  34. private BigDecimal delayingAmount;
  35. @Excel(name = "恢复金")
  36. private BigDecimal recoveryAmount;
  37. @Excel(name = "客户名称")
  38. private String userName;
  39. @Excel(name = "项目名称")
  40. private String projectName;
  41. @Excel(name = "项目编号")
  42. private Integer tid;
  43. @Excel(name = "费减",readConverterExp = "0=无费减,1=有费减")
  44. private Integer costReduction;
  45. @Excel(name = "营销员")
  46. private String salesmanName;
  47. @Excel(name = "咨询师")
  48. private String techName;
  49. @Excel(name = "派单部门")
  50. private String depName;
  51. @Excel(name = "录入人")
  52. private String inputName;
  53. @Excel(name = "录入时间")
  54. private String createTimes;
  55. @Excel(name = "跟进人")
  56. private String aname;
  57. private List<String> inputDep;
  58. private List<String> followDep;
  59. private String updateTimes;
  60. private String startDates;
  61. private String endDates;
  62. private String departmentId;
  63. private String createStarts;
  64. private String createEnds;
  65. private Integer isFollow;
  66. public List<String> getInputDep() {
  67. return inputDep;
  68. }
  69. public void setInputDep(List<String> inputDep) {
  70. this.inputDep = inputDep;
  71. }
  72. public List<String> getFollowDep() {
  73. return followDep;
  74. }
  75. public void setFollowDep(List<String> followDep) {
  76. this.followDep = followDep;
  77. }
  78. public Integer getCostReduction() {
  79. return costReduction;
  80. }
  81. public void setCostReduction(Integer costReduction) {
  82. this.costReduction = costReduction;
  83. }
  84. public BigDecimal getPatentAmount() {
  85. return patentAmount;
  86. }
  87. public void setPatentAmount(BigDecimal patentAmount) {
  88. this.patentAmount = patentAmount;
  89. }
  90. public BigDecimal getDelayingAmount() {
  91. return delayingAmount;
  92. }
  93. public void setDelayingAmount(BigDecimal delayingAmount) {
  94. this.delayingAmount = delayingAmount;
  95. }
  96. public BigDecimal getRecoveryAmount() {
  97. return recoveryAmount;
  98. }
  99. public void setRecoveryAmount(BigDecimal recoveryAmount) {
  100. this.recoveryAmount = recoveryAmount;
  101. }
  102. public String getPatentNo() {
  103. return patentNo;
  104. }
  105. public void setPatentNo(String patentNo) {
  106. this.patentNo = patentNo;
  107. }
  108. public String getName() {
  109. return name;
  110. }
  111. public void setName(String name) {
  112. this.name = name;
  113. }
  114. public Integer getType() {
  115. return type;
  116. }
  117. public void setType(Integer type) {
  118. this.type = type;
  119. }
  120. public String getHolders() {
  121. return holders;
  122. }
  123. public void setHolders(String holders) {
  124. this.holders = holders;
  125. }
  126. public String getInventor() {
  127. return inventor;
  128. }
  129. public void setInventor(String inventor) {
  130. this.inventor = inventor;
  131. }
  132. public Integer getAnnualFeeStatus() {
  133. return annualFeeStatus;
  134. }
  135. public void setAnnualFeeStatus(Integer annualFeeStatus) {
  136. this.annualFeeStatus = annualFeeStatus;
  137. }
  138. public Integer getSalesmanRemind() {
  139. return salesmanRemind;
  140. }
  141. public void setSalesmanRemind(Integer salesmanRemind) {
  142. this.salesmanRemind = salesmanRemind;
  143. }
  144. public String getEmail() {
  145. return email;
  146. }
  147. public void setEmail(String email) {
  148. this.email = email;
  149. }
  150. public String getProjectName() {
  151. return projectName;
  152. }
  153. public void setProjectName(String projectName) {
  154. this.projectName = projectName;
  155. }
  156. public Integer getTid() {
  157. return tid;
  158. }
  159. public void setTid(Integer tid) {
  160. this.tid = tid;
  161. }
  162. public String getInputName() {
  163. return inputName;
  164. }
  165. public void setInputName(String inputName) {
  166. this.inputName = inputName;
  167. }
  168. public String getApplyDates() {
  169. return applyDates;
  170. }
  171. public void setApplyDates(String applyDates) {
  172. this.applyDates = applyDates;
  173. }
  174. public String getAuthorizationDates() {
  175. return authorizationDates;
  176. }
  177. public void setAuthorizationDates(String authorizationDates) {
  178. this.authorizationDates = authorizationDates;
  179. }
  180. public String getAname() {
  181. return aname;
  182. }
  183. public void setAname(String aname) {
  184. this.aname = aname;
  185. }
  186. public String getCreateTimes() {
  187. return createTimes;
  188. }
  189. public void setCreateTimes(String createTimes) {
  190. this.createTimes = createTimes;
  191. }
  192. public String getUpdateTimes() {
  193. return updateTimes;
  194. }
  195. public void setUpdateTimes(String updateTimes) {
  196. this.updateTimes = updateTimes;
  197. }
  198. public String getEndDates() {
  199. return endDates;
  200. }
  201. public void setEndDates(String endDates) {
  202. this.endDates = endDates;
  203. }
  204. public String getDepName() {
  205. return depName;
  206. }
  207. public void setDepName(String depName) {
  208. this.depName = depName;
  209. }
  210. public String getDepartmentId() {
  211. return departmentId;
  212. }
  213. public void setDepartmentId(String departmentId) {
  214. this.departmentId = departmentId;
  215. }
  216. public String getUserName() {
  217. return userName;
  218. }
  219. public void setUserName(String userName) {
  220. this.userName = userName;
  221. }
  222. public String getStartDates() {
  223. return startDates;
  224. }
  225. public void setStartDates(String startDates) {
  226. this.startDates = startDates;
  227. }
  228. public String getCreateStarts() {
  229. return createStarts;
  230. }
  231. public void setCreateStarts(String createStarts) {
  232. this.createStarts = createStarts;
  233. }
  234. public String getCreateEnds() {
  235. return createEnds;
  236. }
  237. public void setCreateEnds(String createEnds) {
  238. this.createEnds = createEnds;
  239. }
  240. public String getSalesmanName() {
  241. return salesmanName;
  242. }
  243. public void setSalesmanName(String salesmanName) {
  244. this.salesmanName = salesmanName;
  245. }
  246. public String getTechName() {
  247. return techName;
  248. }
  249. public void setTechName(String techName) {
  250. this.techName = techName;
  251. }
  252. public Integer getIsFollow() {
  253. return isFollow;
  254. }
  255. public void setIsFollow(Integer isFollow) {
  256. this.isFollow = isFollow;
  257. }
  258. }