zjh
2024-06-26 bfc3891452195aeadef5eccd5a0b390ba7f89be1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ltkj.hosp.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.domain.LtkjJianchajianyanTree;
import com.ltkj.hosp.service.LtkjJianchajianyanTreeService;
import com.ltkj.hosp.mapper.LtkjJianchajianyanTreeMapper;
import org.springframework.stereotype.Service;
 
/**
* @author chacca
* @description 针对表【ltkj_jianchajianyan_tree(检查检验处置关联表)】的数据库操作Service实现
* @createDate 2024-06-15 11:53:00
*/
@Service
public class LtkjJianchajianyanTreeServiceImpl extends ServiceImpl<LtkjJianchajianyanTreeMapper, LtkjJianchajianyanTree>
    implements LtkjJianchajianyanTreeService{
 
}