33 lines
730 B
C#
33 lines
730 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.IoTDBProvider
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// IOTDB配置
|
|||
|
|
/// </summary>
|
|||
|
|
public class IoTDBOptions
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 集群列表
|
|||
|
|
/// </summary>
|
|||
|
|
public List<string> ClusterList { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户名
|
|||
|
|
/// </summary>
|
|||
|
|
public string UserName { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 密码
|
|||
|
|
/// </summary>
|
|||
|
|
public string Password { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 连接池大小
|
|||
|
|
/// </summary>
|
|||
|
|
public int PoolSize { get; set; } = 3;
|
|||
|
|
}
|
|||
|
|
}
|