cjl
2024-04-23 ee8bb47024e9ef5a585a5f4d61d1ab236c9d4341
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
 
/**
 * <p>
 * 月数据 Mapper 接口
 * </p>
 *
 * @author moral
 * @since 2021-07-20
 */
public interface HistoryMonthlyMapper extends BaseMapper<HistoryMonthly> {
 
    List<HistoryResultVo> listAll(@Param("type") String type, @Param("macs") List<String> macs, @Param("startTime") String startTime, @Param("endTime") String endTime);
}