1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>
 *  服务类
 * </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);
 
}