using System;
namespace JNPF.VisualData.Entitys.Dto.Screen;
///
/// 大屏信息输出.
///
public class ScreenInfoOutput
{
///
/// 大屏背景.
///
public string backgroundUrl { get; set; }
///
/// 大屏类型.
///
public int category { get; set; }
///
/// 创建部门.
///
public string createDept { get; set; }
///
/// 创建时间.
///
public DateTime createTime { get; set; }
///
/// 创建人.
///
public string createUser { get; set; }
///
/// 主键ID.
///
public string id { get; set; }
///
/// 是否已删除.
///
public int isDeleted { get; set; }
///
/// 发布密码.
///
public string password { get; set; }
///
/// 业务状态.
///
public int status { get; set; }
///
/// 大屏标题.
///
public string title { get; set; }
///
/// 更新时间.
///
public DateTime? updateTime { get; set; }
///
/// 更新人.
///
public string updateUser { get; set; }
}