MachineRenew.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models
  4. {
  5. public partial class MachineRenew
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int QueryCount { get; set; }
  10. public int Status { get; set; }
  11. public int Version { get; set; }
  12. public DateTime? CreateDate { get; set; }
  13. public DateTime? UpdateDate { get; set; }
  14. public string CreateMan { get; set; }
  15. public string UpdateMan { get; set; }
  16. public string SeoTitle { get; set; }
  17. public string SeoKeyword { get; set; }
  18. public string SeoDescription { get; set; }
  19. public DateTime? AuditDate { get; set; }
  20. public string AuditDesc { get; set; }
  21. public int AuditStatus { get; set; }
  22. public string DemandDesc { get; set; }
  23. public string DeliverSnNo { get; set; }
  24. public int DeliverBrandId { get; set; }
  25. public int ReplaceSnType { get; set; }
  26. public string ReplaceSnNo { get; set; }
  27. public int ReplaceBrandId { get; set; }
  28. public int DamagedSnType { get; set; }
  29. public string DamagedSnNo { get; set; }
  30. public int DamagedBrandId { get; set; }
  31. public int UserId { get; set; }
  32. public string ApplyDate { get; set; }
  33. public string ApplyNo { get; set; }
  34. }
  35. }