22 lines
467 B
C#
22 lines
467 B
C#
using JNPF.DependencyInjection;
|
|
|
|
namespace JNPF.Systems.Entitys.Dto.Database
|
|
{
|
|
/// <summary>
|
|
/// 清除表数据输入参数
|
|
/// </summary>
|
|
[SuppressSniffer]
|
|
public class DatabaseTableDataCleanInput
|
|
{
|
|
|
|
/// <summary>
|
|
/// 数据库名称
|
|
/// </summary>
|
|
public string DbName { get; set; }
|
|
/// <summary>
|
|
/// 表名称
|
|
/// </summary>
|
|
public string TableName { get; set; }
|
|
}
|
|
}
|