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