优化字段
parent
8060d82518
commit
402040a6dd
@ -1,15 +1,15 @@
|
|||||||
package com.supervision.mapper;
|
package com.supervision.mapper;
|
||||||
|
|
||||||
import com.supervision.model.TreatmentPlan;
|
import com.supervision.model.ConfigTreatmentPlan;
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Administrator
|
* @author Administrator
|
||||||
* @description 针对表【vp_treatment_plan(处置计划表)】的数据库操作Mapper
|
* @description 针对表【vp_treatment_plan(处置计划表)】的数据库操作Mapper
|
||||||
* @createDate 2023-11-23 10:24:03
|
* @createDate 2023-11-23 10:24:03
|
||||||
* @Entity com.supervision.model.TreatmentPlan
|
* @Entity com.supervision.model.ConfigTreatmentPlan
|
||||||
*/
|
*/
|
||||||
public interface TreatmentPlanMapper extends BaseMapper<TreatmentPlan> {
|
public interface ConfigTreatmentPlanMapper extends BaseMapper<ConfigTreatmentPlan> {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
|||||||
|
package com.supervision.service.impl;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
|
import com.supervision.model.DiseaseTreatmentPlan;
|
||||||
|
import com.supervision.service.DiseaseTreatmentPlanService;
|
||||||
|
import com.supervision.mapper.DiseaseTreatmentPlanMapper;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Administrator
|
||||||
|
* @description 针对表【vp_disease_treatmen_relation(疾病处置计划关联表)】的数据库操作Service实现
|
||||||
|
* @createDate 2023-11-23 10:43:28
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class DiseaseTreatmentPlanServiceImpl extends ServiceImpl<DiseaseTreatmentPlanMapper, DiseaseTreatmentPlan>
|
||||||
|
implements DiseaseTreatmentPlanService {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
|||||||
package com.supervision.service.impl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
import com.supervision.model.DiseaseTreatmentRelation;
|
|
||||||
import com.supervision.service.VpDiseaseTreatmenRelationService;
|
|
||||||
import com.supervision.mapper.VpDiseaseTreatmenRelationMapper;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Administrator
|
|
||||||
* @description 针对表【vp_disease_treatmen_relation(疾病处置计划关联表)】的数据库操作Service实现
|
|
||||||
* @createDate 2023-11-23 10:43:28
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class VpDiseaseTreatmenRelationServiceImpl extends ServiceImpl<VpDiseaseTreatmenRelationMapper, DiseaseTreatmentRelation>
|
|
||||||
implements VpDiseaseTreatmenRelationService{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue