|
|
@@ -126,7 +126,14 @@ namespace CallCenterApi.Interface.Controllers.tel
|
|
126
|
126
|
|
|
127
|
127
|
return Content(obj.ToJson());
|
|
128
|
128
|
}
|
|
129
|
|
- public ActionResult Sound(string phone, string usercode)
|
|
|
129
|
+
|
|
|
130
|
+ /// <summary>
|
|
|
131
|
+ /// 批量下载录音文件 - 调用接口
|
|
|
132
|
+ /// </summary>
|
|
|
133
|
+ /// <param name="phone"></param>
|
|
|
134
|
+ /// <param name="usercode"></param>
|
|
|
135
|
+ /// <returns></returns>
|
|
|
136
|
+ public ActionResult Sound(string phone, string usercode)
|
|
130
|
137
|
{
|
|
131
|
138
|
string sql = "";
|
|
132
|
139
|
string callstate = HttpUtility.UrlDecode(RequestString.GetQueryString("callstate"));
|
|
|
@@ -184,11 +191,14 @@ namespace CallCenterApi.Interface.Controllers.tel
|
|
184
|
191
|
};
|
|
185
|
192
|
return Content(obj.ToJson());
|
|
186
|
193
|
}
|
|
|
194
|
+
|
|
187
|
195
|
/// <summary>
|
|
188
|
|
- /// 导出录音文件
|
|
|
196
|
+ /// 批量下载录音文件
|
|
189
|
197
|
/// </summary>
|
|
|
198
|
+ /// <param name="filePath"></param>
|
|
|
199
|
+ /// <param name="phone"></param>
|
|
|
200
|
+ /// <param name="usercode"></param>
|
|
190
|
201
|
/// <returns></returns>
|
|
191
|
|
-
|
|
192
|
202
|
public ActionResult ExitSound(string filePath, string phone, string usercode)
|
|
193
|
203
|
{
|
|
194
|
204
|
// string filePath = Configs.GetValue("Sound_recording");
|