Category.php 892 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * ----------------------------------------------------------------------------
  4. * 行到水穷处,坐看云起时
  5. * 开发软件,找贵阳云起信息科技,官网地址:https://www.56q7.com/
  6. * ----------------------------------------------------------------------------
  7. * Author: 老成
  8. * email:85556713@qq.com
  9. */
  10. declare(strict_types=1);
  11. namespace app\common\model;
  12. use think\Model;
  13. class Category extends Model{
  14. // 自动写入时间戳字段
  15. protected $autoWriteTimestamp = true;
  16. // 定义时间戳字段名
  17. protected $createTime = 'createtime';
  18. protected $updateTime = 'updatetime';
  19. protected $type = [
  20. 'updatetime' => 'timestamp:Y-m-d H:i',
  21. 'createtime' => 'timestamp:Y-m-d H:i',
  22. ];
  23. public static function onAfterInsert($rule)
  24. {
  25. $rule->weigh=1000-$rule->id;
  26. $rule->save();
  27. }
  28. }