1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.iotechn.unimall.data.mapper;
|
| import com.iotechn.unimall.data.domain.DynamicConfigDO;
| import com.dobbinsoft.fw.support.mapper.IMapper;
|
| /**
| * ClassName: DynamicConfigMapper
| * Description: TODO
| *
| * @author: e-weichaozheng
| * @date: 2021-03-17
| */
| public interface DynamicConfigMapper extends IMapper<DynamicConfigDO> {
| }
|
|