using System; namespace Model { public class GwChargeLog { public int ChargeID { get; set; } public string SpID { get; set; } public DateTime OccurTime { get; set; } public long Amount { get; set; } public string OperatorID { get; set; } public int Flag { get; set; } public DateTime FlushTime { get; set; } public string Remark { get; set; } public int PayMentType { get; set; } public int PayLogID { get; set; } public string ClientID { get; set; } public string ClientName { get; set; } } }