You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
584 B
30 lines
584 B
2 years ago
|
using Elight.Entity;
|
||
|
using Elight.Utility.Code;
|
||
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Elight.Logic.SystemModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 角色用户表
|
||
|
/// </summary>
|
||
|
[DataContract]
|
||
|
public class App_Sys_RoleUserAdd
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 角色Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? roleId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 角色用户Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public List<App_Sys_RoleUserModel>? roleuserlist { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|