13693261870
2025-07-08 2691194cb3ea13de13aa5fda4af2f7ff78daa7b3
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
package com.terra.system.mapper.sys;
 
import com.terra.system.entity.sys.ResLogEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface ResLogMapper {
    public Integer selectCount(Integer resid);
 
    public List<ResLogEntity> selectByPage(Integer resid, Integer limit, Integer offset);
 
    public List<ResLogEntity> selectAll();
 
    public ResLogEntity selectById(int id);
 
    public Integer insert(ResLogEntity entity);
 
    public Integer inserts(List<ResLogEntity> list);
 
    public Integer delete(int id);
 
    public Integer deletes(List<Integer> ids);
 
    public Integer update(ResLogEntity entity);
 
    public Integer updates(List<ResLogEntity> list);
}