SecMacModel.cs 535 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity.Dtos
  5. {
  6. public class SecMacModel
  7. {
  8. public string ID { get; set; }
  9. public string FCode { get; set; }
  10. public string FName { get; set; }
  11. public string Remark { get; set; }
  12. public string reccode { get; set; }
  13. public DateTime? rectime { get; set; }
  14. public string modcode { get; set; }
  15. public DateTime? modtime { get; set; }
  16. public string TPCode { get; set; }
  17. }
  18. }