using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model
|
{
|
|
public class ImportEntity
|
{
|
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; }
|
}
|
}
|