1
2
3
4
5
6
7
8
9
10
11
12
| package com.yssh.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.yssh.entity.Suyuan100Csv2;
| import org.apache.ibatis.annotations.Mapper;
| import org.apache.ibatis.annotations.Select;
|
| @Mapper
| public interface Suyuan100Csv2Mapper extends BaseMapper<Suyuan100Csv2> {
| @Select("select count(*) from yssh_suyuan100")
| int getCount();
| }
|
|