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.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 E:\work_yb\yt\mdc_yituo\lxzn-module-mdc\src\main\java\org\jeecg\modules\mdcJc\mapper
|
*/
|
public interface ClassMonthlyscheduleMapper extends BaseMapper<ClassMonthlyschedule> {
|
/**
|
* 查询某个月数据 月班组完成情况
|
*
|
* @param dateTime
|
* @return
|
*/
|
List<ClassMonthlyschedule> findListClass(@Param("dateTime") String dateTime);
|
|
/**
|
* 当月零部件计划进度信息
|
* @param dateTime
|
* @return
|
*/
|
List<ProductMonthlyschedule> findListProductMonth(@Param("dateTime") String dateTime);
|
|
/**
|
* 月合格和不合格
|
* @param dateTime
|
* @return
|
*/
|
List<QualityMonth> findListQualityMonth(@Param("dateTime") String dateTime);
|
}
|