- ScopeIsGlobal 类型由 bool 改为 int 以兼容前端传输 0/1 - 修复 QueryApplicationList 中 Status 投影 EF Core enum 转换失败 - 新增 Scope 字段查询支持(逗号分隔集合精确匹配) - 新增变量列表 DataType 筛选 - 修复审计日志日期查询范围(EndDate 纳入整天数据) - 统一 Application 审计日志 OperationType 前缀(APP_xxx) - 审计日志 OperationDetail 枚举值映射为中文
18 lines
571 B
C#
18 lines
571 B
C#
using BaseOUDAL;
|
|
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class QueryRiskApplicationReq : BaseSearchReq
|
|
{
|
|
public string RuleName { get; set; }
|
|
public RiskRuleStatus? Status { get; set; }
|
|
public RiskControlStrategy? Strategy { get; set; }
|
|
public string TriggerPoint { get; set; }
|
|
public string ScopeClientIds { get; set; }
|
|
public string ScopeUnderlyingTypes { get; set; }
|
|
public string ScopeTradeTypes { get; set; }
|
|
public string ScopeAssetBookIds { get; set; }
|
|
}
|
|
}
|