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
307 B
Java
16 lines
307 B
Java
package com.supervision.service;
|
|
|
|
import com.supervision.model.Process;
|
|
import com.supervision.model.User;
|
|
|
|
import java.util.List;
|
|
|
|
public interface AskProcessService {
|
|
|
|
Process creatDiagnosisProcess(String patientId,String medicalId, User user);
|
|
|
|
List<Process> queryUserProcess(String userId);
|
|
|
|
|
|
}
|