PlatformSKUInfo.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using MathNet.Numerics.LinearAlgebra.Factorization;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace JiaZhiQuan.Common.Models.VO.UE {
  5. public class PlatformSKUInfo {
  6. public int platformSkuId { get; set; }
  7. public string skuName { get; set; }
  8. public string specIds { get; set; }
  9. public string specValuesIds { get; set; }
  10. public string specJson { get; set; }
  11. //是否可寄售
  12. public int canPost { get; set; }
  13. //商城上架数
  14. public int goodsUpCnt { get; set; }
  15. public string catNamePath { get; set; }
  16. public int? catId { get; set; }
  17. public int? almostNewPriceLow { get; set; }
  18. public int? lightWearPriceLow { get; set; }
  19. public int? obviousMarksPriceLow { get; set; }
  20. public int? heavyWearPriceLow { get; set; }
  21. public int? almostNewPriceUp { get; set; }
  22. public int? lightWearPriceUp { get; set; }
  23. public int? obviousMarksPriceUp { get; set; }
  24. public int? heavyWearPriceUp { get; set; }
  25. public int? newPrice { get; set; }
  26. public int state { get; set; }
  27. public string imgUrl { get; set; }
  28. public DateTime? createAt { get; set; }
  29. public DateTime? updateAt { get; set; }
  30. //是否可挂售
  31. public int canPub { get; set; }
  32. public int? almostNewNetPriceLow { get; set; }
  33. public int? almostNewNetPriceUp { get; set; }
  34. public int? lightWearNetPriceLow { get; set; }
  35. public int? lightWearNetPriceUp { get; set; }
  36. public int? obviousMarksNetPriceLow { get; set; }
  37. public int? obviousMarksNetPriceUp { get; set; }
  38. public int? heavyWearNetPriceLow { get; set; }
  39. public int? heavyWearNetPriceUp { get; set; }
  40. }
  41. }