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 selectByPage(Integer resid, Integer limit, Integer offset); public List selectAll(); public ResLogEntity selectById(int id); public Integer insert(ResLogEntity entity); public Integer inserts(List list); public Integer delete(int id); public Integer deletes(List ids); public Integer update(ResLogEntity entity); public Integer updates(List list); }