zhitong.yu
2024-03-21 6beef2ce75f15a8b3d4394b83da62071c686eb3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.hxzk.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hxzk.pojo.TbRealkaoqing;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
public interface ShiShiKaoQinDao extends BaseMapper<TbRealkaoqing> {
 
 
    @Select("select count(*)AS tagid,area,now()AS name from tb_realkaoqing GROUP BY area")
    List<TbRealkaoqing> findKaoQinQuYu();
}