| package com.xzx.gc.user.mapper; | 
|   | 
| import com.xzx.gc.entity.UserLoginInfo; | 
| import com.xzx.gc.util.GcMapper; | 
| import org.apache.ibatis.annotations.Param; | 
| import org.springframework.stereotype.Repository; | 
|   | 
| import java.util.List; | 
| import java.util.Map; | 
|   | 
| @Repository | 
| public interface UserLoginInfoMapper extends GcMapper<UserLoginInfo> { | 
|   | 
|     Map<String, Object> queryUserDayCount1(); | 
|   | 
|     Map<String, Object> queryUserDayCount(@Param("townIds") List<String> townIds); | 
| } |