BasFaultMd.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Client.Model.AppModels.Result.Base
  6. {
  7. public class BasFaultMd
  8. {
  9. public int FAULT_ID { get; set; }
  10. public string NEWID { get; set; }
  11. public string FAULT_CODE { get; set; }
  12. public string FAULT_NAME { get; set; }
  13. public string DEV_TYPE_CODE { get; set; }
  14. public string DESCRIBE { get; set; }
  15. public int USED_FLAG { get; set; }
  16. public int DEL_FLAG { get; set; }
  17. public int CREATE_BY { get; set; }
  18. public string CreateCode { get; set; }
  19. public string CreateName { get; set; }
  20. public DateTime CREATE_TIME { get; set; }
  21. public int UPDATE_BY { get; set; }
  22. public string UpdateCode { get; set; }
  23. public string UpdateName { get; set; }
  24. public DateTime UPDATE_TIME { get; set; }
  25. public int DATA_VERSION { get; set; }
  26. public string REMARKS1 { get; set; }
  27. public string REMARKS2 { get; set; }
  28. public string REMARKS3 { get; set; }
  29. public string REMARKS4 { get; set; }
  30. public string REMARKS5 { get; set; }
  31. }
  32. }