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/MedicalRecPhysicalMapper.java

19 lines
443 B
Java

package com.supervision.mapper;
import com.supervision.model.MedicalRecPhysical;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author Administrator
* @description 针对表【vp_medical_rec_physical(病历体格检查)】的数据库操作Mapper
* @createDate 2024-06-19 15:04:44
* @Entity com.supervision.model.MedicalRecPhysical
*/
public interface MedicalRecPhysicalMapper extends BaseMapper<MedicalRecPhysical> {
}