|
@@ -1,6 +1,8 @@
|
|
|
package com.zjugis.business.flow.usemoney.controller;
|
|
|
|
|
|
+import ch.qos.logback.core.rolling.helper.IntegerTokenConverter;
|
|
|
import com.zjugis.business.flow.usemoney.controller.vo.*;
|
|
|
+import com.zjugis.business.flow.usemoney.entity.UseMoneyDO;
|
|
|
import com.zjugis.business.flow.usemoney.service.UseMoneyService;
|
|
|
import com.zjugis.framework.common.pojo.CommonResult;
|
|
|
import com.zjugis.framework.common.pojo.PageResult;
|
|
@@ -124,4 +126,10 @@ public class UseMoneyController extends BaseController {
|
|
|
return CommonResult.success(url);
|
|
|
|
|
|
}
|
|
|
+ @GetMapping("/getCount")
|
|
|
+ @Operation(summary = "获取我的保证金数量")
|
|
|
+ public CommonResult<Integer> getCount(UseMoneyDO entity) {
|
|
|
+ return CommonResult.success(useMoneyService.getCount(entity));
|
|
|
+
|
|
|
+ }
|
|
|
}
|