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

15 lines
237 B
C#
Raw Permalink Normal View History

2025-05-11 16:20:50 +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;
}
}
}