package com.moon.server.mapper.sys;
|
|
import com.moon.server.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);
|
}
|