Usergangwei.php 559 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 分类模型
  6. */
  7. class Usergangwei extends Model
  8. {
  9. // 表名,不含前缀
  10. protected $name = 'user_gangwei';
  11. protected static function init()
  12. {
  13. self::afterInsert(function ($row) {
  14. $row->save(['weigh' => $row['id']]);
  15. });
  16. }
  17. /**
  18. * 读取分类列表
  19. * @return array
  20. */
  21. public static function getCategoryArray()
  22. {
  23. $list = collection(self::order('weigh', 'desc')->select())->toArray();
  24. return $list;
  25. }
  26. }