|
@@ -83,10 +83,7 @@ public class LeaveHosCountByDeptAggregate {
|
|
|
*/
|
|
|
@DataProvider("leaveHosCountByDept")
|
|
|
public List<NumDTO> leaveHosCountByDept(@InvokeParameter("filterVO") FilterVO filterVO) {
|
|
|
- long L1 = System.currentTimeMillis();
|
|
|
List<NumDTO> numDTOS = behospitalInfoFacade.leaveHosCountByDept(filterVO);
|
|
|
- long L2 = System.currentTimeMillis();
|
|
|
- System.out.println("出院总人数 = " + (L2-L1));
|
|
|
return numDTOS;
|
|
|
}
|
|
|
|
|
@@ -98,10 +95,7 @@ public class LeaveHosCountByDeptAggregate {
|
|
|
*/
|
|
|
@DataProvider("deathCountByDept")
|
|
|
public List<NumDTO> deathCountByDept(@InvokeParameter("filterVO") FilterVO filterVO) {
|
|
|
- long L1 = System.currentTimeMillis();
|
|
|
List<NumDTO> numDTOS = behospitalInfoFacade.deathCountByDept(filterVO);
|
|
|
- long L2 = System.currentTimeMillis();
|
|
|
- System.out.println("死亡人数 = " + (L2-L1));
|
|
|
return numDTOS;
|
|
|
|
|
|
}
|
|
@@ -114,10 +108,7 @@ public class LeaveHosCountByDeptAggregate {
|
|
|
*/
|
|
|
@DataProvider("operationCountByDept")
|
|
|
public List<NumDTO> operationCountByDept(@InvokeParameter("filterVO") FilterVO filterVO) {
|
|
|
- long L1 = System.currentTimeMillis();
|
|
|
List<NumDTO> numDTOS = behospitalInfoFacade.operationCountByDept(filterVO);
|
|
|
- long L2 = System.currentTimeMillis();
|
|
|
- System.out.println("手术人数 = " + (L2-L1));
|
|
|
return numDTOS;
|
|
|
}
|
|
|
|