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.
14 lines
419 B
Java
14 lines
419 B
Java
package com.supervision.service;
|
|
|
|
import com.supervision.model.DiseaseTreatmentPlanDrug;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* @author Administrator
|
|
* @description 针对表【vp_treatment_plan_drug(处置计划药物关联表)】的数据库操作Service
|
|
* @createDate 2023-12-07 11:34:05
|
|
*/
|
|
public interface DiseaseTreatmentPlanDrugService extends IService<DiseaseTreatmentPlanDrug> {
|
|
|
|
}
|