You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.supervision.vo.manage ;
import io.swagger.v3.oas.annotations.media.Schema ;
import lombok.Data ;
import java.time.LocalDateTime ;
@Data
public class MedicalRecPageResVO {
private String medicalId ;
private String no ;
private String name ;
private Integer age ;
private String gender ;
private LocalDateTime time ;
private String resourceId ;
private String patientId ;
private String patientSelfDesc ;
//患者头像
private String patientHeadPic ;
//患者静默视频
private String patientSilentVideo ;
@Schema ( description = "哑语视频" )
private String patientDummyVideo ;
/**
* 初步诊断-> 就是对应的疾病名称
*/
private String diagnosisPrimaryStr ;
@Schema ( description = "病历状态 1: 未上线 2: 上线" )
private String medicalStatus ;
@Schema ( description = "病历状态( 导入) 00创建病历 01数字人生成中 02 完成" )
private String medicalDataStatus ;
}