huang
2025-04-15 ef714be504f98f6b9549b134148a18d416a9dcb0
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
29
30
31
package com.mes.md.service;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.github.yulichang.base.MPJBaseService;
import com.github.yulichang.wrapper.MPJLambdaWrapper;
import com.mes.md.entity.KBBTJPDrawingBP;
import com.mes.md.entity.Machine;
import com.mes.md.entity.PrimitiveTask;
import com.mes.md.entity.Project;
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.md.mapper.KBBTJPDrawingBPMapper;
import org.springframework.beans.factory.annotation.Autowired;
 
import java.util.List;
 
/**
 * <p>
 * 工程表 服务类
 * </p>
 *
 * @author wu
 * @since 2024-08-28
 */
public interface ProjectService extends MPJBaseService<Project> {
 
    //导入工程
    boolean insertProjectStandard();
 
    //导入工程-扫码ID
    int insertProjectCustomization(String scan_id);
}