截流自动化的商城平台
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.

GoodsColumnLogic.php 540B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\goods\GoodsColumn;
  5. class GoodsColumnLogic extends Logic
  6. {
  7. /**
  8. * 获取商品栏目列表
  9. */
  10. public static function getGoodsColumnList()
  11. {
  12. $where = [
  13. 'del' => 0, // 未删除
  14. 'status' => 1, // 显示
  15. ];
  16. $list = GoodsColumn::field('id,name,remark')
  17. ->where($where)
  18. ->order('sort', 'asc')
  19. ->select()
  20. ->toArray();
  21. return $list;
  22. }
  23. }