SqlSugar/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/UnitTool.cs
2023-11-06 21:44:56 +08:00

15 lines
237 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OrmTest
{
internal class UnitTool
{
public static string GetName(string name)
{
return "name" + 111;
}
}
}