BrokenMachineChange.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Main
  4. {
  5. public partial class BrokenMachineChange
  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 string OutStoreManagerMobile { get; set; }
  20. public string OutStoreManager { get; set; }
  21. public string OutStoreAddress { get; set; }
  22. public string OutStoreAreas { get; set; }
  23. public string OutStoreName { get; set; }
  24. public int OutStoreId { get; set; }
  25. public string OutProductName { get; set; }
  26. public int OutProductType { get; set; }
  27. public int BackStoreUserId { get; set; }
  28. public string Remark { get; set; }
  29. public string BackStoreName { get; set; }
  30. public int BackStoreId { get; set; }
  31. public string ChangeSnExpand { get; set; }
  32. public string OrderExpand { get; set; }
  33. public DateTime? CompleteTime { get; set; }
  34. public string AuditRemark { get; set; }
  35. public int AuditResult { get; set; }
  36. public DateTime? AuditTime { get; set; }
  37. public string AuditBy { get; set; }
  38. public DateTime? ChangeTime { get; set; }
  39. public int ChangeDeviceNum { get; set; }
  40. public string ChangeDeviceName { get; set; }
  41. public string BackProductName { get; set; }
  42. public int BackProductType { get; set; }
  43. public int UserId { get; set; }
  44. public string ChangeNo { get; set; }
  45. }
  46. }