PreSendStockDetail.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models
  4. {
  5. public partial class PreSendStockDetail
  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 ReceivingStatus { get; set; }
  12. public int IsUsed { get; set; }
  13. public DateTime? CreateDate { get; set; }
  14. public DateTime? UpdateDate { get; set; }
  15. public string SeoTitle { get; set; }
  16. public string SeoKeyword { get; set; }
  17. public string SeoDescription { get; set; }
  18. public DateTime? CancelDate { get; set; }
  19. public ulong CancelFlag { get; set; }
  20. public int FromStoreId { get; set; }
  21. public int FromUserId { get; set; }
  22. public DateTime? ApplyDate { get; set; }
  23. public ulong ApplyFlag { get; set; }
  24. public int SourceStoreId { get; set; }
  25. public string ToRemark { get; set; }
  26. public int ToStoreId { get; set; }
  27. public int ToUserId { get; set; }
  28. public int SnId { get; set; }
  29. public string SnNo { get; set; }
  30. public int BrandId { get; set; }
  31. public int StoreId { get; set; }
  32. }
  33. }