UEGoodsInfo.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using MathNet.Numerics.LinearAlgebra.Factorization;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace JiaZhiQuan.Common.Models.VO.UE {
  5. public class UEGoodsInfo {
  6. public long goodsId { get; set; }
  7. public int catId { get; set; }
  8. public string catNamePath { get; set; }
  9. public long userId { get; set; }
  10. public int platformSkuId { get; set; }
  11. public string specIds { get; set; }
  12. public string specValuesIds { get; set; }
  13. public string skuName { get; set; }
  14. public string goodsName { get; set; }
  15. public long? goodsNo { get; set; }
  16. public int state { get; set; }
  17. public int tradeState { get; set; }//交易状态(0:未交易,1:交易中)
  18. public int auditState { get; set; }
  19. public int isDelete { get; set; }
  20. public int source { get; set; }
  21. public string skuImg { get; set; }
  22. public string brief { get; set; }
  23. public string platformBrief { get; set; }
  24. public int salePrice { get; set; }
  25. public int postPrice { get; set; }
  26. public DateTime? shelveAt { get; set; }
  27. public DateTime? noShelveAt { get; set; }
  28. public DateTime? pubAt { get; set; }
  29. public int? depositFee { get; set; }
  30. public int? newPrice { get; set; }
  31. public int? netPrice { get; set; }//到手价
  32. public int? serviceFee { get; set; }//服务费
  33. public int serviceTempId { get; set; }//服务费模板id
  34. public int pointsPlanPrice { get; set; }
  35. public int pointsPlanId { get; set; }
  36. public int photoPlanId { get; set; }
  37. public int pickDepositId { get; set; }
  38. public decimal rating { get; set; }
  39. //成色(1,已验8成新,2,已验85新,3,已验9成新,4,已验95新,5已验99新,6已验全新)
  40. public int quality { get; set; }
  41. public string goodsImgUrl { get; set; }
  42. //邮费配置id
  43. public int postConfId { get; set; }
  44. //仓储费配置id
  45. public int storageConfId { get; set; }
  46. //0待计算 1已计算
  47. public int CalRatingState { get; set; }
  48. public DateTime? createAt { get; set; }
  49. public DateTime? updateAt { get; set; }
  50. }
  51. }