燕山石化项目数据提取服务
xing
2023-02-24 08c8552eb977f27304a4785e5a671905463d83c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.terra.bigdata.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.terra.bigdata.domain.Suyuan100Csv2;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
 
 
/**
 * <p>
 *  前端控制器
 * </p>yssh_suyuan100
 *
 * @author hyy
 * @since 2022-12-13
 */
@Mapper
public interface Suyuan100Csv2Mapper extends BaseMapper<Suyuan100Csv2>{
     @Select("select count(*) from yssh_suyuan100")
     int getCount();
}