Files
2026-05-29 09:34:04 +08:00

18 lines
384 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Threading;
namespace MisDataFunDll
{
public partial class CommFun_CATL
{
// 由于现在没有接口先模拟调用webapi输入参数1.电芯码返回参数1.对比结果
public static int GetCellInfo(string cellCode)
{
int result = 1;
Thread.Sleep(200);
return result;
}
}
}