package com.ltkj.hosp.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.ltkj.common.core.domain.BaseEntity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @Company: 西安路泰科技有限公司 * @Author: zjh * @Date: 2024/1/5 0005 17:00 */ @Data @ApiModel(value = "纯音听阈测试结果值存储对象") public class TjPureToneTestDetil extends BaseEntity { @TableId(type = IdType.AUTO) private Long id; @ApiModelProperty(value = "纯音听阈测试主键") private String pureTestId; @ApiModelProperty(value = "耳朵") private String rd; @ApiModelProperty(value = "五百") private String wb; @ApiModelProperty(value = "一千") private String yq; @ApiModelProperty(value = "两千") private String lq; @ApiModelProperty(value = "三千") private String sq; @ApiModelProperty(value = "四千") private String siq; @ApiModelProperty(value = "六千") private String liuq; @ApiModelProperty(value = "语频平均") private String yppj; @ApiModelProperty(value = "500语频矫正") private String wbypjz; @ApiModelProperty(value = "1000语频矫正") private String yqypjz; @ApiModelProperty(value = "2000语频矫正") private String lqypjz; @ApiModelProperty(value = "2000语频矫正") private String gpqdpj; @ApiModelProperty(value = "高频骨导") private String gpgdpj; }