43 lines
873 B
C#
43 lines
873 B
C#
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; }
|
|
}
|