package com.goafanti.common.dao; import com.goafanti.common.model.AdminUserCount; import org.apache.ibatis.annotations.Param; import java.util.List; public interface AdminUserCountMapper { int deleteByPrimaryKey(Integer id); int insert(AdminUserCount record); int insertSelective(AdminUserCount record); AdminUserCount selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(AdminUserCount record); int updateByPrimaryKey(AdminUserCount record); int updateByAidAndDateSelective(AdminUserCount e); int updateByaidAndDate(@Param("aid") String aid,@Param("startTime") String startTime, @Param("endTime")String endTime,@Param("type")Integer type); List selectByaidAndDate(@Param("aid") String aid, @Param("startTime") String startTime); void updateUserCountResetting(String aid); }