package com.landtool.lanbase.modules.res.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import com.landtool.lanbase.modules.res.entity.Res_Files; @Mapper public interface Res_FilesMapper { int deleteByPrimaryKey(int fileid); int insert(Res_Files record); int insertSelective(Res_Files record); Res_Files selectByPrimaryKey(Integer resourceid); int updateByPrimaryKeySelective(Res_Files record); int updateByPrimaryKey(Res_Files record); List selectDataListForResourceid(int resourceid); int deleteByResourceid(Integer resourceid); }