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.
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Sys.Dtos;
|
|
|
|
public class DataRuleJson
|
|
{
|
|
/// <summary>
|
|
/// 角色限制条件
|
|
/// </summary>
|
|
public List<ConditionalModel> RoleCondition { get; set; }
|
|
/// <summary>
|
|
/// 查询条件
|
|
/// </summary>
|
|
public List<IConditionalModel> QueryCondition { get; set; }
|
|
} |