1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.qxueyou.scc.teach.res.service;
|
| import com.qxueyou.scc.base.model.Result;
|
| public interface IResAudioService {
|
| /**
| * ÐÞ¸ÄÒôƵʱ³¤
| * @param audioId 񙮵id
| * @param duration ʱ³¤
| * @return Ö÷¼ü
| */
| Result updateDuration(String audioId,int duration);
|
| }
|
|