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