///
/// 保存用户考试状态
///
using System.Collections;
using System.Collections.Generic;
public class TB_UserExamStat
{
///
///当前方案ID
///
public int schemeID = -1;
///
/// 当前流程Id
///
public int processId = -1;
///
/// 当前子流程Id
///
public int subProcessId = -1;
///
/// 当前子流程步骤Id
///
public int subProcessStepId = -1;
///
/// 背包中所有的工具和材料
///
public List allToolAndMaterial = new List();
///
/// 所有已经穿戴的装备
///
public List allWear = new List();
}