鄂尔多斯-招源科技

T_Call_CallRecordsExpt.cs 683B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. public class T_Call_CallRecordsExpt
  9. {
  10. public string callnumber { get; set; }
  11. public string calltypes { get; set; }
  12. public string callstates { get; set; }
  13. public string usercode { get; set; }
  14. public string username { get; set; }
  15. public DateTime? begintime { get; set; }
  16. public DateTime? talkstarttime { get; set; }
  17. public DateTime? talkendtime { get; set; }
  18. public DateTime? endtime { get; set; }
  19. public int talklongtime { get; set; }
  20. }
  21. }