package com.mes.engineerScheduling.service; import com.baomidou.dynamic.datasource.annotation.DS; import com.mes.engineerScheduling.entity.EngineerScheduling; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** *

* 服务类 *

* * @author wf * @since 2025-10-27 */ @DS("north_glass_mes") public interface EngineerSchedulingService extends IService { //查询当前切割排版的工程号 List listByState(); //查询当前钢化排版工程号 List queryByType(Integer type); //修改已取消的钢化排版状态 void updateState(List engineerIds); //取消当前类型的工程排产信息 void updateByType(Integer type); }