TNewcarddisc.cs 716 B

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