package com.yssh.dao; import com.yssh.entity.Qxsh; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * @author WWW * @date 2023-05-18 * QxshMapper */ @Mapper public interface QxshMapper { public List selectByTime(String time); public List selectMonthTop10(String time); }