tuiwucarrer/Admin.NET/Admin.NET.Core/Util/SchoolNameHelper.cs

53 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core.Util;
public class SchoolNameHelper
{
public static string getName()
{ // 学校列表
List<string> schools = new List<string>
{
"山东省实验中学",
"济南市历城第二中学",
"山东师范大学附属中学",
"济南外国语学校",
"山东省济钢高级中学",
"莱芜第一中学",
"济南第一中学",
"章丘第四中学"
};
// 随机数生成器
Random random = new Random();
int index = random.Next(schools.Count);
return schools[index];
}
public static string getClassName()
{ // 学校列表
List<string> schools = new List<string>
{
"高三一班",
"高三二班",
"高三三班",
"高三四班",
"高三五班",
"高三六班",
"高三七班",
"高三八班",
"高三九班",
"高三十班"
};
// 随机数生成器
Random random = new Random();
int index = random.Next(schools.Count);
return schools[index];
}
}