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-web/src/main/java/com/supervision/service/TreatmentPlanService.java

18 lines
528 B
Java

package com.supervision.service;
import com.supervision.model.TreatmentPlanRecord;
import java.util.List;
public interface TreatmentPlanService {
boolean saveTreatmentPlanRecord(TreatmentPlanRecord treatmentPlanRecord);
List<TreatmentPlanRecord> queryTreatmentPlanRecord(String processId, String disposalPlanType);
boolean updateTreatmentPlanRecord(TreatmentPlanRecord treatmentPlanRecord);
boolean deleteTreatmentPlanRecord(String id);
boolean confirmTreatmentPlan(String processId,String status);
}