| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\api\model;
- use app\common\model\OrderGoods as OrderGoodsModel;
- /**
- * 订单商品模型
- * Class OrderGoods
- * @package app\api\model
- */
- class OrderGoods extends OrderGoodsModel
- {
- /**
- * 隐藏字段
- * @var array
- */
- protected $hidden = [
- 'content',
- 'wxapp_id',
- 'create_time',
- ];
- /**
- * 获取未评价的商品
- * @param $order_id
- * @return OrderGoods[]|false
- * @throws \think\exception\DbException
- */
- public static function getNotCommentGoodsList($order_id)
- {
- return self::all(['order_id' => $order_id, 'is_comment' => 0], ['orderM', 'image']);
- }
- }
|