xing
2023-02-23 c75e6f4696634d626c5569794c6349593853223a
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();
}