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.
22 lines
607 B
Java
22 lines
607 B
Java
package com.supervision.service;
|
|
|
|
import com.supervision.model.ConfigDrug;
|
|
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);
|
|
|
|
List<ConfigDrug> getDrugList();
|
|
|
|
}
|