You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.App.CodeTable.Request
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据库操作中间类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CodeTableReq
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 导入的数据表字符串
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CodeTableStr { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 需要导入表数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Required(ErrorMessage = "请选择导入的数据表")]
|
|
|
|
|
public List<DbTableInfo> TableList { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|