import {_decorator, Component, Node} from 'cc'; const {ccclass, property} = _decorator; @ccclass('AndroidMgr') export class UserInfo extends Component { public static phone: string//手机号码 public static sourceCode: string//访问来源 public static score: number//测试分数 public static aveTime: number//平均时间 public static hospitalId: string//医院ID public static hospitalName: string//医院名称 public static ip: string//服务器地址 public static port: number//端口 public static totalRight: number//正确数量 public static totalWrong: number//错误数量 public static totalTimeout: number//超时数量 public static totalQuestion: number//所有题目数量 // public static topicStartTime:string// public static details: any[]//20251022-新增字段 }