Sfoglia il codice sorgente

yuqian遗留提交

yuqian 7 anni fa
parent
commit
afaa53b392

+ 2 - 2
CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/tel/CallrecordsController.cs

@@ -284,11 +284,11 @@ namespace CallCenterApi.Interface.Controllers.tel
284 284
                 }
285 285
                 if (starttime.Trim() != "")
286 286
                 {
287
-                    sql += $" and  BeginTime>='{starttime}' ";
287
+                    sql += $" and  BeginTime>='{starttime} 00:00:00' ";
288 288
                 }
289 289
                 if (endtime.Trim() != "")
290 290
                 {
291
-                    sql += $" and  BeginTime<='{endtime}' ";
291
+                    sql += $" and  BeginTime<='{endtime} 23:59:59' ";
292 292
                 }
293 293
 
294 294
                 List<Model.T_Call_CallRecordsExpt> callRecordList = callRecordBLL.DataTableToListExpt(callRecordBLL.GetListExpt(sql).Tables[0]);