25 lines
872 B
C#
25 lines
872 B
C#
using System;
|
|
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class RiskApplicationListItem
|
|
{
|
|
public long Id { get; set; }
|
|
public string RuleIds { get; set; }
|
|
public RiskRuleStatus Status { get; set; }
|
|
public RiskControlStrategy ControlStrategy { get; set; }
|
|
public string TriggerPoints { get; set; }
|
|
public string ScopeAssetBookIds { get; set; }
|
|
public string ScopeClientIds { get; set; }
|
|
public string ScopeUnderlyingTypes { get; set; }
|
|
public string ScopeTradeTypes { get; set; }
|
|
public bool ScopeIsGlobal { get; set; }
|
|
public int Version { get; set; }
|
|
public string OptName { get; set; }
|
|
public DateTime OptDate { get; set; }
|
|
public string UpdateOptName { get; set; }
|
|
public DateTime UpdateDate { get; set; }
|
|
}
|
|
}
|