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