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
551 B
Java
23 lines
551 B
Java
2 years ago
|
package com.supervision.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.supervision.model.Patient;
|
||
|
import com.supervision.service.PatientService;
|
||
|
import com.supervision.mapper.PatientMapper;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* @author flevance
|
||
|
* @description 针对表【vp_patient(病人表)】的数据库操作Service实现
|
||
|
* @createDate 2023-10-20 17:19:21
|
||
|
*/
|
||
|
@Service
|
||
|
public class PatientServiceImpl extends ServiceImpl<PatientMapper, Patient>
|
||
|
implements PatientService{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|