16 lines
376 B
C#
16 lines
376 B
C#
namespace Apimanager_backend.Tools
|
|
{
|
|
public static class RandomCodeHelper
|
|
{
|
|
/// <summary>
|
|
/// 生成随机数字符串
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public static string GetRandomCodeStr()
|
|
{
|
|
Random random = new Random();
|
|
return random.Next(10000, 99999).ToString();
|
|
}
|
|
}
|
|
}
|