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; /** *

* 工程表 服务类 *

* * @author wu * @since 2024-08-28 */ public interface ProjectService extends MPJBaseService { //导入工程 boolean insertProjectStandard(); //导入工程-扫码ID int insertProjectCustomization(String scan_id); }