添加项目文件。
This commit is contained in:
42
visualdev/Tnb.VisualDev.Entitys/Dto/Screen/ScreenCrInput.cs
Normal file
42
visualdev/Tnb.VisualDev.Entitys/Dto/Screen/ScreenCrInput.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using JNPF.VisualData.Entitys.Dto.ScreenConfig;
|
||||
|
||||
namespace JNPF.VisualData.Entitys.Dto.Screen;
|
||||
|
||||
public class ScreenCrInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 大屏配置创建输入.
|
||||
/// </summary>
|
||||
public ScreenConfigCrInput config { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 大屏实体创建输入.
|
||||
/// </summary>
|
||||
public ScreenEntityCrInput visual { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 大屏实体创建输入.
|
||||
/// </summary>
|
||||
public class ScreenEntityCrInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 大屏类型.
|
||||
/// </summary>
|
||||
public int category { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建部门.
|
||||
/// </summary>
|
||||
public string createDept { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发布密码.
|
||||
/// </summary>
|
||||
public string password { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 大屏标题.
|
||||
/// </summary>
|
||||
public string title { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user