北京经济技术开发区经开区虚拟城市项目-【后端】-服务,Poi,企业,地块等定制接口
1
13693261870
2023-10-06 120136539788c9bc347d35c80de2cb93f35469ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.smartearth.poiexcel.mapper;
 
import com.smartearth.poiexcel.entity.EntEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
/**
 * 企业Mapper
 * @author WWW
 */
@Mapper
@Repository
public interface QiYeMapper {
    /**
     * 查询行数
     *
     * @return
     */
    public Integer selectCount();
 
    /**
     * 分页查询
     *
     * @param limit
     * @param offset
     * @return
     */
    public List<EntEntity> selectByPage(@Param("limit") Integer limit, @Param("offset") Integer offset);
 
    /**
     * 更新一条
     *
     * @param entity
     * @return
     */
    public Integer update(EntEntity entity);
 
    /**
     * 更新多条
     *
     * @param list
     * @return
     */
    public Integer updates(List<EntEntity> list);
}