java110
2020-08-21 b82dc768e1155831744ea228bead3464a379ff5d
java110-interface/src/main/java/com/java110/intf/fee/IFeeInnerServiceSMO.java
@@ -1,10 +1,12 @@
package com.java110.intf.fee;
import com.alibaba.fastjson.JSONArray;
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.fee.BillDto;
import com.java110.dto.fee.BillOweFeeDto;
import com.java110.dto.fee.FeeAttrDto;
import com.java110.dto.fee.FeeDto;
import com.java110.po.fee.PayFeePo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -41,7 +43,6 @@
     */
    @RequestMapping(value = "/queryBusinessFees", method = RequestMethod.POST)
    List<FeeDto> queryBusinessFees(@RequestBody FeeDto feeDto);
    /**
@@ -92,6 +93,45 @@
    @RequestMapping(value = "/queryBills", method = RequestMethod.POST)
    public List<BillDto> queryBills(@RequestBody BillDto billDto);
    /**
     * 查询账单欠费
     *
     * @param feeDto 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/computeBillOweFeeCount", method = RequestMethod.POST)
    public int computeBillOweFeeCount(@RequestBody FeeDto feeDto);
    /**
     * 查询账单欠费
     *
     * @param feeDto 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/computeEveryOweFee", method = RequestMethod.POST)
    public List<FeeDto> computeEveryOweFee(@RequestBody FeeDto feeDto);
    /**
     * 查询账单欠费
     *
     * @param feeDto 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/computeEveryOweFeeCount", method = RequestMethod.POST)
    public int computeEveryOweFeeCount(@RequestBody FeeDto feeDto);
    /**
     * 查询账单欠费
     *
     * @param feeDto 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/computeBillOweFee", method = RequestMethod.POST)
    public List<FeeDto> computeBillOweFee(@RequestBody FeeDto feeDto);
    /**
     * 查询 欠费数量
     *
@@ -117,7 +157,17 @@
     * @return
     */
    @RequestMapping(value = "/insertBillOweFees", method = RequestMethod.POST)
    public int insertBillOweFees(@RequestBody BillOweFeeDto billDto) ;
    public int insertBillOweFees(@RequestBody BillOweFeeDto billDto);
    /**
     * 保存欠费
     *
     * @param billDto
     * @return
     */
    @RequestMapping(value = "/updateBillOweFees", method = RequestMethod.POST)
    public int updateBillOweFees(@RequestBody BillOweFeeDto billDto);
    /**
     * 保存账单
     *
@@ -126,4 +176,15 @@
     */
    @RequestMapping(value = "/insertBill", method = RequestMethod.POST)
    public int insertBill(@RequestBody BillDto billDto);
    @RequestMapping(value = "/updateFee", method = RequestMethod.POST)
    public int updateFee(@RequestBody PayFeePo payFeePo);
    @RequestMapping(value = "/saveFee", method = RequestMethod.POST)
    int saveFee(@RequestBody List<PayFeePo> payFeePos);
    @RequestMapping(value = "/getAssetsFee", method = RequestMethod.POST)
    public JSONArray getAssetsFee(@RequestBody String communityId);
}