添加项目文件。
This commit is contained in:
25
common/Tnb.Common/Dtos/DataBase/TableInfoOutput.cs
Normal file
25
common/Tnb.Common/Dtos/DataBase/TableInfoOutput.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Common.Dtos.DataBase;
|
||||
|
||||
/// <summary>
|
||||
/// 表信息输出.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class TableInfoOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 旧表名称.
|
||||
/// </summary>
|
||||
public string table { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 新表名称.
|
||||
/// </summary>
|
||||
public string newTable { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表说明.
|
||||
/// </summary>
|
||||
public string tableName { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user