tijian_tieying/web/dccdc.Models/DTO/TingYuModel.cs
2025-02-20 12:14:39 +08:00

48 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}