cjl
2025-01-06 27e6bc3df3e39e0d0b147b155a89ad6837ea972b
screen-api/src/main/java/com/moral/api/mapper/HistoryMonthlyMapper.java
@@ -1,7 +1,11 @@
package com.moral.api.mapper;
import com.moral.api.entity.HistoryMonthly;
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>
@@ -13,4 +17,5 @@
 */
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);
}