28 lines
1011 B
C#
28 lines
1011 B
C#
using System;
|
|
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class RiskApplicationDetail
|
|
{
|
|
public long Id { get; set; }
|
|
public string RuleIds { get; set; }
|
|
public string RuleName { get; set; }
|
|
public string ConditionJson { get; set; }
|
|
public string RuleNames { 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; }
|
|
}
|
|
}
|