1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.example.service;
|
| import com.example.domain.DictHosp;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @author w
| * @description 针对表【dict_hosp(院区信息表)】的数据库操作Service
| * @createDate 2025-04-15 08:59:12
| */
| public interface DictHospService extends IService<DictHosp> {
|
| }
|
|