- ScopeIsGlobal 类型由 bool 改为 int 以兼容前端传输 0/1 - 修复 QueryApplicationList 中 Status 投影 EF Core enum 转换失败 - 新增 Scope 字段查询支持(逗号分隔集合精确匹配) - 新增变量列表 DataType 筛选 - 修复审计日志日期查询范围(EndDate 纳入整天数据) - 统一 Application 审计日志 OperationType 前缀(APP_xxx) - 审计日志 OperationDetail 枚举值映射为中文
15 lines
507 B
C#
15 lines
507 B
C#
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class RuleCondition
|
|
{
|
|
public long VariableId { get; set; }
|
|
public string Operator { get; set; }
|
|
public string ThresholdType { get; set; }
|
|
public object Value { get; set; }
|
|
public long? ThresholdVariableId { get; set; }
|
|
// 介于/不介于 的边界包含控制,默认 true
|
|
public bool IncludeLowerBound { get; set; } = true;
|
|
public bool IncludeUpperBound { get; set; } = true;
|
|
}
|
|
}
|