NotifierVO.php 238 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 抄送人列表
  4. * @author auto create
  5. */
  6. class NotifierVO
  7. {
  8. /**
  9. * 抄送时机,可选值有 start, start_finish, finish
  10. **/
  11. public $notify_position;
  12. /**
  13. * 抄送人的用户ID
  14. **/
  15. public $user_id;
  16. }
  17. ?>