2025-10-10 17:30:07 +08:00

43 lines
848 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace YiLiao.JingLuoXueWei
{
public class BaseData
{
//序号
public int id;
//步骤名
public string name;
//子步骤名
public string childName;
//所属病例1-病例12-病例2
public string owner;
//是否生成跳步按钮
public string isBtn;
//考核还是实训
public string modeType;
//提示文字
public string txt;
//语音路径
public string sound;
//用到的物体
public string obj;
//状态
public string state;
//当前步骤在VR模式下手部材质1-不戴手套2-戴手套
public string vr_hand_materials;
//参与计分的物体
public string answerObj;
//考核分数
public string score;
//分数
public string score_sx;
//考核音效
public string sound_kaohe;
//考核文字
public string txt_kaohe;
//计分类别
public string type;
}
}