chengf
2026-03-11 b88a288f4f787b509463678e3cd9ccfa3f37014b
service-fee/src/main/java/com/java110/fee/api/OwnersCommitteeConventionApi.java
@@ -187,7 +187,7 @@
     */
    @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,
@@ -272,7 +272,7 @@
     * @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();
@@ -303,7 +303,7 @@
     */
    @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) {