12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDataCourier.SpsData
- {
- public partial class TNewcarddisc
- {
- public ulong Gid { get; set; }
- public uint? DiscountNo { get; set; }
- public string Operator { get; set; }
- public DateTime? TimeBeg { get; set; }
- public DateTime? TimeEnd { get; set; }
- public uint? BegMon { get; set; }
- public uint? EndMon { get; set; }
- public uint? DiscPreVol { get; set; }
- public uint? Integral { get; set; }
- public uint? DiscPre { get; set; }
- public string ClassNo { get; set; }
- public byte? DiscType { get; set; }
- public byte? Enabled { get; set; }
- }
- }
|