添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using JNPF.Systems.Entitys.Dto.Database;
namespace JNPF.Systems.Entitys.Dto.System.DataSync;
/// <summary>
/// 数据同步动作执行输出.
/// </summary>
public class DbSyncOutput
{
/// <summary>
/// 同步数据库是否正确.
/// </summary>
public bool checkDbFlag { get; set; }
/// <summary>
/// 源数据库表数据.
/// </summary>
public List<DatabaseTableListOutput> tableList { get; set; }
/// <summary>
/// 映射字段.
/// </summary>
public Dictionary<string,List<string>> convertRuleMap { get; set; }
}