holidaystaff.php 452 B

1234567891011121314151617181920212223
  1. <?php
  2. Doo::loadCore ( 'db/DooModel' );
  3. class HStaff extends DooModel {
  4. public $uid;
  5. public $yearnum;
  6. public $hadyear;
  7. public $addnum;
  8. public $othernum;
  9. public $isadmin;
  10. public $_table = 'holiday_staff';
  11. public $_primarykey = 'uid';
  12. public $_fields = array ('uid', 'yearnum', 'hadyear', 'addnum', 'hunjianum', 'chanjianum', 'sangjianum', 'gongjianum', 'isadmin');
  13. public function __construct() {
  14. parent::setupModel(__CLASS__);
  15. }
  16. }
  17. ?>