using Newtonsoft.Json;
namespace JNPF.VisualData.Entitys.Dto.ScreenDataSource;
///
/// 大屏数据源列表输出.
///
public class ScreenDataSourceListOutput
{
///
/// 驱动类.
///
public string driverClass { get; set; }
///
/// 名称.
///
public string name { get; set; }
///
/// 用户名.
///
public string username { get; set; }
///
/// 连接地址.
///
public string url { get; set; }
///
/// 主键.
///
public string id { get; set; }
///
/// 备注.
///
public string remark { get; set; }
///
/// 密码.
///
public string password { get; set; }
///
/// 是否删除.
///
[JsonIgnore]
public int isDeleted { get; set; }
}