| | |
| | | */ |
| | | @RequestMapping(value = "/queryOwnersCommitteeConvention", method = RequestMethod.GET) |
| | | public ResponseEntity<String> queryOwnersCommitteeConvention( |
| | | @RequestParam(value = "mpId") Long mpId, |
| | | @RequestParam(value = "mpId") String mpId, |
| | | @RequestParam(value = "page", defaultValue = "1") int page, |
| | | @RequestParam(value = "row", defaultValue = "10") int row, |
| | | @RequestParam(value = "id", required = false) String id, |
| | |
| | | * @path /app/ownersCommitteeConvention/getOwnersCommitteeConventionByMpId |
| | | */ |
| | | @RequestMapping(value = "/getOwnersCommitteeConventionByMpId", method = RequestMethod.GET) |
| | | public ResponseEntity<String> getOwnersCommitteeConventionByMpId(@RequestParam(value = "mpId") Long mpId) { |
| | | public ResponseEntity<String> getOwnersCommitteeConventionByMpId(@RequestParam(value = "mpId") String mpId) { |
| | | Assert.notNull(mpId, "业务唯一标识mpId不能为空"); |
| | | |
| | | OwnersCommitteeConventionPo queryPo = new OwnersCommitteeConventionPo(); |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryOwnersCommitteeConventionStatistics", method = RequestMethod.GET) |
| | | public ResponseEntity<String> queryOwnersCommitteeConventionStatistics( |
| | | @RequestParam(value = "mpId", required = false) Long mpId, |
| | | @RequestParam(value = "mpId", required = false) String mpId, |
| | | @RequestParam(value = "ownersCommitteeResolution", required = false) String ownersCommitteeResolution, |
| | | @RequestParam(value = "startCreateTime", required = false) String startCreateTime, |
| | | @RequestParam(value = "endCreateTime", required = false) String endCreateTime) { |