using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BodyInfoData : MonoBehaviour
{
}
[Serializable]
public class BodyPosInfoDataItem
{
///
///
///
public string content;
///
///
///
public string fileId;
///
///
///
public int type;
///
///
///
public string fileUrl;
///
///
///
public DataItem2 problemInfoResp;
}
[Serializable]
public class BodyPosInfoRoot
{
///
///
///
public int code;
///
/// 操作成功
///
public string msg;
///
///
///
public List data;
}
[Serializable]
public class ClinicalProjectCheckRespListItem
{
///
///
///
public int projectId;
///
///
///
public int positionId;
///
/// 胸部
///
public string positionName;
///
///
///
public int toolId;
///
/// 眼镜(视诊)
///
public string toolName;
///
///
///
public int checkId;
///
/// 观察颈部外形和皮肤、颈静脉充盈情况
///
public string checkName;
}
[Serializable]
public class ClinicalProjectPositionRespListItem
{
///
///
///
public int toolId;
///
/// 眼镜(视诊)
///
public string toolName;
///
///
///
public List clinicalProjectCheckRespList;
}
[Serializable]
public class BodyInfoDataItem
{
///
///
///
public int positionId;
///
/// 胸部
///
public string positionName;
///
///
///
public List clinicalProjectPositionRespList;
}
[Serializable]
public class BodyInfoRoot
{
///
///
///
public int code;
///
/// 操作成功
///
public string msg;
///
///
///
public List data;
}