hsy
2026-08-28 94f30f5a8df17d9cda2831d7f0d74260f6913aba
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.device.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.device.pojo.DeviceRepairSparePart;
 
import java.util.List;
 
public interface IDeviceRepairSparePartService extends IService<DeviceRepairSparePart> {
 
    List<DeviceRepairSparePart> getListWithPartName(Long sourceId, Integer sourceType);
}