KxsMachineRatio.cs 881 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaProductModels
  4. {
  5. public partial class KxsMachineRatio
  6. {
  7. public int Id { get; set; }
  8. public int MachineId { get; set; }
  9. public int Status { get; set; }
  10. public int MerchantId { get; set; }
  11. public string Result { get; set; }
  12. public int BrandId { get; set; }
  13. public string CreateBy { get; set; }
  14. public string Remark { get; set; }
  15. public decimal Ratio { get; set; }
  16. public string PosSn { get; set; }
  17. public int UserId { get; set; }
  18. public int Version { get; set; }
  19. public int DelFlag { get; set; }
  20. public DateTime? UpdateTime { get; set; }
  21. public DateTime? CreateTime { get; set; }
  22. public int? PosUserId { get; set; }
  23. public decimal BeforeRatio { get; set; }
  24. }
  25. }