StoreStockChange.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsMainModels
  4. {
  5. public partial class StoreStockChange
  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 BrandType { get; set; }
  20. public string ExpressNo { get; set; }
  21. public int SourceStoreId { get; set; }
  22. public string ToRemark { get; set; }
  23. public DateTime? ToDate { get; set; }
  24. public int ToStoreId { get; set; }
  25. public int ToUserId { get; set; }
  26. public string FromRemark { get; set; }
  27. public DateTime? FromDate { get; set; }
  28. public int FromUserId { get; set; }
  29. public string DeviceType { get; set; }
  30. public string DeviceModel { get; set; }
  31. public string DeviceVendor { get; set; }
  32. public int ActRewardUserId { get; set; }
  33. public int ActiveStatus { get; set; }
  34. public int BindMerchant { get; set; }
  35. public int BindStatus { get; set; }
  36. public int SnStatus { get; set; }
  37. public int StockOpDirect { get; set; }
  38. public int SnType { get; set; }
  39. public string SnNo { get; set; }
  40. public int TransType { get; set; }
  41. public string BizBatchNo { get; set; }
  42. public string ChangeNo { get; set; }
  43. public string ProductName { get; set; }
  44. public int BrandId { get; set; }
  45. public int StoreId { get; set; }
  46. public int OpId { get; set; }
  47. }
  48. }