Lius
2024-10-24 a7a4e0e6ae09c720e50dc22fc50c67519414067c
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/mapper/ClassMonthlyscheduleMapper.java
@@ -3,9 +3,7 @@
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 org.jeecg.modules.mdcJc.entity.*;
import java.util.List;
@@ -24,6 +22,7 @@
    /**
     * 当月零部件计划进度信息
     *
     * @param dateTime
     * @return
     */
@@ -31,8 +30,48 @@
    /**
     * 月合格和不合格
     *
     * @param dateTime
     * @return
     */
    List<QualityMonth> findListQualityMonth(@Param("dateTime") String dateTime);
    /**
     * 当日零部件
     *
     * @param dateTime
     * @return
     */
    List<ProductDayschedule> findListProductDay(@Param("dateTime") String dateTime);
    /**
     * 自动线上线
     *
     * @return
     */
    List<OnLineQueue> onLineQueueList();
    /**
     * 自动线上线
     *
     * @param id
     * @return
     */
    List<OnLineQueue> findListOnLineQueue(@Param("id") Integer id);
    /**
     * 自动线下线
     *
     * @return
     */
    List<UnderLineQueue> underLineQueueList();
    /**
     * 自动线下线
     *
     * @param id
     * @return
     */
    List<UnderLineQueue> findListUnderLineQueue(@Param("id") Integer id);
}