package com.ltkj.hosp.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ltkj.hosp.domain.LtkjGetexamreportinfo;
|
import com.ltkj.hosp.service.LtkjGetexamreportinfoService;
|
import com.ltkj.hosp.mapper.LtkjGetexamreportinfoMapper;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author chacca
|
* @description 针对表【ltkj_getexamreportinfo】的数据库操作Service实现
|
* @createDate 2024-06-18 12:09:37
|
*/
|
@Service
|
public class LtkjGetexamreportinfoServiceImpl extends ServiceImpl<LtkjGetexamreportinfoMapper, LtkjGetexamreportinfo>
|
implements LtkjGetexamreportinfoService{
|
|
}
|
|
|
|
|