TicketRightsProtectionVO.java 1022 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.example.xiaoshiweixinback.entity.vo;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.example.xiaoshiweixinback.domain.BaseEntity;
  4. import lombok.Data;
  5. /**
  6. * 知识产权维权工单
  7. * @Author xiexiang
  8. * @Date 2024/4/7
  9. */
  10. @Data
  11. public class TicketRightsProtectionVO {
  12. /**
  13. * 知识产权维权工单id
  14. */
  15. private Integer id;
  16. /**
  17. * 工单id
  18. */
  19. private Integer ticketId;
  20. /**
  21. * 侵权店铺ADIN号
  22. */
  23. private String tortStoreAdin;
  24. /**
  25. * 侵权类型
  26. */
  27. private String tortType;
  28. /**
  29. * 侵权分类
  30. */
  31. private String tortClassify;
  32. /**
  33. * 是否拥有专利
  34. */
  35. private Boolean ifHavePatent;
  36. /**
  37. * 专利号
  38. */
  39. private String patentNo;
  40. /**
  41. * 描述问题
  42. */
  43. private String problemDescription;
  44. /**
  45. * 侵权店铺链接
  46. */
  47. private String tortStoreLink;
  48. /**
  49. * 提供更多信息
  50. */
  51. private String description;
  52. }