old mode 100644
new mode 100755
| | |
| | | @RequestMapping(value = "/saveFee", method = RequestMethod.POST) |
| | | int saveFee(@RequestBody List<PayFeePo> payFeePos); |
| | | |
| | | @RequestMapping(value = "/saveOneFee", method = RequestMethod.POST) |
| | | int saveOneFee(@RequestBody PayFeePo payFeePo); |
| | | |
| | | |
| | | @RequestMapping(value = "/getAssetsFee", method = RequestMethod.POST) |
| | | public JSONArray getAssetsFee(@RequestBody String communityId); |
| | | |
| | | /** |
| | | * 根据批次删除费用 |
| | | * |
| | | * @param payFeePo |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/deleteFeesByBatch", method = RequestMethod.POST) |
| | | int deleteFeesByBatch(@RequestBody PayFeePo payFeePo); |
| | | |
| | | int getFeeInfoBus(FeeDto feeDto); |
| | | |
| | | /** |
| | | * 根据费用配置id查询有效的费用关联 |
| | | */ |
| | | @RequestMapping(value = "/countValidPayFeeByConfigId", method = RequestMethod.POST) |
| | | int countValidPayFeeByConfigId(@RequestBody String configId); |
| | | } |