McaVMstDto.cs 819 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity.Dtos
  5. {
  6. public class McaVMstADto
  7. {
  8. public string Name { get; set; }
  9. public string Desc { get; set; }
  10. public string FCode { get; set; }
  11. public string ErrorCode { get; set; }
  12. public DateTime? StartTime { get; set; }
  13. public DateTime? EndTime { get; set; }
  14. }
  15. public class McaEffiencyEntity
  16. {
  17. public string McaCode { get; set; }
  18. public DateTime? StartTime { get; set; }
  19. public DateTime? EndTime { get; set; }
  20. public float Minutes { get; set; }
  21. public string PCode { get; set; }
  22. public string PName { get; set; }
  23. public string MacModel { get; set; }
  24. public string MacModelName { get; set; }
  25. }
  26. }