Products.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsMainModels
  4. {
  5. public partial class Products
  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 ProductCode { get; set; }
  20. public string Title2 { get; set; }
  21. public string Title { get; set; }
  22. public ulong IsRecommend3 { get; set; }
  23. public ulong IsRecommend2 { get; set; }
  24. public int MonthSale { get; set; }
  25. public string MerchantColId { get; set; }
  26. public string NormJson { get; set; }
  27. public string LinkUrl { get; set; }
  28. public string ShareDetail { get; set; }
  29. public string NormIds { get; set; }
  30. public int MerchantClassId { get; set; }
  31. public string KeyWord { get; set; }
  32. public int LimitCount { get; set; }
  33. public int FareTemplateId { get; set; }
  34. public decimal CostPrice { get; set; }
  35. public DateTime? PublishDate { get; set; }
  36. public decimal UserIntegral { get; set; }
  37. public decimal MemberPrice { get; set; }
  38. public decimal Integral { get; set; }
  39. public decimal Price { get; set; }
  40. public decimal SourcePrice { get; set; }
  41. public ulong IsLimit { get; set; }
  42. public DateTime? EndDate { get; set; }
  43. public DateTime? StartDate { get; set; }
  44. public int MerchantId { get; set; }
  45. public ulong IsRecommend { get; set; }
  46. public decimal GoodPercent { get; set; }
  47. public int CommentCount { get; set; }
  48. public string ColId { get; set; }
  49. public string DetailPicPath { get; set; }
  50. public string ListPicPath { get; set; }
  51. public int BuyCount { get; set; }
  52. public int Stock { get; set; }
  53. public string Contents { get; set; }
  54. public string Details { get; set; }
  55. public string ProductName { get; set; }
  56. public int ProductKind { get; set; }
  57. public int BannerSort { get; set; }
  58. public string BannerPhoto { get; set; }
  59. public ulong IsBanner { get; set; }
  60. public int StartBuyCount { get; set; }
  61. }
  62. }