1
2
3
4
5
6
7
8
9
10
11
12
| package cc.mrbird.febs.mall.mapper;
|
| import cc.mrbird.febs.mall.entity.MallCountryDelivery;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * 国家运费配置 Mapper
| *
| * @author auto-generated
| */
| public interface MallCountryDeliveryMapper extends BaseMapper<MallCountryDelivery> {
| }
|
|