namespace Yw.Dto { /// /// Dto /// public class SysUnitValueDto { /// /// /// public SysUnitValueDto() { } /// /// /// public SysUnitValueDto(Model.SysUnitValue rhs) { this.ID = rhs.ID; this.TypeID = rhs.TypeID; this.Name = rhs.Name; this.Code = rhs.Code; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 类型Id /// public long TypeID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 排序 /// public int SortCode { get; set; } /// /// 备注 /// public string Description { get; set; } } }