TicketVO.java 1021 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.example.xiaoshiweixinback.entity.vo;
  2. import lombok.Data;
  3. import java.util.Date;
  4. import java.util.List;
  5. @Data
  6. public class TicketVO {
  7. /**
  8. * ID
  9. */
  10. private Integer id;
  11. /**
  12. *
  13. */
  14. private String name;
  15. /**
  16. *
  17. */
  18. private String contentText;
  19. /**
  20. * 工单类型
  21. */
  22. private Integer ticketType;
  23. /**
  24. * 唯一工单号
  25. */
  26. private String num;
  27. /**
  28. * 工单进度
  29. */
  30. private Integer ticketProgress;
  31. /**
  32. * 创建人
  33. */
  34. private String createId;
  35. /**
  36. * 创建时间
  37. */
  38. private Date createTime;
  39. /**
  40. * 价格
  41. */
  42. private Double price;
  43. /**
  44. *
  45. */
  46. private String description;
  47. private TicketFillInVO ticketFillInVO;
  48. private TicketPatentApplyVO ticketPatentApplyVO;
  49. private TicketLitigationRespondingVO ticketLitigationRespondingVO;
  50. private TicketRightsProtectionVO ticketRightsProtectionVO;
  51. private List<String> fileGuids;
  52. }