package com.moon.server.mapper.sys; import com.moon.server.entity.sys.MetaDownEntity; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; import java.util.List; @Mapper @Repository @SuppressWarnings("ALL") public interface MetaDownMapper { public Integer selectCount(Integer metaid); public List selectByPage(Integer metaid, Integer limit, Integer offset); public List selectAll(); public MetaDownEntity selectById(int id); public Integer insert(MetaDownEntity entity); public Integer inserts(List list); public Integer delete(int id); public Integer deletes(List ids); public Integer update(MetaDownEntity entity); public Integer updates(List list); }