WechatGraphic.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\wechat\model;
  12. use catcher\base\CatchModel as Model;
  13. use catcher\traits\db\BaseOptionsTrait;
  14. class WechatGraphic extends Model
  15. {
  16. protected $name = 'wechat_graphic';
  17. protected $field = [
  18. 'id', //
  19. 'title', // 标题
  20. 'author', // 作者
  21. 'parent_id', // 图文第一篇
  22. 'cover', // 封面
  23. 'content', // 内容
  24. 'creator_id', // 创建人ID
  25. 'created_at', // 创建时间
  26. 'updated_at', // 更新时间
  27. 'deleted_at', // 软删除
  28. ];
  29. }