jinpengyong
2024-06-19 f05383c46370ec8c4f4b8b8165ffab3769dd06a2
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);
}