CopyrightInfoSummary.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. package com.goafanti.copyright.bo;
  2. import java.util.Date;
  3. import org.apache.commons.lang3.time.DateFormatUtils;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import com.fasterxml.jackson.annotation.JsonFormat.Shape;
  6. import com.goafanti.common.constant.AFTConstants;
  7. public class CopyrightInfoSummary {
  8. private String id;
  9. private String uid;
  10. /**
  11. * 省份
  12. */
  13. private String province;
  14. /**
  15. * 单位名称
  16. */
  17. private String unitName;
  18. /**
  19. * 编号
  20. */
  21. private Integer serialNumber;
  22. /**
  23. * 创建时间
  24. */
  25. private Date createTime;
  26. /**
  27. * 受理时间
  28. */
  29. private Date acceptTime;
  30. /**
  31. * 负责人
  32. */
  33. private String principal;
  34. /**
  35. * 联系人
  36. */
  37. private Integer contact;
  38. /**
  39. * 软著名字
  40. */
  41. private String copyrightName;
  42. /**
  43. * 申请状态
  44. */
  45. private Integer status;
  46. /**
  47. * 备注
  48. */
  49. private String comment;
  50. /**
  51. * 派单详情
  52. */
  53. private String workIssue;
  54. /**
  55. * 外包公司
  56. */
  57. private String outsource;
  58. /**
  59. * 加急天数
  60. */
  61. private Integer inUrgent;
  62. /**
  63. * 申请号/专利号
  64. */
  65. private String copyrightNumber;
  66. /**
  67. * 下证日
  68. */
  69. private Date authorizedDate;
  70. private String fisrtContact;
  71. private String secondContact;
  72. private String thirdContact;
  73. private String founder;
  74. public String getFounder() {
  75. return founder;
  76. }
  77. public void setFounder(String founder) {
  78. this.founder = founder;
  79. }
  80. public String getProvince() {
  81. return province;
  82. }
  83. public void setProvince(String province) {
  84. this.province = province;
  85. }
  86. public String getUnitName() {
  87. return unitName;
  88. }
  89. public void setUnitName(String unitName) {
  90. this.unitName = unitName;
  91. }
  92. public Integer getSerialNumber() {
  93. return serialNumber;
  94. }
  95. public void setSerialNumber(Integer serialNumber) {
  96. this.serialNumber = serialNumber;
  97. }
  98. public Date getCreateTime() {
  99. return createTime;
  100. }
  101. public void setCreateTime(Date createTime) {
  102. this.createTime = createTime;
  103. }
  104. public Date getAcceptTime() {
  105. return acceptTime;
  106. }
  107. public void setAcceptTime(Date acceptTime) {
  108. this.acceptTime = acceptTime;
  109. }
  110. public String getPrincipal() {
  111. return principal;
  112. }
  113. public void setPrincipal(String principal) {
  114. this.principal = principal;
  115. }
  116. @JsonFormat(shape = Shape.STRING)
  117. public Integer getContact() {
  118. return contact;
  119. }
  120. public void setContact(Integer contact) {
  121. this.contact = contact;
  122. }
  123. public String getCopyrightName() {
  124. return copyrightName;
  125. }
  126. public void setCopyrightName(String copyrightName) {
  127. this.copyrightName = copyrightName;
  128. }
  129. @JsonFormat(shape = Shape.STRING)
  130. public Integer getStatus() {
  131. return status;
  132. }
  133. public void setStatus(Integer status) {
  134. this.status = status;
  135. }
  136. public String getComment() {
  137. return comment;
  138. }
  139. public void setComment(String comment) {
  140. this.comment = comment;
  141. }
  142. public String getOutsource() {
  143. return outsource;
  144. }
  145. public void setOutsource(String outsource) {
  146. this.outsource = outsource;
  147. }
  148. public Integer getInUrgent() {
  149. return inUrgent;
  150. }
  151. public void setInUrgent(Integer inUrgent) {
  152. this.inUrgent = inUrgent;
  153. }
  154. public Date getAuthorizedDate() {
  155. return authorizedDate;
  156. }
  157. public void setAuthorizedDate(Date authorizedDate) {
  158. this.authorizedDate = authorizedDate;
  159. }
  160. public String getId() {
  161. return id;
  162. }
  163. public void setId(String id) {
  164. this.id = id;
  165. }
  166. public String getFisrtContact() {
  167. return fisrtContact;
  168. }
  169. public void setFisrtContact(String fisrtContact) {
  170. this.fisrtContact = fisrtContact;
  171. }
  172. public String getSecondContact() {
  173. return secondContact;
  174. }
  175. public void setSecondContact(String secondContact) {
  176. this.secondContact = secondContact;
  177. }
  178. public String getThirdContact() {
  179. return thirdContact;
  180. }
  181. public void setThirdContact(String thirdContact) {
  182. this.thirdContact = thirdContact;
  183. }
  184. public String getAcceptTimeFormattedDate() {
  185. if (this.acceptTime == null) {
  186. return null;
  187. } else {
  188. return DateFormatUtils.format(this.acceptTime, AFTConstants.YYYYMMDDHHMMSS);
  189. }
  190. }
  191. public void setAcceptTimeFormattedDate(String acceptTimeFormattedDate) {
  192. }
  193. public String getAuthorizedDateFormattedDate() {
  194. if (this.authorizedDate == null) {
  195. return null;
  196. } else {
  197. return DateFormatUtils.format(this.authorizedDate, AFTConstants.YYYYMMDDHHMMSS);
  198. }
  199. }
  200. public void setAuthorizedDateFormattedDate(String authorizedDateFormattedDate) {
  201. }
  202. public String getCreateTimeFormattedDate() {
  203. if (this.createTime == null) {
  204. return null;
  205. } else {
  206. return DateFormatUtils.format(this.createTime, AFTConstants.YYYYMMDDHHMMSS);
  207. }
  208. }
  209. public void setCreateTimeFormattedDate(String createTimeFormattedDate) {
  210. }
  211. public String getWorkIssue() {
  212. return workIssue;
  213. }
  214. public void setWorkIssue(String workIssue) {
  215. this.workIssue = workIssue;
  216. }
  217. public String getUid() {
  218. return uid;
  219. }
  220. public void setUid(String uid) {
  221. this.uid = uid;
  222. }
  223. public String getCopyrightNumber() {
  224. return copyrightNumber;
  225. }
  226. public void setCopyrightNumber(String copyrightNumber) {
  227. this.copyrightNumber = copyrightNumber;
  228. }
  229. }