MachineApply.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.PlateformModels
  4. {
  5. public partial class MachineApply
  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 SendSn { get; set; }
  20. public int TopUserId { get; set; }
  21. public DateTime? SendDate { get; set; }
  22. public int StoreType { get; set; }
  23. public int StoreUserId { get; set; }
  24. public string Remark { get; set; }
  25. public string StoreManagerMobile { get; set; }
  26. public string StoreManager { get; set; }
  27. public string StoreAddress { get; set; }
  28. public string StoreAreas { get; set; }
  29. public string StoreName { get; set; }
  30. public int StoreId { get; set; }
  31. public string SwapSnExpand { get; set; }
  32. public string OrderExpand { get; set; }
  33. public string SwapActProName { get; set; }
  34. public int SwapActProType { get; set; }
  35. public int DeliveryType { get; set; }
  36. public string ExpressName { get; set; }
  37. public string ExpressNo { get; set; }
  38. public int ReturnStatus { get; set; }
  39. public string ReturnOrderNo { get; set; }
  40. public int SendStatus { get; set; }
  41. public DateTime? CompleteTime { get; set; }
  42. public string AuditRemark { get; set; }
  43. public int AuditResult { get; set; }
  44. public DateTime? AuditTime { get; set; }
  45. public string AuditBy { get; set; }
  46. public DateTime? ApplyTime { get; set; }
  47. public int ApplyDeviceNum { get; set; }
  48. public string ApplyDeviceName { get; set; }
  49. public string Mobile { get; set; }
  50. public string RealName { get; set; }
  51. public string Address { get; set; }
  52. public string Areas { get; set; }
  53. public string ProductName { get; set; }
  54. public int BrandId { get; set; }
  55. public int UserId { get; set; }
  56. public string ApplyNo { get; set; }
  57. public int OperateId { get; set; }
  58. }
  59. }