java110
2021-01-16 6a1a938712b321dc8c00d61dfcfa765b28fbb6a9
service-fee/src/main/java/com/java110/fee/api/PayFeeConfigDiscountApi.java
@@ -42,6 +42,8 @@
        Assert.hasKeyAndValue(reqJson, "configId", "请求报文中未包含configId");
        Assert.hasKeyAndValue(reqJson, "discountId", "请求报文中未包含discountId");
        Assert.hasKeyAndValue(reqJson, "communityId", "请求报文中未包含communityId");
        Assert.hasKeyAndValue(reqJson, "startTime", "请求报文中未包含startTime");
        Assert.hasKeyAndValue(reqJson, "endTime", "请求报文中未包含endTime");
        PayFeeConfigDiscountPo payFeeConfigDiscountPo = BeanConvertUtil.covertBean(reqJson, PayFeeConfigDiscountPo.class);
@@ -98,11 +100,13 @@
     */
    @RequestMapping(value = "/queryPayFeeConfigDiscount", method = RequestMethod.GET)
    public ResponseEntity<String> queryPayFeeConfigDiscount(@RequestParam(value = "communityId") String communityId,
                                                            @RequestParam(value = "configId", required = false) String configId,
                                                            @RequestParam(value = "page") int page,
                                                            @RequestParam(value = "row") int row) {
        PayFeeConfigDiscountDto payFeeConfigDiscountDto = new PayFeeConfigDiscountDto();
        payFeeConfigDiscountDto.setPage(page);
        payFeeConfigDiscountDto.setRow(row);
        payFeeConfigDiscountDto.setConfigId(configId);
        payFeeConfigDiscountDto.setCommunityId(communityId);
        return getPayFeeConfigDiscountBMOImpl.get(payFeeConfigDiscountDto);
    }