using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class HistoryInfoData : MonoBehaviour { } [Serializable] public class HistoryInfoItem { /// /// /// public int createBy; /// /// /// public string createTime; /// /// /// public string updateBy; /// /// /// public string updateTime; /// /// /// public int id; /// /// {"drugAllergy":true,"allergens":"阿莫西林过敏"} /// public string detailInfo; /// /// /// public string type; /// /// 低卡路里饮食 /// public string peculiarity; /// /// /// public int diagnosisId; } [Serializable] public class HistoryInfoRoot { /// /// /// public int code; /// /// 操作成功 /// public string msg; /// /// /// public List data; }