PunchGroupMemberParam.php 208 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 新增成员列表
  4. * @author auto create
  5. */
  6. class PunchGroupMemberParam
  7. {
  8. /**
  9. * 员工userId
  10. **/
  11. public $member_id;
  12. /**
  13. * 成员类型,0表示员工
  14. **/
  15. public $type;
  16. }
  17. ?>