zhoushihao
2025-05-12 fbd31387721424c65b173cbb23b03202f3e7dce6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.mes.edgglasstask.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.edgglasstask.entity.EdgGlassTaskInfo;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author wu
 * @since 2024-05-11
 */
public interface EdgGlassTaskInfoService extends IService<EdgGlassTaskInfo> {
 
    int judgeTasktype(String plcFeedReqLine);
 
    int startTask();
}