public ActionResult CheckQueueUp(Student stu)
        {
            //获取处理结果
            var result = StoreHelper.Get(stu.StudentId);

            Console.WriteLine(result);
            return(Json(new { success = !string.IsNullOrEmpty(result), msg = result }));
        }
Beispiel #2
0
 public ModuleParameter Data(string name)
 {
     return(storeHelper.Get(name));
 }