package com.landtool.lanbase.modules.res.dao; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import com.landtool.lanbase.modules.res.entity.Res_ActionRecord; import com.landtool.lanbase.modules.res.entity.Res_MainInfo; import com.landtool.lanbase.modules.res.entity.UserDefined.MainInfoJoinActionRecord; @Mapper public interface Res_ActionRecordMapper { int deleteByPrimaryKey(Integer actionid); int insert(Res_ActionRecord record); int insertSelective(Res_ActionRecord record); Res_ActionRecord selectByPrimaryKey(Long actionid); int updateByPrimaryKeySelective(Res_ActionRecord record); int updateByPrimaryKey(Res_ActionRecord record); List selectByActiontype(Res_ActionRecord record); Res_ActionRecord getUserActionRecord(Res_ActionRecord record); int selectResourceCount(Res_ActionRecord record); List selectFangWenPaiHang(); List selectResMainInfoWodeShouCang(MainInfoJoinActionRecord record); List selectResMainInfoZuiXinZiYuan(Res_MainInfo resMainInfo); List getTopList(Map map); List getListFWPH(Map map); List getListWDSC(Map map); List selectActionRecordJoinMainInfo(MainInfoJoinActionRecord record); int deleteByResourceid(Integer resourceid); int selectCountByResourceid(Integer resourceid); List selectKeyWordsByUserid(Integer userid); List selectMainInfoRecommends(Map map); List queryAppByResourceid(Map map); List queryAppActionCount(Map map); List queryResourceByAppid(Map map); }