|
|
@@ -20,7 +20,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
20
|
20
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
21
|
21
|
import org.springframework.web.bind.annotation.RestController;
|
|
22
|
22
|
|
|
23
|
|
-import java.util.List;
|
|
24
|
23
|
import java.util.Map;
|
|
25
|
24
|
|
|
26
|
25
|
/**
|
|
|
@@ -62,6 +61,7 @@ public class RiskManagementController {
|
|
62
|
61
|
queryMap.put("endDate", ParameterUtil.string2datetime(endDate));
|
|
63
|
62
|
}
|
|
64
|
63
|
queryMap.put("orgId", orgId);
|
|
|
64
|
+ log.info("startDate是:" + ParameterUtil.string2datetime(startDate).toString());
|
|
65
|
65
|
return ResponseEntity.ok(new PageInfo<>(riskManagementService.selectListPage(queryMap)));
|
|
66
|
66
|
}
|
|
67
|
67
|
|