30 lines
775 B
C#
30 lines
775 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
public class TradeRiskCheckLogExportModel
|
|
{
|
|
public string create_time { get; set; }
|
|
public string trader { get; set; }
|
|
public string trial_result { get; set; }
|
|
public string risk_warning { get; set; }
|
|
public string limit_warning { get; set; }
|
|
public string remark { get; set; }
|
|
public string trade_number { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户编号
|
|
/// </summary>
|
|
public string client_number { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
public string client_name { get; set; }
|
|
}
|
|
}
|