MerchantInfo.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MainModels
  4. {
  5. public partial class MerchantInfo
  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 ParentUserNav { get; set; }
  20. public int UserId { get; set; }
  21. public DateTime? LastConsumeDate { get; set; }
  22. public int TotalConsumeCount { get; set; }
  23. public DateTime? LastAddConsumerDate { get; set; }
  24. public decimal TotalActual { get; set; }
  25. public string Logo { get; set; }
  26. public string LoginPwd { get; set; }
  27. public int TotalUser { get; set; }
  28. public int TotalCustomer { get; set; }
  29. public int TotalOrder { get; set; }
  30. public decimal TotalAmount { get; set; }
  31. public ulong IsAuth { get; set; }
  32. public string Address { get; set; }
  33. public string Areas { get; set; }
  34. public string Mobile { get; set; }
  35. public string Name { get; set; }
  36. public DateTime? BindDate { get; set; }
  37. public int BindStatus { get; set; }
  38. public DateTime? ActivationDate { get; set; }
  39. public int ActivationStatus { get; set; }
  40. public decimal TotalActActual { get; set; }
  41. public decimal TotalActAmount { get; set; }
  42. public int ActStat { get; set; }
  43. public DateTime? SignDate { get; set; }
  44. public decimal AllocationAmount { get; set; }
  45. public decimal ActMaxAmount { get; set; }
  46. public decimal ActCurrentAmount { get; set; }
  47. public int IsAct { get; set; }
  48. public int ExamineStatus { get; set; }
  49. public int Months { get; set; }
  50. public DateTime? EndTime { get; set; }
  51. public DateTime? StartTime { get; set; }
  52. public string BusinessHours { get; set; }
  53. public string BriefIntroduction { get; set; }
  54. public int Popularity { get; set; }
  55. public decimal Latitude { get; set; }
  56. public decimal Longitude { get; set; }
  57. }
  58. }