This commit is contained in:
2248356998 qq.com
2025-08-07 10:18:22 +08:00
parent 1b3d2dda49
commit faa9858974
3 changed files with 11 additions and 13 deletions

View File

@@ -1,9 +1,9 @@
<Project>
<PropertyGroup>
<PluginVersion>10.10.7</PluginVersion>
<ProPluginVersion>10.10.6</ProPluginVersion>
<DefaultVersion>10.10.10</DefaultVersion>
<PluginVersion>10.10.8</PluginVersion>
<ProPluginVersion>10.10.7</ProPluginVersion>
<DefaultVersion>10.10.11</DefaultVersion>
<AuthenticationVersion>10.10.1</AuthenticationVersion>
<SourceGeneratorVersion>10.10.1</SourceGeneratorVersion>
<NET8Version>8.0.19</NET8Version>

View File

@@ -20,11 +20,10 @@ public class QuestDBProducerProperty : RealDBProducerProperty
{
public override DbType DbType { get; } = DbType.QuestDB;
[DynamicProperty]
[Required]
[AutoGenerateColumn(ComponentType = typeof(Textarea), Rows = 1)]
public override string BigTextConnectStr { get; set; } = "host=localhost;port=8812;username=admin;password=quest;database=qdb;ServerCompatibilityMode=NoTypeLoading;";
public QuestDBProducerProperty()
{
BigTextConnectStr="host=localhost;port=8812;username=admin;password=quest;database=qdb;ServerCompatibilityMode=NoTypeLoading;";
}
[DynamicProperty]
public bool RestApi { get; set; } = true;

View File

@@ -20,10 +20,9 @@ public class TDengineDBProducerProperty : RealDBProducerProperty
{
public override DbType DbType { get; } = DbType.TDengine;
[DynamicProperty]
[Required]
[AutoGenerateColumn(ComponentType = typeof(Textarea), Rows = 1)]
public override string BigTextConnectStr { get; set; } = "protocol=WebSocket;host=localhost;port=6041;useSSL=false;username=root;password=taosdata;db=power";
public TDengineDBProducerProperty()
{
BigTextConnectStr = "protocol=WebSocket;host=localhost;port=6041;useSSL=false;username=root;password=taosdata;db=power";
}
}