1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.ltkj.hosp.service;
|
| import com.ltkj.hosp.domain.LisJyflhb;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @author w
| * @description 针对表【lis_jyflhb】的数据库操作Service
| * @createDate 2024-10-18 15:13:39
| */
| public interface LisJyflhbService extends IService<LisJyflhb> {
|
| }
|
|