1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.ltkj.hosp.service;
|
| import com.ltkj.hosp.domain.TbLisSq;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @author chacca
| * @description 针对表【tb_lis_sq(lis申请记录表)】的数据库操作Service
| * @createDate 2025-01-08 11:45:54
| */
| public interface TbLisSqService extends IService<TbLisSq> {
|
| }
|
|