1、根据数据表,删除表数据接口迁移至DataModel 已有接口下

2、将根据表明生成实体类,代码迁移至已有数据接口DataModel下
This commit is contained in:
DEVICE8\12494
2023-04-06 14:10:53 +08:00
parent 34b3dac9f1
commit 98278bad9e
7 changed files with 165 additions and 90 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}