12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace app\common\service;
- use app\common\constant\CommonConstant;
- use app\common\model\Goods;
- /**
- * 商品服务类
- */
- class GoodsService
- {
- /**
- * 商品列表
- *
- * @param integer $category_id 二级分类ID
- * @return array
- **/
- public static function get_list($category_id)
- {
- $list = Goods::field('status,is_deleted,create_at', true)
- ->where('goods_category_id', $category_id)
- ->where('status', CommonConstant::IS_WHO_1)
- ->where('is_deleted', CommonConstant::IS_DELETED_0)
- ->with([
- 'goodsSku'
- ])
- ->order('weigh desc,id desc')
- ->select();
- return $list;
- }
- }
|