mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
14 lines
325 B
C#
Executable File
14 lines
325 B
C#
Executable File
using System;
|
|
namespace SDKCSharp.Common
|
|
{
|
|
public interface DataNameBuilder
|
|
{
|
|
/// <summary>
|
|
/// 构建数据节点名称
|
|
/// </summary>
|
|
/// <returns>返回数据节点名称.</returns>
|
|
/// <param name="method">方法名.</param>
|
|
string Build(string method);
|
|
}
|
|
}
|