using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace dccdc.Models.DTO { public class TingYuModel { //结果 public int left500 { get; set; } public int left1000 { get; set; } public int left2000 { get; set; } public int left3000 { get; set; } public int left4000 { get; set; } public int left6000 { get; set; } public int right500 { get; set; } public int right1000 { get; set; } public int right2000 { get; set; } public int right3000 { get; set; } public int right4000 { get; set; } public int right6000 { get; set; } //偏差值 public int left500_deviation { get; set; } public int left1000_deviation { get; set; } public int left2000_deviation { get; set; } public int left3000_deviation { get; set; } public int left4000_deviation { get; set; } public int left6000_deviation { get; set; } public int right500_deviation { get; set; } public int right1000_deviation { get; set; } public int right2000_deviation { get; set; } public int right3000_deviation { get; set; } public int right4000_deviation { get; set; } public int right6000_deviation { get; set; } //双耳高频平均听阈(dB) public int srgppjty { get; set; } //左耳平均听阈 public int left_pjty { get; set; } //右耳平均听阈 public int right_pjty { get; set; } } }