TicketRightsProtection.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package com.example.xiaoshiweixinback.domain;
  2. import co.elastic.clients.elasticsearch.xpack.usage.Base;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. /**
  6. * 知识产权维权工单
  7. * @Author xiexiang
  8. * @Date 2024/4/7
  9. */
  10. @TableName("ticket_rights_protection")
  11. @Data
  12. public class TicketRightsProtection extends BaseEntity<TicketRightsProtection> {
  13. /**
  14. * 知识产权维权工单id
  15. */
  16. private Integer id;
  17. /**
  18. * 工单id
  19. */
  20. private Integer ticketId;
  21. /**
  22. * 侵权店铺ADIN号
  23. */
  24. private String tortStoreAdin;
  25. /**
  26. * 侵权店铺站点
  27. */
  28. private String tortStoreAdinSite;
  29. /**
  30. * 侵权类型
  31. */
  32. private String tortType;
  33. /**
  34. * 侵权分类
  35. */
  36. private String tortClassify;
  37. /**
  38. * 是否拥有权利证明
  39. */
  40. private Boolean ifHaveRightProof;
  41. /**
  42. * 权利证明文件
  43. */
  44. private String rightProof;
  45. /**
  46. * 权利证明号码
  47. */
  48. private String patentNo;
  49. /**
  50. * 描述问题
  51. */
  52. private String problemDescription;
  53. /**
  54. * 侵权店铺链接
  55. */
  56. private String tortStoreLink;
  57. /**
  58. * 提供更多信息
  59. */
  60. private String description;
  61. }