43 lines
848 B
C#
43 lines
848 B
C#
|
||
namespace YiLiao.JingLuoXueWei
|
||
{
|
||
public class BaseData
|
||
{
|
||
//序号
|
||
|
||
public int id;
|
||
|
||
//步骤名
|
||
|
||
public string name;
|
||
|
||
//子步骤名
|
||
|
||
public string childName;
|
||
|
||
//所属病例1-病例1,2-病例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;
|
||
|
||
|
||
}
|
||
}
|