소스 검색

fix bug

photo
winter 1 년 전
부모
커밋
dfba032981
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      open-api/src/main/java/com/iformall/controller/ApiServiceInfoController.java

+ 2
- 1
open-api/src/main/java/com/iformall/controller/ApiServiceInfoController.java 파일 보기

@@ -49,7 +49,8 @@ public class ApiServiceInfoController extends BaseController {
public ResultData currentVideoTotals(PageServiceVideoRecordDTO dto) {
ServiceVideoRecord svr = new ServiceVideoRecord();
svr.setServiceId(getServiceId());
return new ResultData(serviceVideoRecordService.totalTimes(svr));
Float times = serviceVideoRecordService.totalTimes(svr);
return new ResultData();
}

}

불러오는 중...
취소
저장