zhangherong
2 天以前 63fd66413265dfc6d6248ec7f1700bd7d7837f8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.eam.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.eam.entity.EamInspectionOrderDetail;
 
import java.util.List;
 
/**
 * @Description: 点检工单明细
 * @Author: jeecg-boot
 * @Date:   2025-04-02
 * @Version: V1.0
 */
public interface IEamInspectionOrderDetailService extends IService<EamInspectionOrderDetail> {
    /**
     * 获取工单保养项内容
     * @param orderId 工单ID
     * @return
     */
    List<EamInspectionOrderDetail> queryListByOrderId(String orderId);
}