1
13693261870
2022-10-27 237e9ca055705acd8b705580cc7ac627f5830eda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}> {
{wkt}
}