StoreSwapSn.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MainModels2
  4. {
  5. public partial class StoreSwapSn
  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 Remark { get; set; }
  20. public DateTime? SwapApplyDate { get; set; }
  21. public string SwapApplyOrderNo { get; set; }
  22. public string SwapSnNo { get; set; }
  23. public string SwapExtProductTypes { get; set; }
  24. public int RiskStatus { get; set; }
  25. public int BizStatus { get; set; }
  26. public int SwapStatus { get; set; }
  27. public string PosType { get; set; }
  28. public int SnStoreId { get; set; }
  29. public string ActTypeDesc { get; set; }
  30. public int ActType { get; set; }
  31. public DateTime? StandardDate { get; set; }
  32. public int SnType { get; set; }
  33. public string SnNo { get; set; }
  34. public int BrandId { get; set; }
  35. public int UserId { get; set; }
  36. }
  37. }