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.
virtual-patient/virtual-patient-model/src/main/java/com/supervision/mapper/PatientMapper.java

19 lines
372 B
Java

package com.supervision.mapper;
import com.supervision.model.Patient;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author flevance
* @description 针对表【vp_patient(病人表)】的数据库操作Mapper
* @createDate 2023-10-20 17:19:21
* @Entity com.supervision.model.Patient
*/
public interface PatientMapper extends BaseMapper<Patient> {
}