KqProducts.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.PxcModels
  4. {
  5. public partial class KqProducts
  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 Name { get; set; }
  20. public int CountOfBox { get; set; }
  21. public int MinStock { get; set; }
  22. public int Kind { get; set; }
  23. public int NoticeMoneyUnit { get; set; }
  24. public int ReqMoneyUnit { get; set; }
  25. public string AdColId { get; set; }
  26. public decimal DefaultDeposit { get; set; }
  27. public ulong MerNameWithStar { get; set; }
  28. public ulong SingleDepositApi { get; set; }
  29. public decimal ActTradeAmount { get; set; }
  30. public decimal PosPrice { get; set; }
  31. public int MainStoreId { get; set; }
  32. public string SpProductType { get; set; }
  33. public decimal FluxProfit { get; set; }
  34. public decimal FluxAmount { get; set; }
  35. }
  36. }