You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
327 B
C#

12 months ago
using SqlSugar;
namespace DS.WMS.Core.Sys.Dtos;
12 months ago
public class DataRuleJson
{
/// <summary>
/// 角色限制条件
/// </summary>
public List<ConditionalModel> RoleCondition { get; set; }
/// <summary>
/// 查询条件
/// </summary>
public List<IConditionalModel> QueryCondition { get; set; }
}