1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.iotechn.unimall.data.mapper;
|
| import com.dobbinsoft.fw.support.mapper.IMapper;
| import com.iotechn.unimall.data.domain.SpuSpecificationDO;
|
| import java.util.List;
|
| /**
| * Description:
| * User: rize
| * Date: 2020/8/1
| * Time: 17:35
| */
| public interface SpuSpecificationMapper extends IMapper<SpuSpecificationDO> {
|
| }
|
|