Auditlist.php 374 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 审批人列表
  4. * @author auto create
  5. */
  6. class Auditlist
  7. {
  8. /**
  9. * 备注
  10. **/
  11. public $note;
  12. /**
  13. * 审批操作时间
  14. **/
  15. public $operate_time;
  16. /**
  17. * 审批状态:0审批中 1已同意 2已拒绝 3已转交,4已取消 5已终止
  18. **/
  19. public $status;
  20. /**
  21. * 审批人id
  22. **/
  23. public $userid;
  24. }
  25. ?>