using BaseOUDAL; using YLErp.DBModels; namespace YLErp.Modules.RiskEngine.Dto { public class QueryRiskRuleReq : BaseSearchReq { public string Keyword { get; set; } public RiskRuleStatus? Status { get; set; } public long? VariableId { get; set; } } }