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.
16 lines
461 B
Java
16 lines
461 B
Java
1 year ago
|
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);
|
||
|
}
|