From 87422530bec9baf531d2e0715b9c786a4d35667f Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期四, 02 一月 2025 15:59:44 +0800 Subject: [PATCH] Add new properties and classes for process and code handling --- Tiger.Model.Net/Entitys/ImportEntity.cs | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/ImportEntity.cs b/Tiger.Model.Net/Entitys/ImportEntity.cs index 27481fe..7e9d82d 100644 --- a/Tiger.Model.Net/Entitys/ImportEntity.cs +++ b/Tiger.Model.Net/Entitys/ImportEntity.cs @@ -12,4 +12,21 @@ public string DataTableStr { get; set; } public string[] PARAMS { get; set; } } + + public class BaseImportInput + { + public string typeFullName { get; set; } + } + + public class ImportInput : BaseImportInput + { + public string EntityJson { get; set; } + } + + public class ImportValidateInput: BaseImportInput + { + public string EntityJson { get; set; } + public string CheckJson { get; set; } + public string where { get; set; } + } } -- Gitblit v1.9.3