控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PointLog.php 1.0KB

123456789101112131415161718192021222324252627
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Yzncms [ 御宅男工作室 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018 http://yzncms.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 御宅男 <530765310@qq.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | 会员积分变动模型
  13. // +----------------------------------------------------------------------
  14. namespace app\member\model;
  15. use think\Model;
  16. class PointLog extends Model
  17. {
  18. // 表名
  19. protected $name = 'member_point_log';
  20. // 开启自动写入时间戳字段
  21. protected $autoWriteTimestamp = true;
  22. protected $updateTime = false;
  23. }