xiaoyong931011
2021-03-16 c45db552e4593987248b7833fbe4985b6d80542d
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);
}