| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- public class T_Call_CallRecordsExpt
- {
- public string callnumber { get; set; }
- public string calltypes { get; set; }
- public string callstates { get; set; }
- public string usercode { get; set; }
- public string username { get; set; }
- public DateTime? begintime { get; set; }
- public DateTime? talkstarttime { get; set; }
- public DateTime? talkendtime { get; set; }
- public DateTime? endtime { get; set; }
- public int talklongtime { get; set; }
- }
- }
|