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