27 lines
621 B
C#
27 lines
621 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using JNPF.DependencyInjection;
|
|
|
|
namespace Tnb.BasicData.Entitys.Dto.DataModeing
|
|
{
|
|
/// <summary>
|
|
/// 清除表数据输入参数
|
|
/// </summary>
|
|
[SuppressSniffer]
|
|
public class CleanTableDataInput
|
|
{
|
|
public string LinkId { get; set; }
|
|
/// <summary>
|
|
/// 数据库名称
|
|
/// </summary>
|
|
public string DbName { get; set; }
|
|
/// <summary>
|
|
/// 表名称
|
|
/// </summary>
|
|
public string TableName { get; set; }
|
|
}
|
|
}
|