20 lines
657 B
C#
20 lines
657 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class APIs
|
|
{
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 虚拟仿真考试提交分数
|
|
/// </summary>
|
|
#if UNITY_EDITOR
|
|
public static string SimulationScore = PlayerPrefs.GetString("IP") + "/member/pro/score/simulationScore";
|
|
public static string queryByExamId = PlayerPrefs.GetString("IP") + "/member/proSimulationExamination/queryById?id=";
|
|
#else
|
|
public static string SimulationScore = PlayerPrefs.GetString("IP")+ "/pro/score/simulationScore";
|
|
public static string queryByExamId = PlayerPrefs.GetString("IP") + "/proSimulationExamination/queryById?id=";
|
|
#endif
|
|
} |