添加项目文件。

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,22 @@
namespace JNPF.VisualData.Entitys.Dto.ScreenCategory;
/// <summary>
/// 大屏分类创建输入.
/// </summary>
public class ScreenCategoryCrInput
{
/// <summary>
/// 分类键值.
/// </summary>
public string categoryKey { get; set; }
/// <summary>
/// 分类名称.
/// </summary>
public string categoryValue { get; set; }
/// <summary>
/// 是否已删除.
/// </summary>
public int isDeleted { get; set; }
}

View File

@@ -0,0 +1,27 @@
namespace JNPF.VisualData.Entitys.Dto.ScreenCategory;
/// <summary>
/// 大屏分类详情输出.
/// </summary>
public class ScreenCategoryInfoOutput
{
/// <summary>
/// 主键.
/// </summary>
public string id { get; set; }
/// <summary>
/// 分类键值.
/// </summary>
public string categoryKey { get; set; }
/// <summary>
/// 分类名称.
/// </summary>
public string categoryValue { get; set; }
/// <summary>
/// 是否删除.
/// </summary>
public int isDeleted { get; set; }
}

View File

@@ -0,0 +1,28 @@
namespace JNPF.VisualData.Entitys.Dto.ScreenCategory;
/// <summary>
/// 大屏分类列表输出.
/// </summary>
public class ScreenCategoryListOutput
{
/// <summary>
/// 主键.
/// </summary>
public string id { get; set; }
/// <summary>
/// 分类键值.
/// </summary>
public string categoryKey { get; set; }
/// <summary>
/// 分类名称.
/// </summary>
public string categoryValue { get; set; }
/// <summary>
/// 是否删除.
/// </summary>
public int isDeleted { get; set; }
}

View File

@@ -0,0 +1,22 @@
namespace JNPF.VisualData.Entitys.Dto.ScreenCategory;
/// <summary>
/// 大屏分类列表查询输入.
/// </summary>
public class ScreenCategoryListQueryInput
{
/// <summary>
/// 分类.
/// </summary>
public string category { get; set; }
/// <summary>
/// 当前页码:pageIndex.
/// </summary>
public virtual int current { get; set; } = 1;
/// <summary>
/// 每页行数.
/// </summary>
public virtual int size { get; set; } = 50;
}

View File

@@ -0,0 +1,12 @@
namespace JNPF.VisualData.Entitys.Dto.ScreenCategory;
/// <summary>
/// 大屏分类修改输入.
/// </summary>
public class ScreenCategoryUpInput : ScreenCategoryCrInput
{
/// <summary>
/// 主键.
/// </summary>
public string Id { get; set; }
}