ソースを参照

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();
}

}

読み込み中…
キャンセル
保存