Quota.php 358 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 失败记录
  4. * @author auto create
  5. */
  6. class Quota
  7. {
  8. /**
  9. * 假期类型唯一标识
  10. **/
  11. public $leave_code;
  12. /**
  13. * 额度所对应的周期(除了假期类型为调休的时候可以为空之外 其他情况均不能为空 且格式必须满足"yyyy")
  14. **/
  15. public $quota_cycle;
  16. /**
  17. * 员工ID
  18. **/
  19. public $userid;
  20. }
  21. ?>