28 lines
520 B
C#
28 lines
520 B
C#
namespace ZXK.GYJQR
|
||
{
|
||
public class BJCJ_SXCJ
|
||
{
|
||
//序号
|
||
public int id;
|
||
//步骤
|
||
public string stepName;
|
||
//步骤子类
|
||
public string stepNameChild;
|
||
//用户操作
|
||
public string caoZuo;
|
||
//动画开始时间
|
||
//默认每段动画120帧,程序会据此自动判断
|
||
public float AnmStartTime;
|
||
//此步骤对应的三维场景内物体
|
||
public string itemGeo;
|
||
//介绍文字
|
||
public string tipText;
|
||
//分值
|
||
public float score;
|
||
//计分类别
|
||
public string scoreName;
|
||
//计分类别子类
|
||
public string scoreNameChild;
|
||
}
|
||
}
|