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.

19 lines
361 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Admin.Core.Model.Sys;
namespace Admin.Core.Model
{
/// <summary>
/// 角色查询
/// </summary>
public class RoleQuery : SysRole
{
/// <summary>
/// 时间范围
/// </summary>
public List<DateTime> DateRange { get; set; }
}
}