ReportTemplateResponseVo.php 450 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * result
  4. * @author auto create
  5. */
  6. class ReportTemplateResponseVo
  7. {
  8. /**
  9. * 默认接收群
  10. **/
  11. public $default_received_convs;
  12. /**
  13. * 模板默认接收人
  14. **/
  15. public $default_receivers;
  16. /**
  17. * 模板字段
  18. **/
  19. public $fields;
  20. /**
  21. * 模板id
  22. **/
  23. public $id;
  24. /**
  25. * 模板名称
  26. **/
  27. public $name;
  28. /**
  29. * 用户名称
  30. **/
  31. public $user_name;
  32. /**
  33. * 员工id
  34. **/
  35. public $userid;
  36. }
  37. ?>