KxsBrand.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaProductModels
  4. {
  5. public partial class KxsBrand
  6. {
  7. public int Id { get; set; }
  8. public int CountOfBox { get; set; }
  9. public decimal PosPrice { get; set; }
  10. public decimal DefaultPledge { get; set; }
  11. public decimal ActAmount { get; set; }
  12. public decimal FluxProfit { get; set; }
  13. public decimal FluxAmount { get; set; }
  14. public int Sort { get; set; }
  15. public int BrandType { get; set; }
  16. public string Cover { get; set; }
  17. public string LinkUrl { get; set; }
  18. public string Name { get; set; }
  19. public int Version { get; set; }
  20. public int DelFlag { get; set; }
  21. public DateTime? UpdateTime { get; set; }
  22. public DateTime? CreateTime { get; set; }
  23. public int ExchangeFlag { get; set; }
  24. public string LabelText { get; set; }
  25. public string ExchangeType { get; set; }
  26. public int DisplayFlag { get; set; }
  27. public int RatioFlag { get; set; }
  28. public int MerchantFlag { get; set; }
  29. public string MerchantDisplay { get; set; }
  30. public int AdvanceFlag { get; set; }
  31. public int ReplenishFlag { get; set; }
  32. public int TotalMethod { get; set; }
  33. public decimal ActPrice { get; set; }
  34. public int ReplenishNum { get; set; }
  35. public string BrandDetail { get; set; }
  36. public int PledgeStatus { get; set; }
  37. public int PledgeDisplay { get; set; }
  38. public string BindRange { get; set; }
  39. public int PledgeType { get; set; }
  40. public string ManyPledge { get; set; }
  41. public int ProfitStatus { get; set; }
  42. public int Status { get; set; }
  43. public string UpdateBy { get; set; }
  44. public decimal NonActAmount { get; set; }
  45. }
  46. }