1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.ltkj.hosp.service;
|
| import com.ltkj.hosp.domain.WsImportResultGroup;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @author w
| * @description 针对表【ws_import_result_group(结果回传表,迪安回传结果记录到该表,供LIS系统获取)】的数据库操作Service
| * @createDate 2025-03-19 17:16:25
| */
| public interface WsImportResultGroupService extends IService<WsImportResultGroup> {
|
| }
|
|