PatentColumnDTO.java 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. package cn.cslg.pas.common.dto;
  2. import cn.cslg.pas.domain.es.*;
  3. import lombok.AllArgsConstructor;
  4. import lombok.Data;
  5. import lombok.NoArgsConstructor;
  6. import java.util.Date;
  7. import java.util.List;
  8. @Data
  9. @NoArgsConstructor
  10. @AllArgsConstructor
  11. public class PatentColumnDTO {
  12. /**
  13. * 专利号
  14. */
  15. private String patentNo;
  16. /**
  17. * 标题
  18. */
  19. private String title;
  20. private String titleOut;
  21. /**
  22. * 公开说明书文本
  23. */
  24. private List<Text> publicFullText;
  25. /**
  26. * 授权说明书文本
  27. */
  28. private List<Text> grantFullText;
  29. /**
  30. * 摘要
  31. */
  32. private List<Text> abstractStr;
  33. /**
  34. * 申请人地址
  35. */
  36. private PersonAddress applicantAddr;
  37. /**
  38. * 权利人地址
  39. */
  40. private PersonAddress rightHolderAddr;
  41. /**
  42. * 审查员
  43. */
  44. private String examiner;
  45. /**
  46. * 助理审查员
  47. */
  48. private String aidExaminer;
  49. /**
  50. * 实审日
  51. */
  52. private Integer examinationDate;
  53. /**
  54. * 公开号
  55. */
  56. private String publicNo;
  57. /**
  58. * 公开日
  59. */
  60. private Date publicDate;
  61. /**
  62. * 申请号
  63. */
  64. private String appNo;
  65. /**
  66. * 申请日
  67. */
  68. private Date appDate;
  69. /**
  70. * 授权号
  71. */
  72. private String grantNo;
  73. /**
  74. * 授权日
  75. */
  76. private Date grantDate;
  77. /**
  78. * 优先权
  79. */
  80. private List<Priorities> priorities;
  81. /**
  82. * 申请国家
  83. */
  84. private String appCountry;
  85. /**
  86. * IPC分类号(主)
  87. */
  88. private PatentClassify mipc;
  89. /**
  90. * ipc集合
  91. */
  92. private List<PatentClassify> ipc;
  93. /**
  94. * CPC分类号(主)
  95. */
  96. private PatentClassify mcpc;
  97. /**
  98. * cpc集合
  99. */
  100. private List<PatentClassify> cpc;
  101. /**
  102. * UPC分类号(主)
  103. */
  104. private PatentClassify mupc;
  105. /**
  106. * UPC集合
  107. */
  108. private List<PatentClassify> upc;
  109. /**
  110. * UPC分类号(主)
  111. */
  112. private PatentClassify mloc;
  113. /**
  114. * UPC集合
  115. */
  116. private List<PatentClassify> loc;
  117. /**
  118. * 专利状态
  119. */
  120. private String simpleStatus;
  121. /**
  122. * 类型
  123. */
  124. private String patentType;
  125. /**
  126. * 权利要求
  127. */
  128. private List<Text> claim;
  129. /**
  130. * pct申请号
  131. */
  132. private Integer pctAppDate;
  133. /**
  134. * pct申请日
  135. */
  136. private String pctAppNo;
  137. /**
  138. * pct进入日期
  139. */
  140. private Integer pctEnterDate;
  141. /**
  142. * pct公开日
  143. */
  144. private Integer pctPubDate;
  145. /**
  146. * pct公开号
  147. */
  148. private String pctPubNo;
  149. /**
  150. * wo指定国
  151. */
  152. private String wo;
  153. /**
  154. * ep申请号
  155. */
  156. private String epNo;
  157. /**
  158. * ep申请日
  159. */
  160. private String epDate;
  161. /**
  162. * EP指定国状态
  163. */
  164. private String epCountry;
  165. /**
  166. * 申请人
  167. */
  168. private List<PatentPerson> applicant;
  169. /**
  170. * 标准申请人
  171. */
  172. private List<PatentPerson> standerApplicant;
  173. /**
  174. * 合并申请人
  175. */
  176. private List<PatentMergePerson> mergeApplicant;
  177. /**
  178. * 申请人数量
  179. */
  180. private Integer applicantsNum;
  181. /**
  182. * 权利人
  183. */
  184. private List<PatentPerson> rightHolder;
  185. /**
  186. * 标准权利人
  187. */
  188. private List<PatentPerson> standerRightHolder;
  189. /**
  190. * 合并权利人
  191. */
  192. private List<PatentMergePerson> mergeRightHolder;
  193. /**
  194. * 权利人数量
  195. */
  196. private Integer rightHolderNum;
  197. /**
  198. * 发明人
  199. */
  200. private List<PatentPerson> inventor;
  201. /**
  202. * 合并发明人
  203. */
  204. private List<PatentMergePerson> mergeInventor;
  205. /**
  206. * 发明人数量
  207. */
  208. private Integer inventor_num;
  209. /**
  210. * 代理机构
  211. */
  212. private String agency;
  213. /**
  214. * 代理机构编号
  215. */
  216. private String agencyNo;
  217. /**
  218. * 代理人
  219. */
  220. private List<String> agent;
  221. /**
  222. * 引用专利数量
  223. */
  224. private Integer quotePatentNoNum;
  225. /**
  226. * 被引用专利数量
  227. */
  228. private Integer quotedPatentNoNum;
  229. /**
  230. * 自定义栏位
  231. */
  232. List<ESCustomField> ESCustomField;
  233. /**
  234. * 扩展同族数量
  235. */
  236. private Integer patsnapFamilyNum;
  237. /**
  238. * 扩展同族id
  239. */
  240. private String patsnapFamilyId;
  241. /**
  242. * INPADOC同族数量
  243. */
  244. private Integer inpadocFamilyNum;
  245. /**
  246. * INPADOC同族id
  247. */
  248. private String inpadocFamilyId;
  249. /**
  250. * 简单同族数量
  251. */
  252. private Integer simpleFamilyNum;
  253. /**
  254. * 简单同族id
  255. */
  256. private String simpleFamilyId;
  257. /**
  258. * 专题库或报告id
  259. */
  260. private Integer projectId;
  261. /**
  262. * 专题库或报告id
  263. */
  264. private String productId;
  265. /**
  266. * 专题库或报告的任务
  267. */
  268. EsProjectTask projectTask;
  269. /**
  270. * 导入任务
  271. */
  272. ESImportTask importTask;
  273. /**
  274. * 法律状态
  275. */
  276. List<String> legalStatus;
  277. /**
  278. * 标注
  279. */
  280. List<Marking> markings;
  281. PatentJoin patentJoin;
  282. }