31 lines
569 B
C#
31 lines
569 B
C#
|
|
namespace YiLiao.JingLuoXueWei
|
|
{
|
|
public class JingLuoSmall
|
|
{
|
|
//序号
|
|
|
|
public int id;
|
|
|
|
//经络名称
|
|
|
|
public string name;
|
|
|
|
//所属位置
|
|
|
|
public string pos;
|
|
|
|
//穴位名称不带拼音
|
|
|
|
public string XueWeiName_NoPinYin;
|
|
|
|
//穴位名称
|
|
|
|
public string XueWeiName;
|
|
|
|
//主治
|
|
|
|
public string ZhuZhi_Txt;
|
|
|
|
//定位
|
|
|
|
public string DingWei_Txt;
|
|
|
|
//按摩
|
|
|
|
public string AnMo_Txt;
|
|
|
|
//艾灸
|
|
|
|
public string AiJiu_Txt;
|
|
|
|
//创建预制件物体位置
|
|
|
|
public string gameObjectName;
|
|
|
|
//高亮的穴位名称
|
|
|
|
public string LightXueWeiName;
|
|
|
|
|
|
}
|
|
}
|