TMoneyshiftcheck.cs 410 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TMoneyshiftcheck
  6. {
  7. public long Gid { get; set; }
  8. public int? TotalMoney { get; set; }
  9. public int? DisctMoney { get; set; }
  10. public int? FuelCash { get; set; }
  11. public int? RealCash { get; set; }
  12. public int? Margin { get; set; }
  13. }
  14. }