Consumers.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MpMainModels2
  4. {
  5. public partial class Consumers
  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 WechatOpenId { get; set; }
  20. public ulong CardFlag { get; set; }
  21. public ulong AlipayFlag { get; set; }
  22. public ulong WeChatPayFlag { get; set; }
  23. public DateTime? LastConsumDate { get; set; }
  24. public int TotalConsumCount { get; set; }
  25. public decimal TotalAmount { get; set; }
  26. public string AlipayUserId { get; set; }
  27. public string WechatUnionid { get; set; }
  28. public int CurIntgegral { get; set; }
  29. public int TotalIntegral { get; set; }
  30. public decimal TotalDividend { get; set; }
  31. public string Mobile { get; set; }
  32. public string HeadPhoto { get; set; }
  33. public string NickName { get; set; }
  34. }
  35. }