|
@@ -33,11 +33,7 @@ import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Comparator;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
+import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
@Slf4j
|
|
@@ -279,7 +275,10 @@ public class ZyReqController {
|
|
|
mzZyReq.setDeptCode(employee.getDeptCode());
|
|
|
}
|
|
|
mzZyReq.setDoctorCode(user.getUserIdCode());
|
|
|
+ Date visitDate = new Date();
|
|
|
+ mzZyReq.setVisitDate(visitDate);
|
|
|
mzZyReqService.banLiZyReq(mzZyReq,mzPatientMi);
|
|
|
- return R.ok("成功");
|
|
|
+ return R.ok().put("data", visitDate);
|
|
|
+
|
|
|
}
|
|
|
}
|