rk
15 小时以前 77970ad391881f9c49a3f15dda8bb447e9326fd2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.doumee.dao.business;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.doumee.dao.business.model.Shop;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
 
import java.math.BigDecimal;
 
/**
 * @author 江蹄蹄
 * @date 2023/03/21 15:48
 */
public interface ShopMapper extends BaseMapper<Shop> {
 
}