UserCardForWeChat.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MainModels2
  4. {
  5. public partial class UserCardForWeChat
  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 int MerchantId { get; set; }
  20. public string CardId { get; set; }
  21. public string EnterUrl { get; set; }
  22. public string EnterTips { get; set; }
  23. public string EnterName { get; set; }
  24. public ulong SupplyBalance { get; set; }
  25. public ulong SupplyBonus { get; set; }
  26. public string Prerogative { get; set; }
  27. public string Sku { get; set; }
  28. public string DateType { get; set; }
  29. public int Quantity { get; set; }
  30. public string Description { get; set; }
  31. public string Notice { get; set; }
  32. public string Color { get; set; }
  33. public string Title { get; set; }
  34. public string BrandName { get; set; }
  35. public string CodeType { get; set; }
  36. public string LogoUrl { get; set; }
  37. public string CardType { get; set; }
  38. }
  39. }