TNewcarddisc.cs 726 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TNewcarddisc
  6. {
  7. public ulong Gid { get; set; }
  8. public uint? DiscountNo { get; set; }
  9. public string Operator { get; set; }
  10. public DateTime? TimeBeg { get; set; }
  11. public DateTime? TimeEnd { get; set; }
  12. public uint? BegMon { get; set; }
  13. public uint? EndMon { get; set; }
  14. public uint? DiscPreVol { get; set; }
  15. public uint? Integral { get; set; }
  16. public uint? DiscPre { get; set; }
  17. public string ClassNo { get; set; }
  18. public byte? DiscType { get; set; }
  19. public byte? Enabled { get; set; }
  20. }
  21. }