namespace Yw.Dto { /// /// /// public class RoleStdDto { /// /// /// public RoleStdDto() { } /// /// /// public RoleStdDto(Model.Role rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.Code = rhs.Code; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }