123456789101112131415161718192021222324252627 |
- <?php
- // +----------------------------------------------------------------------
- // | Yzncms [ 御宅男工作室 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2018 http://yzncms.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 御宅男 <530765310@qq.com>
- // +----------------------------------------------------------------------
-
- // +----------------------------------------------------------------------
- // | 会员积分变动模型
- // +----------------------------------------------------------------------
- namespace app\member\model;
-
- use think\Model;
-
- class PointLog extends Model
- {
-
- // 表名
- protected $name = 'member_point_log';
- // 开启自动写入时间戳字段
- protected $autoWriteTimestamp = true;
- protected $updateTime = false;
- }
|