- ScopeIsGlobal 类型由 bool 改为 int 以兼容前端传输 0/1 - 修复 QueryApplicationList 中 Status 投影 EF Core enum 转换失败 - 新增 Scope 字段查询支持(逗号分隔集合精确匹配) - 新增变量列表 DataType 筛选 - 修复审计日志日期查询范围(EndDate 纳入整天数据) - 统一 Application 审计日志 OperationType 前缀(APP_xxx) - 审计日志 OperationDetail 枚举值映射为中文
25 lines
869 B
C#
25 lines
869 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 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 int 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; }
|
|
}
|
|
}
|