管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2022-12-01 dcfa1ebe1e5c7d5eaa4a92edd72156c2714176eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package {mapperNS};
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import {entityNS}.{entityName};
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
/**
 * {bak}
 * @author WWW
 */
@Mapper
@Repository
public interface {mapperName} extends BaseMapper<{entityName}> {
}