123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace YiSha.Model.Param.SystemManage
- {
-
-
-
-
-
- public class RoleListParam : DateTimeParam
- {
-
-
-
- public string RoleName { get; set; }
-
-
-
- public int? RoleStatus { get; set; }
-
-
-
- public string RoleIds { get; set; }
- }
- }
|