12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TIntegtrdinfo
- {
- public long Gid { get; set; }
- public int? Sno { get; set; }
- public int? ShiftNo { get; set; }
- public byte? Posid { get; set; }
- public string EmpCardNo { get; set; }
- public string CardNo { get; set; }
- public string CommId { get; set; }
- public int? Prc { get; set; }
- public int? Vol { get; set; }
- public int? RealMon { get; set; }
- public DateTime Ttctime { get; set; }
- public DateTime? TtctimeEnd { get; set; }
- public int Ttc { get; set; }
- public int? NozNo { get; set; }
- public int? Integral { get; set; }
- public byte? UploadFlag { get; set; }
- }
- }
|