Explorar el Código

fix bug

photo
winter hace 1 año
padre
commit
dfba032981
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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 Ver fichero

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

}

Cargando…
Cancelar
Guardar