StoreHouse.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsMainModels
  4. {
  5. public partial class StoreHouse
  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 ManageMobile { get; set; }
  20. public int StoreKind { get; set; }
  21. public int StoreStatus { get; set; }
  22. public string LimitTopUserId { get; set; }
  23. public string Areas { get; set; }
  24. public string Remark { get; set; }
  25. public int OutNum { get; set; }
  26. public int LaveNum { get; set; }
  27. public int TotalNum { get; set; }
  28. public int StoreType { get; set; }
  29. public string ParentNav { get; set; }
  30. public int ParentStoreId { get; set; }
  31. public string ManagerEmail { get; set; }
  32. public int ManageUserId { get; set; }
  33. public string Address { get; set; }
  34. public string ProductName { get; set; }
  35. public string BrandId { get; set; }
  36. public int UserId { get; set; }
  37. public string StoreName { get; set; }
  38. public string StoreNo { get; set; }
  39. public DateTime? AuthDate { get; set; }
  40. public ulong AuthFlag { get; set; }
  41. public int ThisMonthSendCount { get; set; }
  42. public string FilePath { get; set; }
  43. public decimal Deposit { get; set; }
  44. public int OpId { get; set; }
  45. }
  46. }