完善平台端物模型

This commit is contained in:
ChenYi 2026-01-26 15:41:36 +08:00
parent cd2090d4a1
commit 7b57e93c04
13 changed files with 12130 additions and 6 deletions

View File

@ -29,6 +29,6 @@ SQLSERVER_PORT=11433
# 认证信息
PULSAR_ADMIN_USER=admin
PULSAR_ADMIN_PASSWORD=0fd7afb8b0d04e6abc4fdfdac2190a79
IOTDB_ROOT_PASSWORD=Lixiao@1980
IOTDB_ROOT_PASSWORD=Li#xiao@198!0
MYSQL_ROOT_PASSWORD='JiShe!aqG#5kGgh&0'
SQLSERVER_SA_PASSWORD=JiShe!aqG@5kGgh&0

View File

@ -183,7 +183,7 @@ services:
- pulsar-net
iotdb-standalone-service:
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.5-standalone
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.6-standalone
hostname: iotdb-standalone
container_name: iotdb-standalone
restart: always

View File

@ -1,6 +1,6 @@
services:
iotdb-standalone:
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.5-standalone
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.6-standalone
hostname: iotdb-standalone
container_name: iotdb-standalone
restart: "no"

View File

@ -152,7 +152,7 @@ services:
max-file: "3"
iotdb-standalone-service:
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.5-standalone
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.6-standalone
hostname: iotdb-standalone
container_name: iotdb-standalone
restart: always

View File

@ -1,6 +1,6 @@
services:
iotdb-standalone-service:
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.5-standalone
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.6-standalone
hostname: iotdb-standalone
container_name: iotdb-standalone
restart: always

View File

@ -1,6 +1,6 @@
services:
iotdb-standalone-service:
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.5-standalone
image: registry.cn-qingdao.aliyuncs.com/jisheyun/iotdb:2.0.6-standalone
hostname: iotdb-standalone
container_name: iotdb-standalone
restart: always

View File

@ -17,6 +17,9 @@ REDIS_PORT=30712
POSTGRES_PORT=5432
POSTGRES_PASSWORD=JiShe!aqG#5kGgh&0
POSTGRES_DB=jisheiotprodb
POSTGRES_USER=postgres
POSTGRES_CONTAINER=postgres
POSTGRES_BACKUP_DIR=/mnt/dockerdata/appservice/postgresql/backup
# Admin API配置
ADMIN_API_PORT=28080

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -904,6 +904,10 @@ namespace JiShe.IoT.Migrations
.HasColumnType("character varying(50)")
.HasComment("设备地址");
b.Property<Guid>("DeviceDataId")
.HasColumnType("uuid")
.HasComment("设备数据Id");
b.Property<string>("DeviceName")
.IsRequired()
.HasMaxLength(50)
@ -1578,6 +1582,10 @@ namespace JiShe.IoT.Migrations
.HasColumnType("character varying(50)")
.HasComment("物联网平台中对应产品物模型属性或者事件类型");
b.Property<int>("IdentifierType")
.HasColumnType("integer")
.HasComment("物模型标识符类型");
b.Property<int>("IoTPlatform")
.HasColumnType("integer")
.HasComment("物联网平台类型,默认没有指定");