|
|
using System;
|
|
namespace Model
|
{
|
public class GwClientPayLog
|
{
|
public int PayLogID { get; set; }
|
|
public string SPID { get; set; }
|
|
public DateTime CrateTime { get; set; }
|
|
public DateTime ComppLeteTime { get; set; }
|
|
public string ClientID { get; set; }
|
|
public string ReceiverName { get; set; }
|
|
public int Amount { get; set; }
|
|
public long Balance { get; set; }
|
|
public long Price { get; set; }
|
|
public int PayMentID { get; set; }
|
|
public string PayMentName { get; set; }
|
|
public int State { get; set; }
|
|
public string Remark { get; set; }
|
}
|
}
|