namespace JNPF.VisualData.Entitys.Dto.ScreenDataSource; public class ScreenDataSourceCrInput { /// /// 驱动类. /// public string driverClass { get; set; } /// /// 名称. /// public string name { get; set; } /// /// 用户名. /// public string username { get; set; } /// /// 连接地址. /// public string url { get; set; } /// /// 备注. /// public string remark { get; set; } /// /// 密码. /// public string password { get; set; } }