mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-30 20:57:58 +08:00
15 lines
237 B
C#
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;
|
|
}
|
|
}
|
|
}
|