截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ShopRole.php 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\model\shop;
  20. use app\common\basics\Models;
  21. /**
  22. * 商家角色
  23. * Class Menu
  24. * @package app\common\model
  25. */
  26. class ShopRole extends Models
  27. {
  28. protected $name = 'shop_role';
  29. /**
  30. * Notes: 获取角色名称
  31. * @param $role_id
  32. * @author 段誉(2021/4/9 15:40)
  33. * @return mixed|string
  34. */
  35. public function getRoleName($role_id)
  36. {
  37. $role_name = $this
  38. ->where(['id' => $role_id])
  39. ->value('name');
  40. return empty($role_name) ? '系统管理员' : $role_name;
  41. }
  42. /**
  43. * Notes: 获取全部角色名称(以角色id为键,值为名称)
  44. * @param array $contidion
  45. * @author 段誉(2021/4/10 10:46)
  46. * @return array
  47. */
  48. public function getNameColumn($contidion = [])
  49. {
  50. $role_name = $this
  51. ->where($contidion)
  52. ->where('del', 0)
  53. ->column('name', 'id');
  54. return $role_name;
  55. }
  56. /**
  57. * Notes:
  58. * @param array $where
  59. * @param string $field
  60. * @author 段誉(2021/4/10 11:13)
  61. * @return \think\Collection
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\DbException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. */
  66. public function getRoleLists($where = [], $field = "*")
  67. {
  68. return $this->where(['del' => 0])->where($where)->field($field)->select();
  69. }
  70. }