KxsShopGoodsPic.cs 483 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaProductModels
  4. {
  5. public partial class KxsShopGoodsPic
  6. {
  7. public int Id { get; set; }
  8. public string Url { get; set; }
  9. public int Sort { get; set; }
  10. public int GoodsId { get; set; }
  11. public int Version { get; set; }
  12. public int DelFlag { get; set; }
  13. public DateTime? UpdateTime { get; set; }
  14. public DateTime? CreateTime { get; set; }
  15. }
  16. }