package org.jeecg.modules.mdcJc.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.jeecg.modules.mdcJc.entity.MdcProductDayschedule; import java.util.List; /** * @author Lius * @date 2024/7/30 15:17 */ public interface MdcProductDayscheduleMapper extends BaseMapper { List selectDateList(@Param("dateTime") String dateTime); MdcProductDayschedule findYesterdayData(@Param("date") String date); String findClazz(@Param("equipmentId") String equipmentId); }