1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\common\model;
- use app\main\service\LogService;
- use think\Log;
- use think\Model;
- use think\Cache;
- use app\common\library\Redis;
- class AdminWxmenu extends Model
- {
- // 表名
- protected $table = 'admin_wxmenu';
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = 'updatetime';
- // 类型转换
- protected $type = [
- 'json' => 'json',
- 'wx_qrcode_menu' => 'json',
- ];
- }
|