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{
|
|
}
|
|
|
|
|