package org.jeecg.modules.mdcJc.service; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.mdcJc.entity.ClassMonthlyschedule; import org.jeecg.modules.mdcJc.entity.ProductMonthlyschedule; import org.jeecg.modules.mdcJc.entity.QualityMonth; import java.util.List; /** * @author clown * * @date 2024/7/15 */ public interface IClassMonthlyscheduleService extends IService { /** * 查询某个月数据 月班组完成情况 * @param dateTime * @return */ List findListClass(String dateTime); /** * 当月零部件 * @param dateTime * @return */ List findListProductMonth(String dateTime); /** * 月合格和不合格 * @param dateTime * @return */ List findListQualityMonth( String dateTime); }