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
| package org.jeecg.modules.eam.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import org.jeecg.modules.eam.entity.EamPrecisionCheckDetail;
|
| import java.util.List;
|
| /**
| * @Description: 设备精度检测明细
| * @Author: jeecg-boot
| * @Date: 2025-05-13
| * @Version: V1.0
| */
| public interface IEamPrecisionCheckDetailService extends IService<EamPrecisionCheckDetail> {
|
| /**
| * 根据工单ID 查询 精度信息
| * @param orderId
| * @return
| */
| List<EamPrecisionCheckDetail> getByOrderId(String orderId);
|
| /**
| * 校验是否存在精度检验
| * @param orderId
| * @return
| */
| boolean hasPrecisionCheckDetail(String orderId);
|
| }
|
|