Auth.php 338 B

12345678910111213141516
  1. <?php
  2. namespace app\user\model;
  3. class Auth extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'app_id' =>'varchar',//
  9. 'app_key' =>'varchar',//
  10. 'status' =>'tinyint',//
  11. 'is_del' =>'tinyint',//
  12. 'addtime' =>'datetime',//
  13. ];
  14. }