TicketPageQueryDto.php 720 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /**
  3. * 查询对象
  4. * @author auto create
  5. */
  6. class TicketPageQueryDto
  7. {
  8. /**
  9. * 游标
  10. **/
  11. public $cursor;
  12. /**
  13. * 结束时间
  14. **/
  15. public $end_date;
  16. /**
  17. * 三方账号id
  18. **/
  19. public $foreign_id;
  20. /**
  21. * 三方账号姓名
  22. **/
  23. public $foreign_name;
  24. /**
  25. * 实例id
  26. **/
  27. public $open_instance_id;
  28. /**
  29. * 1智能客服
  30. **/
  31. public $production_type;
  32. /**
  33. * 分页大小
  34. **/
  35. public $size;
  36. /**
  37. * 三方账号标识
  38. **/
  39. public $source_id;
  40. /**
  41. * 开始时间
  42. **/
  43. public $start_date;
  44. /**
  45. * 工单id
  46. **/
  47. public $ticket_id;
  48. /**
  49. * 待受理
  50. **/
  51. public $ticket_status;
  52. /**
  53. * 工单类型id
  54. **/
  55. public $ticket_template_id;
  56. }
  57. ?>