PosCouponOrders.cs 1.0 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.KxsMain
  4. {
  5. public partial class PosCouponOrders
  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 ChangeKind { get; set; }
  17. public int ChangeCount { get; set; }
  18. public int AfterOut { get; set; }
  19. public int AfterTotal { get; set; }
  20. public int AfterStock { get; set; }
  21. public int BeforeOut { get; set; }
  22. public int BeforeTotal { get; set; }
  23. public int BeforeStock { get; set; }
  24. public string OrderNo { get; set; }
  25. public int ToUserId { get; set; }
  26. public int FromUserId { get; set; }
  27. }
  28. }