You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
576 B
Java
23 lines
576 B
Java
2 years ago
|
package com.supervision.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.supervision.model.MedicalRec;
|
||
|
import com.supervision.service.MedicalRecService;
|
||
|
import com.supervision.mapper.MedicalRecMapper;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* @author flevance
|
||
|
* @description 针对表【vp_medical_rec(病历表)】的数据库操作Service实现
|
||
|
* @createDate 2023-11-03 11:25:43
|
||
|
*/
|
||
|
@Service
|
||
|
public class MedicalRecServiceImpl extends ServiceImpl<MedicalRecMapper, MedicalRec>
|
||
|
implements MedicalRecService{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|