package com.moral.api.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.moral.api.entity.HistoryMonthly; import com.moral.api.pojo.vo.historyMonthly.HistoryResultVo; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* 月数据 Mapper 接口 *

* * @author moral * @since 2021-07-20 */ public interface HistoryMonthlyMapper extends BaseMapper { List listAll(@Param("type") String type, @Param("macs") List macs, @Param("startTime") String startTime, @Param("endTime") String endTime); }