12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- public class McaVMstADto
- {
- public string Name { get; set; }
- public string Desc { get; set; }
- public string FCode { get; set; }
- public string ErrorCode { get; set; }
- public DateTime? StartTime { get; set; }
- public DateTime? EndTime { get; set; }
- }
- public class McaEffiencyEntity
- {
- public string McaCode { get; set; }
- public DateTime? StartTime { get; set; }
- public DateTime? EndTime { get; set; }
- public float Minutes { get; set; }
- public string PCode { get; set; }
- public string PName { get; set; }
- public string MacModel { get; set; }
- public string MacModelName { get; set; }
- }
- }
|