model: 添加vp_treatment_plan_drug 表 重命名
parent
4640ce2e76
commit
5b21c5d64a
@ -0,0 +1,22 @@
|
|||||||
|
package com.supervision.service.impl;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
|
import com.supervision.model.DiseaseTreatmentPlanDrug;
|
||||||
|
import com.supervision.service.DiseaseTreatmentPlanDrugService;
|
||||||
|
import com.supervision.mapper.DiseaseTreatmentPlanDrugMapper;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Administrator
|
||||||
|
* @description 针对表【vp_treatment_plan_drug(处置计划药物关联表)】的数据库操作Service实现
|
||||||
|
* @createDate 2023-12-07 11:34:05
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class DiseaseTreatmentPlanDrugServiceImpl extends ServiceImpl<DiseaseTreatmentPlanDrugMapper, DiseaseTreatmentPlanDrug>
|
||||||
|
implements DiseaseTreatmentPlanDrugService {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
|||||||
package com.supervision.service.impl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
import com.supervision.model.TreatmentPlanDrug;
|
|
||||||
import com.supervision.service.TreatmentPlanDrugService;
|
|
||||||
import com.supervision.mapper.TreatmentPlanDrugMapper;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Administrator
|
|
||||||
* @description 针对表【vp_treatment_plan_drug(处置计划药物关联表)】的数据库操作Service实现
|
|
||||||
* @createDate 2023-12-07 11:34:05
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class TreatmentPlanDrugServiceImpl extends ServiceImpl<TreatmentPlanDrugMapper, TreatmentPlanDrug>
|
|
||||||
implements TreatmentPlanDrugService{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue