222
schangxiang@126.com
2024-12-09 f2f4ecd04b2987f6aed8216442e82a81009c2366
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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");
 
 
       
    }
}