using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.System.Dtos { /// /// 用户高级查询条件设置请求 /// public class UserQuerySetUpdateReq { /// /// 权限Id /// public long? PermissionId { get; set; } /// /// 高级查询条件设置 /// public string Content { get; set; } } }