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