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.
19 lines
478 B
Java
19 lines
478 B
Java
package com.supervision.mapper;
|
|
|
|
import com.supervision.model.MedicalRecTreatmentPlan;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
/**
|
|
* @author Administrator
|
|
* @description 针对表【vp_medical_rec_treatment_plan(病历处置计划关联表)】的数据库操作Mapper
|
|
* @createDate 2024-06-19 15:04:44
|
|
* @Entity com.supervision.model.MedicalRecTreatmentPlan
|
|
*/
|
|
public interface MedicalRecTreatmentPlanMapper extends BaseMapper<MedicalRecTreatmentPlan> {
|
|
|
|
}
|
|
|
|
|
|
|
|
|