提交rbac
提交设置右键错位的bug
This commit is contained in:
16
DH.RBAC/Models/DTO/Parms/AuthorParms.cs
Normal file
16
DH.RBAC/Models/DTO/Parms/AuthorParms.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class AuthorParms
|
||||
{
|
||||
public string roleId { get; set; }
|
||||
public List<string> perIds { get; set; }
|
||||
|
||||
public string operater { get; set; }
|
||||
}
|
||||
}
|
14
DH.RBAC/Models/DTO/Parms/FileUploadParms.cs
Normal file
14
DH.RBAC/Models/DTO/Parms/FileUploadParms.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class FileUploadParms
|
||||
{
|
||||
public byte[] file { get; set; }
|
||||
public string fileName { get; set; }
|
||||
}
|
||||
}
|
17
DH.RBAC/Models/DTO/Parms/ItemDetailIndexParms.cs
Normal file
17
DH.RBAC/Models/DTO/Parms/ItemDetailIndexParms.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class ItemDetailIndexParms
|
||||
{
|
||||
public int pageIndex { get; set; }
|
||||
public int pageSize { get; set; }
|
||||
|
||||
public string keyWord { get; set; }
|
||||
public string itemId { get; set; }
|
||||
}
|
||||
}
|
14
DH.RBAC/Models/DTO/Parms/KeyValue.cs
Normal file
14
DH.RBAC/Models/DTO/Parms/KeyValue.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class KeyValue
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Value { get; set; }
|
||||
}
|
||||
}
|
15
DH.RBAC/Models/DTO/Parms/LogDeleteParms.cs
Normal file
15
DH.RBAC/Models/DTO/Parms/LogDeleteParms.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class LogDeleteParms
|
||||
{
|
||||
public string type { get; set; }
|
||||
public string index { get; set; }
|
||||
public string operateUser { get; set; }
|
||||
}
|
||||
}
|
17
DH.RBAC/Models/DTO/Parms/LogIndexParms.cs
Normal file
17
DH.RBAC/Models/DTO/Parms/LogIndexParms.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class LogIndexParms
|
||||
{
|
||||
public int pageIndex { get; set; }
|
||||
public int pageSize { get; set; }
|
||||
public string type { get; set; }
|
||||
public string index { get; set; }
|
||||
public string keyWord { get; set; }
|
||||
}
|
||||
}
|
18
DH.RBAC/Models/DTO/Parms/LongPrimaryKeyParms.cs
Normal file
18
DH.RBAC/Models/DTO/Parms/LongPrimaryKeyParms.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class LongPrimaryKeyParms
|
||||
{
|
||||
public string operaterId { get; set; }
|
||||
public long primaryKey { get; set; }
|
||||
|
||||
public string operateUser { get; set; }
|
||||
public string userIds { get; set; }
|
||||
public string roleId { get; set; }
|
||||
}
|
||||
}
|
16
DH.RBAC/Models/DTO/Parms/ModifyPasswordParms.cs
Normal file
16
DH.RBAC/Models/DTO/Parms/ModifyPasswordParms.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class ModifyPasswordParms
|
||||
{
|
||||
public string userId { get; set; }
|
||||
public string oldPassword { get; set; }
|
||||
public string newPassword { get; set; }
|
||||
public string confirmPassword { get; set; }
|
||||
}
|
||||
}
|
14
DH.RBAC/Models/DTO/Parms/RoleDeleteParms.cs
Normal file
14
DH.RBAC/Models/DTO/Parms/RoleDeleteParms.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class RoleDeleteParms
|
||||
{
|
||||
public List<string> roleIdList { get; set; }
|
||||
public string operateUser { get; set; }
|
||||
}
|
||||
}
|
15
DH.RBAC/Models/DTO/Parms/SearchParms.cs
Normal file
15
DH.RBAC/Models/DTO/Parms/SearchParms.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class SearchParms
|
||||
{
|
||||
public int pageIndex { get; set; }
|
||||
public int pageSize { get; set; }
|
||||
public string keyWord { get; set; }
|
||||
}
|
||||
}
|
18
DH.RBAC/Models/DTO/Parms/StrPrimaryKeyParms.cs
Normal file
18
DH.RBAC/Models/DTO/Parms/StrPrimaryKeyParms.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class StrPrimaryKeyParms
|
||||
{
|
||||
public string operaterId { get; set; }
|
||||
public string primaryKey { get; set; }
|
||||
|
||||
public string operateUser { get; set; }
|
||||
public string userIds { get; set; }
|
||||
public string roleId { get; set; }
|
||||
}
|
||||
}
|
16
DH.RBAC/Models/DTO/Parms/UserDeleteParms.cs
Normal file
16
DH.RBAC/Models/DTO/Parms/UserDeleteParms.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class UserDeleteParms
|
||||
{
|
||||
public List<string> userIdList { get; set; }
|
||||
|
||||
public string currentUserId { get; set; }
|
||||
public string operateUser { get; set; }
|
||||
}
|
||||
}
|
15
DH.RBAC/Models/DTO/Parms/UserLoginParms.cs
Normal file
15
DH.RBAC/Models/DTO/Parms/UserLoginParms.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.DTO.Parms
|
||||
{
|
||||
public class UserLoginParms
|
||||
{
|
||||
public string verifyCode { get; set; }
|
||||
public string userName { get; set; }
|
||||
public string password { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user