AdminWxmenu.php 549 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace app\common\model;
  3. use app\main\service\LogService;
  4. use think\Log;
  5. use think\Model;
  6. use think\Cache;
  7. use app\common\library\Redis;
  8. class AdminWxmenu extends Model
  9. {
  10. // 表名
  11. protected $table = 'admin_wxmenu';
  12. // 自动写入时间戳字段
  13. protected $autoWriteTimestamp = 'int';
  14. // 定义时间戳字段名
  15. protected $createTime = 'createtime';
  16. protected $updateTime = 'updatetime';
  17. // 类型转换
  18. protected $type = [
  19. 'json' => 'json',
  20. 'wx_qrcode_menu' => 'json',
  21. ];
  22. }