13 lines
351 B
C#
13 lines
351 B
C#
namespace WX.CRM.DataSynFactory.Templates
|
|
{
|
|
public class Client_DepositReject
|
|
{
|
|
public int Id { get; set; }
|
|
public int? Status { get; set; }
|
|
public string RejectRemark { get; set; }
|
|
public int UserId { get; set; }
|
|
public string UserName { get; set; }
|
|
public int Channel { get; set; }
|
|
}
|
|
}
|