SqlSugar/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/UnitTool.cs

15 lines
237 B
C#
Raw Normal View History

2023-10-29 14:42:25 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace OrmTest
{
internal class UnitTool
{
public static string GetName(string name)
{
return "name" + 111;
}
}
}