AddCommentRequest.php 284 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 请求
  4. * @author auto create
  5. */
  6. class AddCommentRequest
  7. {
  8. /**
  9. * 评论人工号
  10. **/
  11. public $comment_userid;
  12. /**
  13. * 文件类
  14. **/
  15. public $file;
  16. /**
  17. * 实例id
  18. **/
  19. public $process_instance_id;
  20. /**
  21. * 评论内容
  22. **/
  23. public $text;
  24. }
  25. ?>