package com.thhy.secure.modules.biz.pipereport.mapper; import com.thhy.secure.modules.biz.pipereport.entity.PipeReportEntity; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @Author QiuYuHao * @CreateDate 2023-10-18 8:46:07 * 管片、钢筋笼报表mapper */ @Mapper public interface PipeReportMapper { /** * 管片生产报表 * @return */ List getPipeReportList(Map map); /** * 钢筋笼生产报表 * @return */ List getSteelReportList(Map map); }