33 lines
557 B
C#
33 lines
557 B
C#
|
||
namespace DongWuYiXue.DaoNiaoShu
|
||
{
|
||
public class BaseData
|
||
{
|
||
//序号
|
||
|
||
public int id;
|
||
|
||
//父步骤名
|
||
|
||
public string parentName;
|
||
|
||
//子步骤名
|
||
|
||
public string name;
|
||
|
||
//所属病例1-病例1,2-病例2
|
||
|
||
public string owner;
|
||
|
||
//提示文字
|
||
|
||
public string txt;
|
||
|
||
//语音路径
|
||
|
||
public string sound;
|
||
|
||
//用到的物体
|
||
|
||
public string obj;
|
||
|
||
//状态
|
||
|
||
public string state;
|
||
|
||
//考核总分
|
||
|
||
public string score_kh;
|
||
|
||
//分数
|
||
|
||
public string score;
|
||
|
||
//实训分数
|
||
|
||
public string score_sx;
|
||
|
||
//计分类别
|
||
|
||
public string type;
|
||
|
||
|
||
}
|
||
}
|