using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 添加用户角色映射 /// public class AddUserRoleInput { /// /// 用户标识 /// public long UserID { get; set; } /// /// 角色标识 /// public long RoleID { get; set; } } }