添加项目文件。

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,29 @@
using JNPF.Common.Filter;
namespace JNPF.VisualDev.Entitys.Dto.VisualDevModelData;
/// <summary>
/// 在线开发功能模块列表查询输入.
/// </summary>
public class VisualDevModelListQueryInput : PageInputBase
{
/// <summary>
/// 菜单ID.
/// </summary>
public string menuId { get; set; }
/// <summary>
/// 选择导出数据key.
/// </summary>
public List<string> selectKey { get; set; }
/// <summary>
/// 导出类型.
/// </summary>
public string dataType { get; set; } = "0";
/// <summary>
/// 高级查询.
/// </summary>
public virtual string superQueryJson { get; set; }
}