Lius
7 天以前 0a19d4923b0a048aee0cda91c37f25bc6e140d54
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/IEamTechnicalStatusChangeDetailService.java
@@ -3,6 +3,8 @@
import org.jeecg.modules.eam.entity.EamTechnicalStatusChangeDetail;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
 * @Description: 技术状态变更申请明细
 * @Author: jeecg-boot
@@ -11,4 +13,10 @@
 */
public interface IEamTechnicalStatusChangeDetailService extends IService<EamTechnicalStatusChangeDetail> {
    /**
     * 查询设备明细
     * @param orderId
     * @return
     */
    List<EamTechnicalStatusChangeDetail> queryList(String orderId);
}