2025-09-08 17:37:12 +08:00

33 lines
557 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 DongWuYiXue.DaoNiaoShu
{
public class BaseData
{
//序号
public int id;
//父步骤名
public string parentName;
//子步骤名
public string name;
//所属病例1-病例12-病例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;
}
}