You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
572 B
C#

using System.Collections.Generic;
namespace NDSD_Screwdriver
{
public class TestDataFactory
{
/// <summary>
/// 获取Rfid的数据
/// </summary>
/// <returns></returns>
public static List<string> GetRfidList()
{
List<string> ls = new List<string>
{
"E0040150B8C12108",
"E0040150B8C1393A",
"E0040150B8C0512F",
"E0040150B8C170F6",
"E0040150B8C12100"
};
return ls;
}
}
}