路泰机电科技体检——数据平台后端
zhaowenxuan
2025-05-19 2b97a88ceb6e9d44505b8bfa64fe6ec79ea35166
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.example.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.example.domain.DictHosp;
import com.example.service.DictHospService;
import com.example.mapper.DictHospMapper;
import org.springframework.stereotype.Service;
 
/**
* @author w
* @description 针对表【dict_hosp(院区信息表)】的数据库操作Service实现
* @createDate 2025-04-15 08:59:12
*/
@Service
public class DictHospServiceImpl extends ServiceImpl<DictHospMapper, DictHosp>
    implements DictHospService{
 
}