namespace Yw.Application { /// /// /// public class HealthIndexStdDto { /// /// /// public HealthIndexStdDto() { } /// /// /// public HealthIndexStdDto(Model.HealthIndex rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.ScoreType = rhs.ScoreType; this.MinValue = rhs.MinValue; this.MaxValue = rhs.MaxValue; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 计分制 /// public eScoreType ScoreType { get; set; } /// /// 下限 /// public int MinValue { get; set; } /// /// 上限 /// public int MaxValue { get; set; } /// /// 说明 /// public string Description { get; set; } } }