KxsShopGoods.cs 974 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaProductModels
  4. {
  5. public partial class KxsShopGoods
  6. {
  7. public int Id { get; set; }
  8. public string SpecList { get; set; }
  9. public int Sort { get; set; }
  10. public DateTime? DownTime { get; set; }
  11. public DateTime? UpTime { get; set; }
  12. public int GoodsType { get; set; }
  13. public int StartByCount { get; set; }
  14. public int LimitCount { get; set; }
  15. public string ColId { get; set; }
  16. public int Status { get; set; }
  17. public string Details { get; set; }
  18. public string Subtitle { get; set; }
  19. public decimal Price { get; set; }
  20. public string GoodsName { get; set; }
  21. public string PicUrl { get; set; }
  22. public int Version { get; set; }
  23. public int DelFlag { get; set; }
  24. public DateTime? UpdateTime { get; set; }
  25. public DateTime? CreateTime { get; set; }
  26. }
  27. }