月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-17 796b44ea813a1133beae4f3a67f1c0263510c0c7
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
package com.moon.server.mapper.sys;
 
import com.moon.server.entity.sys.ResEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface ResMapper {
    public Integer selectCount(String name, Integer status, Integer category, Integer type, Integer data);
 
    public List<ResEntity> selectByPage(String name, Integer status, Integer category, Integer type, Integer data, Integer limit, Integer offset);
 
    public List<ResEntity> selectAll();
 
    public ResEntity selectById(int id);
 
    public ResEntity selectByPubid(Integer pubid);
 
    public Integer selectCountForRole(Integer roleid);
 
    public List<ResEntity> selectByPageForRole(Integer roleid, Integer limit, Integer offset);
 
    public Integer insert(ResEntity entity);
 
    public Integer inserts(List<ResEntity> list);
 
    public Integer delete(int id);
 
    public Integer deletes(String ids);
 
    public Integer update(ResEntity entity);
 
    public Integer updates(List<ResEntity> list);
}