1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TMoneygiftallot
- {
- public long Gid { get; set; }
- public string AcctId { get; set; }
- public int? WaitMoney { get; set; }
- public int? WaitGift { get; set; }
- public string CardNo { get; set; }
- public int? AllotMoney { get; set; }
- public byte? AllotType { get; set; }
- public byte? UploadFlag { get; set; }
- }
- }
|