using iWareTestForm.Utility;
|
using System;
|
using System.Collections.Generic;
|
using System.IO;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
|
|
|
namespace iWareTestForm
|
{
|
/// <summary>
|
/// 测试帮助类
|
/// </summary>
|
public class TestHelper
|
{
|
static string wipHost = BLLHelpler.GetConfigValue("wipHost");
|
|
|
/// <summary>
|
/// 根据物料编码获取出热物料号
|
/// </summary>
|
static string getOutMaterialCode_Url = BLLHelpler.GetConfigValue("getOutMaterialCode");
|
|
|
/// <summary>
|
/// 获取ecm交互表的recipeNumber
|
/// </summary>
|
static string getEcmInteraction_Url = BLLHelpler.GetConfigValue("getEcmInteraction");
|
|
/// <summary>
|
/// 生成任务号
|
/// </summary>
|
static string generateSerialNumber_Url = BLLHelpler.GetConfigValue("generateSerialNumber");
|
|
/// <summary>
|
/// 获取流转卡对象
|
/// </summary>
|
static string getSingleProcessCardInfo_Url = BLLHelpler.GetConfigValue("getSingleProcessCardInfo");
|
|
|
|
}
|
}
|