1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.matrix.system.shopXcx.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.matrix.system.shopXcx.bean.ShopOrder;
|
| /**
| * @description 订单表
| */
| public interface ShopOrderDaoV2 extends BaseMapper<ShopOrder> {
|
| /** 统计已收货订单数 */
| int selectReceivedOrderCount(String openId);
| }
|
|