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 System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.App.FormScheme.Response
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 表单模板
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class FormSchemeModel
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据库编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DbCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据表单信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<FormDbTableInfo> Db { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 表单信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public FormInfoModel FormInfo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 1 视图表单 0常规表单
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int FormType { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|