RecycMachineOrder.cs 948 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MainModels
  4. {
  5. public partial class RecycMachineOrder
  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 DateTime? CreateDate { get; set; }
  12. public DateTime? UpdateDate { get; set; }
  13. public string SeoTitle { get; set; }
  14. public string SeoKeyword { get; set; }
  15. public string SeoDescription { get; set; }
  16. public int BrandId { get; set; }
  17. public string RecycOrderNo { get; set; }
  18. public DateTime? CancelDate { get; set; }
  19. public DateTime? ResultDate { get; set; }
  20. public string ErpCode { get; set; }
  21. public string ErpName { get; set; }
  22. public int PostType { get; set; }
  23. public int RecycStoreId { get; set; }
  24. public int UserId { get; set; }
  25. }
  26. }