diff --git a/.gitignore b/.gitignore index 577bebf..314f6ad 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,5 @@ cmd/mqtt-broker/mqtt-broker kuiper db-data/leveldb-core-data -manifest/docker/db-data/leveldb-core-data/ \ No newline at end of file +manifest/docker/db-data/leveldb-core-data/ +manifest/docker/driver-data/ \ No newline at end of file diff --git a/README.md b/README.md index 9ec9ca6..05b38ed 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,12 @@ | ![](manifest/image/9.png) | ![](manifest/image/10.png) | | ![](manifest/image/7.png) | ![](manifest/image/8.png) | +# 小程序页面展示 + +| ![](manifest/image/miniapp-merge1.png) | ![](manifest/image/miniapp-merge2.png) | +|:---------------------------------------|:---------------------------------------| +| ![](manifest/image/miniapp-merge3.png) | ![](manifest/image/miniapp-merge4.png) | + # 官方文档地址 https://doc.hummingbird.winc-link.com/ @@ -58,7 +64,6 @@ docker-compose up -d - **免费开源**:我们源代码全部开源,可供个人学。 - **性能优异**:经过实际测试,在2C4G主机上,可支持60k的设备连接。模拟4k设备以1000ms的间隔向服务端发送16kb长度的属性数据,cpu使用率稳定在百分之60、内存使用率稳定在百分之16。 - **多数据支持**:平台支持SQLite、LevelDB和MySQL、TDengine数据库,用户可以根据自己的项目需要,选择适合自己的数据库。 -- **云插件**:平台实现了阿里云、腾讯云、华为云、oneNet等物联网平台的对接,支持把数据上报到各大物联网平台中。 - **支持可视化大屏**:用户只需要进行简单拖拽,无需写任何代码,即可完成可视化大屏开发设计。 - **内置产品模版库**: 平台内部预置产品模版(390条),帮助用户一键创建产品。 - **文档清晰**:平台文档清晰完整,文档内部有大量使用案例和视频教程,帮助用户快速理解产品和使用产品。 @@ -67,14 +72,12 @@ docker-compose up -d # 联系我们 -如果你在使用或者部署过程遇到任何问题,请在 QQ 群讨论或者联系作者微信。 +我们开通了蜂鸟交流群,在使用在本品的过程中有任何问题,可以进群沟通。 -如果你想把蜂鸟物联网平台进行商用,请提前找作者授权!最后请点个 Start 鼓励我们吧!🌟 - -

- -
+| 微信群 (先加好友备注加群) | QQ群 | +|:------------------------------------------------------------------------|:--------------------------------------------------------------------------| +| ![](manifest/image/qweixin.png) | ![](manifest/image/qq.png) | # 开源贡献 diff --git a/cmd/hummingbird-core/res/configuration.toml b/cmd/hummingbird-core/res/configuration.toml index bb95d37..13a54a5 100644 --- a/cmd/hummingbird-core/res/configuration.toml +++ b/cmd/hummingbird-core/res/configuration.toml @@ -29,13 +29,17 @@ Timeout = 120 [Databases] [Databases.Metadata] [Databases.Metadata.Primary] -Type = 'sqlite' -DataSource = 'manifest/docker/db-data/core-data/core.db?_timeout=5000' +#Type = 'sqlite' +#DataSource = 'manifest/docker/db-data/core-data/core.db?_timeout=5000' +Type = 'mysql' +Dsn = 'root:123456@tcp(127.0.0.1:3306)/open-hummingbird?charset=utf8mb4&parseTime=True&loc=Local' [Databases.Data] [Databases.Data.Primary] -Type = 'leveldb' -DataSource = 'manifest/docker/db-data/leveldb-core-data/' +#Type = 'leveldb' +#DataSource = 'manifest/docker/db-data/leveldb-core-data/' +Type = 'tdengine' +Dsn = 'root:taosdata@ws(127.0.0.1:6041)/hummingbird' [MessageQueue] Protocol = 'tcp' diff --git a/cmd/hummingbird-core/res/configuration.toml.dist b/cmd/hummingbird-core/res/configuration.toml.dist index 0c46abd..ea703c6 100644 --- a/cmd/hummingbird-core/res/configuration.toml.dist +++ b/cmd/hummingbird-core/res/configuration.toml.dist @@ -31,6 +31,9 @@ Timeout = 120 [Databases.Metadata.Primary] Type = 'sqlite' DataSource = 'hummingbird/db-data/core-data/core.db?_timeout=5000' +#Type = 'mysql' +#Dsn = 'root:123456@tcp(127.0.0.1:3306)/open-hummingbird?charset=utf8mb4&parseTime=True&loc=Local' + [Databases.Data] [Databases.Data.Primary] diff --git a/go.mod b/go.mod index 06ca4e1..fbd7eea 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,6 @@ require ( github.com/gin-contrib/pprof v1.4.0 github.com/gin-contrib/static v0.0.1 github.com/gin-gonic/gin v1.8.1 - github.com/go-gormigrate/gormigrate/v2 v2.0.0 github.com/gogf/gf/v2 v2.5.2 github.com/golang/mock v1.5.0 github.com/google/uuid v1.3.0 @@ -20,7 +19,6 @@ require ( github.com/gorilla/websocket v1.5.0 github.com/hpcloud/tail v1.0.0 github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c - github.com/jinzhu/gorm v1.9.16 github.com/kirinlabs/HttpRequest v1.1.1 github.com/mitchellh/mapstructure v1.4.3 github.com/nicksnyder/go-i18n/v2 v2.2.0 diff --git a/internal/hummingbird/core/application/deviceapp/deviceapp.go b/internal/hummingbird/core/application/deviceapp/deviceapp.go index 4e24485..27d5099 100644 --- a/internal/hummingbird/core/application/deviceapp/deviceapp.go +++ b/internal/hummingbird/core/application/deviceapp/deviceapp.go @@ -145,7 +145,7 @@ func (p *deviceApp) AddDevice(ctx context.Context, req dtos.DeviceAddRequest) (s return "", err } - err = resourceContainer.DataDBClientFrom(p.dic.Get).CreateTable(ctx, constants.DB_PREFIX+productInfo.Id, deviceId) + err = resourceContainer.DataDBClientFrom(p.dic.Get).CreateTable(ctx, productInfo.Id, deviceId) if err != nil { return "", err } @@ -529,7 +529,7 @@ func (p *deviceApp) DevicesImport(ctx context.Context, file *dtos.ImportFile, pr } for _, device := range devices { - err = resourceContainer.DataDBClientFrom(p.dic.Get).CreateTable(ctx, constants.DB_PREFIX+productInfo.Id, device.Id) + err = resourceContainer.DataDBClientFrom(p.dic.Get).CreateTable(ctx, productInfo.Id, device.Id) if err != nil { return 0, err } diff --git a/internal/hummingbird/core/bootstrap/database/database.go b/internal/hummingbird/core/bootstrap/database/database.go index 5a6b467..c72bd92 100644 --- a/internal/hummingbird/core/bootstrap/database/database.go +++ b/internal/hummingbird/core/bootstrap/database/database.go @@ -38,7 +38,7 @@ func NewDatabase(database *config.ConfigurationStruct) Database { } } -//Return the dbClient interfaces +// Return the dbClient interfaces func (d Database) newDBClient( lc logger.LoggingClient) (interfaces.DBClient, error) { diff --git a/internal/hummingbird/core/controller/rpcserver/driverserver/base.go b/internal/hummingbird/core/controller/rpcserver/driverserver/base.go index 3206b7b..f021973 100644 --- a/internal/hummingbird/core/controller/rpcserver/driverserver/base.go +++ b/internal/hummingbird/core/controller/rpcserver/driverserver/base.go @@ -25,6 +25,6 @@ func RegisterRPCService(lc logger.LoggingClient, dic *di.Container, s *grpc.Serv NewDriverDeviceServer(lc, dic).RegisterServer(s) NewCloudInstanceServer(lc, dic).RegisterServer(s) NewGatewayServer(lc, dic).RegisterServer(s) - NewDriverStorageServer(lc, dic).RegisterServer(s) + //NewDriverStorageServer(lc, dic).RegisterServer(s) NewProductServer(lc, dic).RegisterServer(s) } diff --git a/internal/hummingbird/core/infrastructure/mysql/client.go b/internal/hummingbird/core/infrastructure/mysql/client.go index 40467b9..02fe083 100644 --- a/internal/hummingbird/core/infrastructure/mysql/client.go +++ b/internal/hummingbird/core/infrastructure/mysql/client.go @@ -40,38 +40,38 @@ func NewClient(config dtos.Configuration, lc logger.LoggingClient) (c *Client, e return } // 自动建表 - if err = client.InitTable( - &models.DeviceLibrary{}, - &models.DeviceService{}, - &models.Device{}, - &models.DockerConfig{}, - &models.AdvanceConfig{}, - &models.SystemMetrics{}, - &models.CategoryTemplate{}, - &models.ThingModelTemplate{}, - &models.DriverClassify{}, - &models.User{}, - &models.LanguageSdk{}, - &models.Metrics{}, - &models.Product{}, - &models.Properties{}, - &models.Actions{}, - &models.Events{}, - &models.Unit{}, - &models.MqttAuth{}, - &models.AlertRule{}, - &models.Scene{}, - &models.SceneLog{}, - &models.AlertList{}, - &models.QuickNavigation{}, - &models.Doc{}, - &models.MsgGather{}, - &models.RuleEngine{}, - &models.DataResource{}, - ); err != nil { - errEdgeX = errort.NewCommonEdgeX(errort.DefaultSystemError, "database failed to init", err) - return - } + //if err = client.InitTable( + // &models.DeviceLibrary{}, + // &models.DeviceService{}, + // &models.Device{}, + // &models.DockerConfig{}, + // &models.AdvanceConfig{}, + // &models.SystemMetrics{}, + // &models.CategoryTemplate{}, + // &models.ThingModelTemplate{}, + // &models.DriverClassify{}, + // &models.User{}, + // &models.LanguageSdk{}, + // &models.Metrics{}, + // &models.Product{}, + // &models.Properties{}, + // &models.Actions{}, + // &models.Events{}, + // &models.Unit{}, + // &models.MqttAuth{}, + // &models.AlertRule{}, + // &models.Scene{}, + // &models.SceneLog{}, + // &models.AlertList{}, + // &models.QuickNavigation{}, + // &models.Doc{}, + // &models.MsgGather{}, + // &models.RuleEngine{}, + // &models.DataResource{}, + //); err != nil { + // errEdgeX = errort.NewCommonEdgeX(errort.DefaultSystemError, "database failed to init", err) + // return + //} c = &Client{ client: client, loggingClient: lc, diff --git a/internal/hummingbird/core/infrastructure/sqlite/client.go b/internal/hummingbird/core/infrastructure/sqlite/client.go index ec2ae55..a0bd43a 100644 --- a/internal/hummingbird/core/infrastructure/sqlite/client.go +++ b/internal/hummingbird/core/infrastructure/sqlite/client.go @@ -40,42 +40,42 @@ func NewClient(config dtos.Configuration, lc logger.LoggingClient) (c *Client, e return } // 自动建表 - if err = client.InitTable( - &models.DeviceLibrary{}, - &models.DeviceService{}, - &models.Device{}, - //&models.NetworkConfig{}, - &models.DockerConfig{}, - //&models.GatewayThingModel{}, - &models.AdvanceConfig{}, - //&models.OTAVersion{}, - //&models.CustomMQTT{}, - &models.CategoryTemplate{}, - &models.ThingModelTemplate{}, - &models.DriverClassify{}, - &models.User{}, - &models.LanguageSdk{}, - &models.Product{}, - &models.Properties{}, - &models.Actions{}, - &models.Events{}, - &models.Unit{}, - &models.MqttAuth{}, - &models.SystemMetrics{}, - &models.AlertRule{}, - &models.Scene{}, - &models.SceneLog{}, - &models.AlertList{}, - //&models.DeviceAlertRule{}, - &models.QuickNavigation{}, - &models.Doc{}, - &models.MsgGather{}, - &models.RuleEngine{}, - &models.DataResource{}, - ); err != nil { - errEdgeX = errort.NewCommonEdgeX(errort.DefaultSystemError, "database failed to init", err) - return - } + //if err = client.InitTable( + // &models.DeviceLibrary{}, + // &models.DeviceService{}, + // &models.Device{}, + // //&models.NetworkConfig{}, + // &models.DockerConfig{}, + // //&models.GatewayThingModel{}, + // &models.AdvanceConfig{}, + // //&models.OTAVersion{}, + // //&models.CustomMQTT{}, + // &models.CategoryTemplate{}, + // &models.ThingModelTemplate{}, + // &models.DriverClassify{}, + // &models.User{}, + // &models.LanguageSdk{}, + // &models.Product{}, + // &models.Properties{}, + // &models.Actions{}, + // &models.Events{}, + // &models.Unit{}, + // &models.MqttAuth{}, + // &models.SystemMetrics{}, + // &models.AlertRule{}, + // &models.Scene{}, + // &models.SceneLog{}, + // &models.AlertList{}, + // //&models.DeviceAlertRule{}, + // &models.QuickNavigation{}, + // &models.Doc{}, + // &models.MsgGather{}, + // &models.RuleEngine{}, + // &models.DataResource{}, + //); err != nil { + // errEdgeX = errort.NewCommonEdgeX(errort.DefaultSystemError, "database failed to init", err) + // return + //} c = &Client{ client: client, loggingClient: lc, diff --git a/internal/pkg/errort/code.go b/internal/pkg/errort/code.go index 10e4327..275b493 100644 --- a/internal/pkg/errort/code.go +++ b/internal/pkg/errort/code.go @@ -63,13 +63,14 @@ const ( DeviceAssociationSceneRule = 20416 // 产品 - ProductMustDeleteDevice uint32 = 20602 - ProductNotExist uint32 = 20604 - ProductPropertyCodeNotExist uint32 = 20608 - ProductAssociationAlertRule = 20611 - ProductUnRelease = 20612 - ProductRelease = 20613 - ThingModelCodeExist = 20614 + ProductMustDeleteDevice uint32 = 20602 + ProductNotExist uint32 = 20604 + ProductPropertyCodeNotExist uint32 = 20608 + ProductAssociationAlertRule = 20611 + ProductUnRelease = 20612 + ProductRelease = 20613 + ThingModelCodeExist = 20614 + ThingModeTypeCannotBeModified = 20616 // 镜像仓库 DockerConfigMustDeleteDeviceLibrary uint32 = 20701 diff --git a/internal/pkg/i18n/locales/en.go b/internal/pkg/i18n/locales/en.go index 4774eb5..8eafb86 100644 --- a/internal/pkg/i18n/locales/en.go +++ b/internal/pkg/i18n/locales/en.go @@ -298,6 +298,10 @@ func GetEnMessages() []*i18n.Message { ID: "20614", Other: `Code identifier already exists`, }, + { + ID: "20616", + Other: `The data type does not support modification. Please delete and recreate`, + }, // docker config { diff --git a/internal/pkg/i18n/locales/zh.go b/internal/pkg/i18n/locales/zh.go index 031e1e9..bd67a6c 100644 --- a/internal/pkg/i18n/locales/zh.go +++ b/internal/pkg/i18n/locales/zh.go @@ -297,6 +297,10 @@ func GetZhMessages() []*i18n.Message { ID: "20614", Other: `标识符已重复,请修改标识符`, }, + { + ID: "20616", + Other: `数据类型不支持修改,请删除重新建立`, + }, // docker config { diff --git a/internal/tools/datadb/tdengine/client.go b/internal/tools/datadb/tdengine/client.go index eb15180..e52816b 100644 --- a/internal/tools/datadb/tdengine/client.go +++ b/internal/tools/datadb/tdengine/client.go @@ -24,10 +24,13 @@ import ( interfaces "github.com/winc-link/hummingbird/internal/hummingbird/core/interface" "github.com/winc-link/hummingbird/internal/models" "github.com/winc-link/hummingbird/internal/pkg/constants" + "github.com/winc-link/hummingbird/internal/pkg/errort" "strconv" "strings" "time" + _ "github.com/taosdata/driver-go/v3/taosWS" + "github.com/gogf/gf/v2/container/gvar" "github.com/winc-link/hummingbird/internal/dtos" @@ -54,7 +57,7 @@ var dbName = "hummingbird" func NewClient(config dtos.Configuration, lc logger.LoggingClient) (c interfaces.DataDBClient, errEdgeX error) { dsn := config.Dsn - taos, err := sql.Open("taosRestful", dsn) + taos, err := sql.Open("taosWS", dsn) if err != nil { return nil, err @@ -115,83 +118,70 @@ func (c *Client) CreateStable(ctx context.Context, product models.Product) (err for _, action := range product.Actions { columns = append(columns, c.column("", action.Code, action.Name)) } - - tags := make([]string, 0) - tags = append(tags, "device VARCHAR(255) COMMENT '设备标识'") - tConent := "" - if len(tags) > 0 { - tConent = fmt.Sprintf("TAGS (%s)", strings.Join(tags, ",")) - } - sql := fmt.Sprintf("CREATE STABLE %s.%s (%s) %s", dbName, constants.DB_PREFIX+product.Id, strings.Join(columns, ","), tConent) - c.loggingClient.Info("create s table sql:", sql) + sql := fmt.Sprintf("CREATE STABLE IF NOT EXISTS %s.%s (%s) TAGS (device_id NCHAR(255))", dbName, "product_"+product.Id, strings.Join(columns, ",")) _, err = c.client.Exec(sql) return err } // CreateTable 创建表 func (c *Client) CreateTable(ctx context.Context, stable, table string) (err error) { - sql := fmt.Sprintf("CREATE TABLE %s%s USING %s (device) TAGS ('%s')", constants.DB_PREFIX, table, stable, table) + sql := fmt.Sprintf("CREATE TABLE IF NOT EXISTS %s.device_%s USING %s.%s TAGS('%s')", dbName, table, dbName, "product_"+stable, table) + fmt.Println(sql) _, err = c.client.Exec(sql) return } func (s *Client) DropStable(ctx context.Context, table string) (err error) { - sql := fmt.Sprintf("DROP STABLE IF EXISTS %s.%s", dbName, constants.DB_PREFIX+table) + sql := fmt.Sprintf("DROP STABLE IF EXISTS %s.%s", dbName, "product_"+table) _, err = s.client.Exec(sql) - return } // DropTable 删除子表 func (s *Client) DropTable(ctx context.Context, table string) (err error) { - sql := fmt.Sprintf("DROP TABLE IF EXISTS %s.%s", dbName, constants.DB_PREFIX+table) + sql := fmt.Sprintf("DROP TABLE IF EXISTS %s.%s", dbName, "device_"+table) _, err = s.client.Exec(sql) return } func (c *Client) column(specsType constants.SpecsType, code string, name string) string { column := "" - comment := "" - if name != "" { - comment = "COMMENT '" + name + "'" - } tdType := "" - - //switch specsType { - //case constants.SpecsTypeInt: - // tdType = "INT" - //case constants.SpecsTypeFloat: - // tdType = "FLOAT" - //case constants.SpecsTypeText: - // tdType = "NCHAR(255)" - //case constants.SpecsTypeDate: - // tdType = "TIMESTAMP" - //case constants.SpecsTypeBool: - // tdType = "BOOL" - //default: - //} - tdType = "NCHAR(255)" - column = fmt.Sprintf("%s %s %s", code, tdType, comment) + switch specsType { + case constants.SpecsTypeInt: + tdType = "INT" + case constants.SpecsTypeFloat: + tdType = "FLOAT" + case constants.SpecsTypeText: + tdType = "NCHAR(255)" + case constants.SpecsTypeDate: + tdType = "TIMESTAMP" + case constants.SpecsTypeBool: + tdType = "BOOL" + default: + tdType = "NCHAR(255)" + } + column = fmt.Sprintf("%s %s", code, tdType) return column } func (c *Client) AddDatabaseField(ctx context.Context, stableName string, specsType constants.SpecsType, code string, name string) (err error) { - sql := fmt.Sprintf("ALTER STABLE %s.%s ADD COLUMN %s", dbName, constants.DB_PREFIX+stableName, c.column(specsType, code, name)) + sql := fmt.Sprintf("ALTER STABLE %s.%s ADD COLUMN %s", dbName, "product_"+stableName, c.column(specsType, code, name)) _, err = c.client.Exec(sql) return } func (c *Client) DelDatabaseField(ctx context.Context, stableName, code string) (err error) { - sql := fmt.Sprintf("ALTER STABLE %s.%s DROP COLUMN %s", dbName, constants.DB_PREFIX+stableName, code) + sql := fmt.Sprintf("ALTER STABLE %s.%s DROP COLUMN %s", dbName, "product_"+stableName, code) _, err = c.client.Exec(sql) return } func (c *Client) ModifyDatabaseField(ctx context.Context, stableName string, specsType constants.SpecsType, code string, name string) (err error) { - sql := fmt.Sprintf("ALTER STABLE %s.%s MODIFY COLUMN %s", dbName, constants.DB_PREFIX+stableName, c.column(specsType, code, name)) + sql := fmt.Sprintf("ALTER STABLE %s.%s MODIFY COLUMN %s", dbName, "product_"+stableName, c.column(specsType, code, name)) _, err = c.client.Exec(sql) - if err != nil { - return + if strings.Contains(err.Error(), "column length could be modified") { + return errort.NewCommonEdgeX(errort.ThingModeTypeCannotBeModified, "Only varbinary/binary/nchar/geometry column length could be modified, and the length can only be increased, not decreased", nil) } return } @@ -220,16 +210,15 @@ func (c *Client) GetDeviceService(req dtos.ThingModelServiceDataRequest, device lunix := time.UnixMilli(int64(li)) if req.Code != "" { - err = c.client.QueryRow("select count(*) from ? where ts >= '?' and ts <= '?' and ? is not null", "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000"), strings.ToLower(req.Code)).Scan(&count) + err = c.client.QueryRow("select count(*) from ? where ts >= '?' and ts <= '?' and ? is not null", "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000"), strings.ToLower(req.Code)).Scan(&count) if err != nil { c.loggingClient.Error("query data:", err) return response, count, nil } - //sql := fmt.Sprintf("select ts,? from ? where ts >= '?' and ts <= '?' and ? is not null order by ts desc limit %d, %d", (req.Page-1)*req.PageSize, req.PageSize) sql := fmt.Sprintf("select ts,? from ? where ts >= '?' and ts <= '?' and ? is not null order by ts desc limit %d, %d", (req.Page-1)*req.PageSize, req.PageSize) - rows, err := c.client.Query(sql, strings.ToLower(req.Code), "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000"), strings.ToLower(req.Code)) + rows, err := c.client.Query(sql, strings.ToLower(req.Code), "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000"), strings.ToLower(req.Code)) if err != nil { c.loggingClient.Error("query data:", err) @@ -273,18 +262,16 @@ func (c *Client) GetDeviceService(req dtos.ThingModelServiceDataRequest, device } codes := strings.Join(code, ",") res := strings.Join(subSQLs, " or ") - fmt.Println("res", res) - //p2psignalupstream is not null sql := fmt.Sprintf("select count(*) from ? where ts >= '?' and ts <= '?' and (%s)", res) - err = c.client.QueryRow(sql, "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000")).Scan(&count) + err = c.client.QueryRow(sql, "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000")).Scan(&count) if err != nil { c.loggingClient.Error("query data:", err) return response, count, nil } sql2 := fmt.Sprintf("select %s from ? where ts >= '?' and ts <= '?' and (%s) order by ts desc limit %d, %d", codes, res, (req.Page-1)*req.PageSize, req.PageSize) - rows, err := c.client.Query(sql2, "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000")) + rows, err := c.client.Query(sql2, "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000")) if err != nil { c.loggingClient.Error("query data:", err) @@ -307,7 +294,6 @@ func (c *Client) GetDeviceService(req dtos.ThingModelServiceDataRequest, device for i, cs := range columns { rs[cs] = gvar.New(values[i]) } - //fmt.Println() var reportData dtos.SaveServiceIssueData for _, value := range rs { if value.String() != "" { @@ -352,7 +338,7 @@ func (c *Client) GetDeviceEvent(req dtos.ThingModelEventDataRequest, device mode lunix := time.UnixMilli(int64(li)) if req.EventCode != "" { - err = c.client.QueryRow("select count(*) from ? where ts >= '?' and ts <= '?' and ? is not null", "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000"), strings.ToLower(req.EventCode)).Scan(&count) + err = c.client.QueryRow("select count(*) from ? where ts >= '?' and ts <= '?' and ? is not null", "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000"), strings.ToLower(req.EventCode)).Scan(&count) if err != nil { c.loggingClient.Error("query data:", err) return response, count, nil @@ -361,7 +347,7 @@ func (c *Client) GetDeviceEvent(req dtos.ThingModelEventDataRequest, device mode //sql := fmt.Sprintf("select ts,? from ? where ts >= '?' and ts <= '?' and ? is not null order by ts desc limit %d, %d", (req.Page-1)*req.PageSize, req.PageSize) sql := fmt.Sprintf("select ts,? from ? where ts >= '?' and ts <= '?' and ? is not null order by ts desc limit %d, %d", (req.Page-1)*req.PageSize, req.PageSize) - rows, err := c.client.Query(sql, strings.ToLower(req.EventCode), "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000"), strings.ToLower(req.EventCode)) + rows, err := c.client.Query(sql, strings.ToLower(req.EventCode), "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000"), strings.ToLower(req.EventCode)) if err != nil { c.loggingClient.Error("query data:", err) @@ -405,17 +391,16 @@ func (c *Client) GetDeviceEvent(req dtos.ThingModelEventDataRequest, device mode } codes := strings.Join(code, ",") res := strings.Join(subSQLs, " or ") - //p2psignalupstream is not null sql := fmt.Sprintf("select count(*) from ? where ts >= '?' and ts <= '?' and (%s)", res) - err = c.client.QueryRow(sql, "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000")).Scan(&count) + err = c.client.QueryRow(sql, "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000")).Scan(&count) if err != nil { c.loggingClient.Error("query data:", err) return response, count, nil } sql2 := fmt.Sprintf("select %s from ? where ts >= '?' and ts <= '?' and (%s) order by ts desc limit %d, %d", codes, res, (req.Page-1)*req.PageSize, req.PageSize) - rows, err := c.client.Query(sql2, "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000")) + rows, err := c.client.Query(sql2, "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000")) if err != nil { c.loggingClient.Error("query data:", err) @@ -490,15 +475,19 @@ func (c *Client) GetDeviceProperty(req dtos.ThingModelPropertyDataRequest, devic } lunix := time.UnixMilli(int64(li)) - err = c.client.QueryRow("select count(*) from ? where ts >= '?' and ts <= '?' and ? is not null", "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000"), strings.ToLower(req.Code)).Scan(&count) + err = c.client.QueryRow("select count(*) from ? where ts >= '?' and ts <= '?' and ? is not null", "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000"), strings.ToLower(req.Code)).Scan(&count) if err != nil { c.loggingClient.Error("query data:", err) return []dtos.ReportData{}, count, nil } + var sql string + if req.IsAll { + sql = fmt.Sprintf("select ts,? from ? where ts >= '?' and ts <= '?' and ? is not null order by ts desc") + } else { + sql = fmt.Sprintf("select ts,? from ? where ts >= '?' and ts <= '?' and ? is not null order by ts desc limit %d, %d", (req.Page-1)*req.PageSize, req.PageSize) + } - sql := fmt.Sprintf("select ts,? from ? where ts >= '?' and ts <= '?' and ? is not null order by ts desc limit %d, %d", (req.Page-1)*req.PageSize, req.PageSize) - - rows, err := c.client.Query(sql, strings.ToLower(req.Code), "hummingbird_"+device.Id, funix.Format("2006-01-02 15:04:05.000"), lunix.Format("2006-01-02 15:04:05.000"), strings.ToLower(req.Code)) + rows, err := c.client.Query(sql, strings.ToLower(req.Code), "device_"+device.Id, funix.UTC().Format("2006-01-02 15:04:05.000"), lunix.UTC().Format("2006-01-02 15:04:05.000"), strings.ToLower(req.Code)) if err != nil { c.loggingClient.Error("query data:", err) @@ -529,15 +518,9 @@ func (c *Client) GetDeviceProperty(req dtos.ThingModelPropertyDataRequest, devic reportData.Value = rs[strings.ToLower(req.Code)].String() response = append(response, reportData) } - } else if req.First { - } else if req.Last { - //sql := "select ts,? from ? where ? is not null order by ts desc limit 1" - currentTime := time.Now() - oldTime := currentTime.AddDate(0, 0, -7) - sql := fmt.Sprintf("select ts,? from ? where ? is not null and ts >= %s order by ts desc limit 1", oldTime.Format("2006-01-02 15:04:05.000")) - rows, err := c.client.Query(sql, strings.ToLower(req.Code), "hummingbird_"+device.Id, strings.ToLower(req.Code)) - + sql := "select ts,last(?) as ? from hummingbird.?" + rows, err := c.client.Query(sql, strings.ToLower(req.Code), strings.ToLower(req.Code), "device_"+device.Id) if err != nil { return []dtos.ReportData{}, count, nil } @@ -559,7 +542,6 @@ func (c *Client) GetDeviceProperty(req dtos.ThingModelPropertyDataRequest, devic for i, cs := range columns { rs[cs] = gvar.New(values[i]) } - rows.Close() } var reportData dtos.ReportData reportData.Time = rs["ts"].Time().UnixMilli() @@ -568,7 +550,6 @@ func (c *Client) GetDeviceProperty(req dtos.ThingModelPropertyDataRequest, devic } reportData.Value = rs[strings.ToLower(req.Code)].String() response = append(response, reportData) - //return []dtos.ReportData{V}, nil } return response, count, nil diff --git a/manifest/image/miniapp-merge1.png b/manifest/image/miniapp-merge1.png new file mode 100644 index 0000000..f38cc07 Binary files /dev/null and b/manifest/image/miniapp-merge1.png differ diff --git a/manifest/image/miniapp-merge2.png b/manifest/image/miniapp-merge2.png new file mode 100644 index 0000000..01a8798 Binary files /dev/null and b/manifest/image/miniapp-merge2.png differ diff --git a/manifest/image/miniapp-merge3.png b/manifest/image/miniapp-merge3.png new file mode 100644 index 0000000..4b3b076 Binary files /dev/null and b/manifest/image/miniapp-merge3.png differ diff --git a/manifest/image/miniapp-merge4.png b/manifest/image/miniapp-merge4.png new file mode 100644 index 0000000..13b9bbd Binary files /dev/null and b/manifest/image/miniapp-merge4.png differ diff --git a/manifest/image/qq.png b/manifest/image/qq.png new file mode 100644 index 0000000..e9ce16c Binary files /dev/null and b/manifest/image/qq.png differ diff --git a/manifest/image/qweixin.png b/manifest/image/qweixin.png new file mode 100644 index 0000000..2dd057b Binary files /dev/null and b/manifest/image/qweixin.png differ diff --git a/manifest/sql/actions.sql b/manifest/sql/actions.sql deleted file mode 100644 index 6baed12..0000000 --- a/manifest/sql/actions.sql +++ /dev/null @@ -1,228 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:33:22.8950 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "actions"; -CREATE TABLE `actions` (`id` text NOT NULL,`product_id` text,`code` text,`name` text,`description` text,`require` numeric,`call_type` text,`input_params` text,`output_params` text,`tag` text,`system` numeric,`created` integer,`modified` integer,PRIMARY KEY (`id`),CONSTRAINT `fk_product_actions` FOREIGN KEY (`product_id`) REFERENCES `product`(`id`) ON DELETE CASCADE ON UPDATE CASCADE); - -INSERT INTO "actions" ("id", "product_id", "code", "name", "description", "require", "call_type", "input_params", "output_params", "tag", "system", "created", "modified") VALUES -('1007404327', '', 'Call', '呼叫', '', '1', 'ASYNC', '[{"code":"RoomNumber","name":"房号","type_spec":{"type":"text","specs":"{\"length\":\"12\"}"}}]', '', '系统', '1', '1692347066033', '0'), -('100886634', '', 'RemoteUnfreeze', '远程解冻', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065852', '0'), -('1024595217', '', 'setPassword', '设置密码', '', '1', 'SYNC', '[{"code":"operateType","name":"操作类型","type_spec":{"type":"enum","specs":"{\"0\":\"设置密码\",\"1\":\"删除密码\"}"}},{"code":"password","name":"密码","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"number","name":"密码编号","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"999999999\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"userId","name":"用户Id","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065864', '0'), -('1056590803', '', 'DefaultDisplay', '默认显示', '默认显示', '0', 'ASYNC', '[{"code":"DisplayContent","name":"显示内容","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"RowNumber","name":"屏幕行号","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"DefaultSituation","name":"默认场景","type_spec":{"type":"enum","specs":"{\"0\":\"空闲\",\"1\":\"普通权限车辆_白名单车辆过车\",\"2\":\"黑名单车辆过车\",\"3\":\"临时车辆过车\",\"4\":\"无牌车辆过车\"}"}}]', '', '系统', '1', '1692347065790', '0'), -('1059728589', '', 'PeelSensor', '传感器去皮', '', '0', 'ASYNC', '[{"code":"DeviceID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347066031', '0'), -('1090530772', '', 'QueryAlgoAbility', '获取当前算法列表', '', '1', 'SYNC', '', '', '系统', '1', '1692347065972', '0'), -('1096023366', '', 'Getweathers', '获取天气信息参数', '', '0', 'ASYNC', '', '', '系统', '1', '1692347066132', '0'), -('1106094501', '', 'WaterTemp_Control', '水温温度调节', '', '0', 'ASYNC', '[{"code":"mode","name":"工作模式","type_spec":{"type":"enum","specs":"{\"0\":\"升温\",\"1\":\"降温\"}"}},{"code":"step","name":"步长_升高一度需要分钟数","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"min\"}"}},{"code":"SwitchNo","name":"开关","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"6\",\"step\":\"1\"}"}}]', '', '系统', '1', '1692347065890', '0'), -('113891838', '', 'DeployAlgorithm', '部署算法模型', '', '1', 'ASYNC', '[{"code":"AlgoURL","name":"算法模型文件URL","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"AlgoName","name":"算法模型文件名","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"AlgoVersion","name":"算法版本","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065893', '0'), -('1144132436', '', 'LoadFile', '下载文件', '从OSS端下载下载裁切文件到裁床文件路径下', '0', 'ASYNC', '[{"code":"AbsoluteDirectoryAndFileName","name":"文件目录和文件名","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065949', '0'), -('1152205001', '', 'ImageInference', '图片推理', '', '1', 'SYNC', '[{"code":"Algorithm","name":"算法名","type_spec":{"type":"text","specs":"{\"length\":\"256\"}"}},{"code":"Type","name":"类型","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"Data","name":"数据","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"AlgoParam","name":"算法参数","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065972', '0'), -('1211144967', '', 'CreateAlgoTask', '创建算法任务', '', '1', 'SYNC', '[{"code":"TaskName","name":"任务名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"SubProductKey","name":"子设备产品名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"SubDeviceName","name":"子设备名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"AlgorithmId","name":"算法Id","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"AlgorithmParam","name":"算法参数","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"Comment","name":"备注","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('1240688154', '', 'QueryAIBoxDiagData', '查询AIBox的诊断数据', '该服务消息接口通常在调用CaptureAIBoxDiagData之后每隔一段时间查询使用', '1', 'SYNC', '[{"code":"Type","name":"类型","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"TaskId","name":"任务编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065972', '0'), -('1252934194', '', 'RemoteClose', '远程关门', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065852', '0'), -('1253540402', '', 'AddAlgorithmModel', '增加算法模型', '', '1', 'ASYNC', '[{"code":"AlgoURL","name":"算法模型下载URL","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"AlgoID","name":"算法模型ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065897', '0'), -('1262046330', '', 'ReadMachineState', '读取机器状态', '', '1', 'ASYNC', '[{"code":"MachineState","name":"机器状态","type_spec":{"type":"enum","specs":"{\"0\":\"standby\",\"1\":\"locked\",\"2\":\"active\",\"3\":\"jogg\",\"4\":\"pause\"}"}}]', '', '系统', '1', '1692347065985', '0'), -('1262689637', '', 'SwitchAudio', '单曲切换', '', '0', 'ASYNC', '', '', '系统', '1', '1692347066089', '0'), -('1264265580', '', 'StopAlgorithm', '停止算法', '', '1', 'ASYNC', '[{"code":"TaskID","name":"任务号","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065893', '0'), -('1299540462', '', 'CallCycle', '寻车', '', '0', 'ASYNC', '[{"code":"TerminalID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"8\"}"}},{"code":"SerialNumber","name":"指令编号","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}}]', '', '系统', '1', '1692347066006', '0'), -('1327701036', '', 'StartAlgorithmTask', '启动算法任务', '', '1', 'SYNC', '[{"code":"ProductKey","name":"子设备产品名","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"DeviceName","name":"子设备名","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"Algorithm","name":"算法","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"AlgorithmParam","name":"算法参数","type_spec":{"type":"text","specs":"{\"length\":\"4096\"}"}}]', '', '系统', '1', '1692347065970', '0'), -('1328053457', '', 'SetTimerTask', '时间任务下发', '', '0', 'ASYNC', '', '', '系统', '1', '1692347066247', '0'), -('1328910147', '', 'GetBarrierList', '获取道闸列表', '', '1', 'SYNC', '', '', '系统', '1', '1692347065854', '0'), -('1343174440', '', 'Restart', '重新启动', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065942', '0'), -('1345655588', '', 'SyncSipNumber', '可视对讲-颁发SipNumber', '', '0', 'SYNC', '[{"code":"sipNumber","name":"sipNumber","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"password","name":"密码","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"sipServerPort","name":"sipServer端口号","type_spec":{"type":"text","specs":"{\"length\":\"5\"}"}},{"code":"sipServerAddr","name":"sipServer地址","type_spec":{"type":"text","specs":"{\"length\":\"40\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('1359642303', '', 'DiskFormat', '磁盘格式化', '磁盘格式化', '1', 'ASYNC', '', '', '系统', '1', '1692347065828', '0'), -('136161699', '', 'ConfigQrCodePermission', '配置二维码权限', '', '1', 'ASYNC', '[{"code":"identityId","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"qrCode","name":"二维码","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"effectiveTime","name":"生效时间","type_spec":{"type":"date","specs":"{}"}},{"code":"expireTime","name":"过期时间","type_spec":{"type":"date","specs":"{}"}},{"code":"permission","name":"楼层权限","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"text\"}}"}}]', '', '系统', '1', '1692347065831', '0'), -('1399618408', '', 'GetRelationAreaList', '查询关联区域列表', '', '1', 'SYNC', '', '', '系统', '1', '1692347065857', '0'), -('1404289554', '', 'StartAlgorithmModel', '启动算法模型', '', '1', 'ASYNC', '[{"code":"VideoSrcURL","name":"视频源URL","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"TaskID","name":"算法任务号","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"AlgoID","name":"算法模型ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065897', '0'), -('145496669', '', 'SetAlgoUnitBinding', '设置算法配置', '', '1', 'SYNC', '[{"code":"BindingList","name":"绑定列表","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"struct\"}}"}}]', '', '系统', '1', '1692347065973', '0'), -('146348318', '', 'StartAlgoTask', '开启算法任务', '', '1', 'SYNC', '[{"code":"TaskId","name":"任务编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('1466246836', '', 'Reboot', '重启', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065788', '0'), -('1482058877', '', 'SyncFacePictures', '人脸-同步人脸库图片', '', '0', 'SYNC', '[{"code":"FacePicURL","name":"同步文件URL地址","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('1487692239', '', 'ToggleLightSwitch', '翻转主灯开关', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065904', '0'), -('1488657724', '', 'VehDtcService', 'ECO故障码', '', '0', 'ASYNC', '[{"code":"DeviceID","name":"设备码","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065822', '0'), -('1489814881', '', 'set', '设备控制', '', '0', 'SYNC', '[{"code":"Set_Temputer","name":"设定温度","type_spec":{"type":"int","specs":"{\"min\":\"35\",\"max\":\"75\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}},{"code":"Safety_Temputer_Lock","name":"防烫保护锁","type_spec":{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}},{"code":"Preheat_Mode","name":"预热模式","type_spec":{"type":"enum","specs":"{\"0\":\"关闭预热\",\"1\":\"单次预热\",\"2\":\"定时预热\",\"3\":\"全天预热\"}"}},{"code":"Timer_Quantum","name":"定时信息","type_spec":{"type":"text","specs":"{\"length\":\"254\"}"}},{"code":"PowerSwitch","name":"电源开关","type_spec":{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}}]', '', '系统', '1', '1692347066162', '0'), -('1496446943', '', 'SetLightSwitchTimer', '设置主灯开关倒计时', '', '0', 'ASYNC', '[{"code":"Timer","name":"计时器","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}},{"code":"LightSwitch","name":"主灯开关","type_spec":{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}}]', '', '系统', '1', '1692347066213', '0'), -('1514209312', '', 'addQrCode', '新增二维码', '', '1', 'SYNC', '[{"code":"qrCode","name":"二维码","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"expiryTime","name":"截止时间","type_spec":{"type":"date","specs":"{}"}},{"code":"userId","name":"用户Id","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"effectiveTime","name":"生效时间","type_spec":{"type":"date","specs":"{}"}}]', '', '系统', '1', '1692347065873', '0'), -('1531668270', '', 'ClearAllAlgorithms', '清除所有算法', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065893', '0'), -('1552218795', '', 'DeleteSingleAlgo', '删除指定算法模型', '', '1', 'ASYNC', '[{"code":"AlgoName","name":"算法名称","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"AlgoVersion","name":"算法版本","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065893', '0'), -('1570082692', '', 'StopJob', '停止任务', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065985', '0'), -('1574622278', '', 'QueryDeviceDiagnosisResult', '查询诊断结果', '', '1', 'SYNC', '[{"code":"ProductKey","name":"子设备PK","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"DeviceName","name":"子设备DN","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"DiagnosisType","name":"诊断类型","type_spec":{"type":"enum","specs":"{\"0\":\"连接诊断\",\"1\":\"视频诊断\"}"}}]', '', '系统', '1', '1692347065972', '0'), -('1602876723', '', 'CtrlCommand', '控制指令', '', '0', 'ASYNC', '[{"code":"CommandType","name":"指令类型","type_spec":{"type":"enum","specs":"{\"0\":\"重置无车\",\"1\":\"重置标尺\",\"2\":\"关机\",\"3\":\"强制重启\"}"}}]', '', '系统', '1', '1692347065914', '0'), -('162579971', '', 'DeleteAlgoTask', '删除算法任务', '', '1', 'SYNC', '[{"code":"TaskId","name":"任务编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('1632936933', '', 'StopCountdown', '停止倒计时', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065918', '0'), -('1681864743', '', 'AddVehicleInfo', '新增车辆信息', '', '1', 'SYNC', '[{"code":"UserName","name":"用户姓名","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"CellPhoneNumber","name":"车主手机号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"IdNumber","name":"身份证号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"StateLocked","name":"锁定状态","type_spec":{"type":"enum","specs":"{\"0\":\"没有锁定\",\"1\":\"锁定\"}"}},{"code":"LockStartExpireTime","name":"锁车起始时间","type_spec":{"type":"date","specs":"{}"}},{"code":"LockEndExpireTime","name":"锁车截止时间","type_spec":{"type":"date","specs":"{}"}},{"code":"AccessBarrierListUrl","name":"通行权限道闸列表Url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065854', '0'), -('168496869', '', 'QueryContent', '查询内容', '内容推荐', '0', 'SYNC', '[{"code":"CreativeID","name":"内容创意ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}}]', '', '系统', '1', '1692347066063', '0'), -('1692944920', '', 'remoteOpen', '通用-远程开门', '', '0', 'SYNC', '', '', '系统', '1', '1692347065806', '0'), -('1712718609', '', 'StopVod', '停止录像观看', '', '0', 'ASYNC', '[{"code":"SessionID","name":"会话ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065799', '0'), -('1725918157', '', 'StopAlgoTask', '关闭算法任务', '', '1', 'SYNC', '[{"code":"TaskId","name":"任务编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('1809426428', '', 'QueryAlgorithmList', '查询已部署的所有算法', '调用者根据StoreID获取设备上已部署的算法名称、算法版本信息。', '1', 'ASYNC', '', '', '系统', '1', '1692347065893', '0'), -('1825723909', '', 'StartP2PStreaming', '开始P2P直播', '', '0', 'ASYNC', '[{"code":"StunUrl","name":"STUN服务地址","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"SignalUrl","name":"信号服务地址","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065800', '0'), -('184368697', '', 'listInventory', '批量库存查询', '批量库存查询', '1', 'SYNC', '', '', '系统', '1', '1692347066113', '0'), -('1908213066', '', 'AddVehicleIOfBlackList', '新增黑名单车辆', '', '1', 'SYNC', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065857', '0'), -('1955873582', '', 'TriggerRecognition', '触发抓拍', '触发抓拍', '1', 'SYNC', '', '', '系统', '1', '1692347065790', '0'), -('1959262538', '', 'Reset', '复位', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065949', '0'), -('2002354250', '', 'SendDecryptionKey', '发送解密密钥', '', '1', 'ASYNC', '[{"code":"Code","name":"结果","type_spec":{"type":"enum","specs":"{\"0\":\"成功\",\"1\":\"失败\"}"}},{"code":"Message","name":"信息","type_spec":{"type":"text","specs":"{\"length\":\"256\"}"}},{"code":"DecryptionKey","name":"解密秘钥","type_spec":{"type":"text","specs":"{\"length\":\"256\"}"}},{"code":"ModelId","name":"模型id","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('2027438631', '', 'ReceiveEvents', '事件触发', '', '0', 'ASYNC', '[{"code":"EventID","name":"事件编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"EventTime","name":"事件发生时间","type_spec":{"type":"date","specs":"{}"}},{"code":"EventCode","name":"事件类型编号","type_spec":{"type":"text","specs":"{\"length\":\"8\"}"}},{"code":"EventPos","name":"事件位置编号","type_spec":{"type":"text","specs":"{\"length\":\"8\"}"}}]', '', '系统', '1', '1692347065949', '0'), -('2048585526', '', 'deliverCommodity', '出货', '出货', '1', 'ASYNC', '[{"code":"x","name":"横坐标","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\"}"}},{"code":"y","name":"纵坐标","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\"}"}},{"code":"quantity","name":"数量","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\"}"}},{"code":"orderNo","name":"订单号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347066113', '0'), -('2067098976', '', 'ReleaseFloors', '释放受控楼层', '', '1', 'ASYNC', '[{"code":"targetFloorsList","name":"要释放的楼层","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"text\"}}"}}]', '', '系统', '1', '1692347065831', '0'), -('2083687562', '', 'querySipNumber', '可视对讲_查询SipNumber', '', '0', 'SYNC', '', '', '系统', '1', '1692347065806', '0'), -('2098018341', '', 'StartVodByTime', '开始录像按时间观看', '', '1', 'ASYNC', '[{"code":"EncryptType","name":"加密类型","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9999\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"EncryptKey","name":"密钥","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"Scheme","name":"流协议","type_spec":{"type":"enum","specs":"{\"0\":\"RTMP\",\"1\":\"RTSP\"}"}},{"code":"PushUrl","name":"推流地址","type_spec":{"type":"text","specs":"{\"length\":\"512\"}"}},{"code":"SessionID","name":"会话ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"BeginTime","name":"开始时间","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"}"}},{"code":"EndTime","name":"结束时间","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}}]', '', '系统', '1', '1692347065788', '0'), -('2115176952', '', 'SetBackUpAndDown', '设置靠背升降', '', '0', 'ASYNC', '[{"code":"BackLiftingMode","name":"靠背升降模式","type_spec":{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"靠背升\",\"2\":\"靠背降\",\"3\":\"靠背升降停\"}"}}]', '', '系统', '1', '1692347066048', '0'), -('2117432909', '', 'SetSpeed', '调整速度', '', '1', 'ASYNC', '[{"code":"SetSpeedMode","name":"速度调整模式","type_spec":{"type":"enum","specs":"{\"0\":\"未设置\",\"1\":\"加速\",\"2\":\"减速\"}"}}]', '', '系统', '1', '1692347065928', '0'), -('2120408295', '', 'UnSubscribeEvent', '取消事件订阅', '', '0', 'SYNC', '[{"code":"EventTypes","name":"事件类型","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"int\"}}"}}]', '', '系统', '1', '1692347065847', '0'), -('2142648230', '', 'QueryAlgoList', '查询设备算法列表', '', '1', 'SYNC', '[{"code":"AlgorithmName","name":"算法名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"PageNum","name":"分页码","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"1000\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"PageSize","name":"分页码大小","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"50\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065970', '0'), -('2143992982', '', 'DeleteKey', '删除钥匙', '', '1', 'ASYNC', '[{"code":"KeyID","name":"钥匙ID","type_spec":{"type":"text","specs":"{\"length\":\"10\"}"}},{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}}]', '', '系统', '1', '1692347066116', '0'), -('2181229806', '', 'QuerySyncPicSchedule', '人脸-查询人脸布控进度', '', '0', 'SYNC', '[{"code":"GroupID","name":"人脸库组ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('2208251258', '', 'SyncFaceFeatures', '人脸-人脸特征下发', '用于人脸特征下发,请求参数URL是特征文件。每批次最大100个人脸特征。 -基于人脸门禁1.0物模型', '0', 'SYNC', '[{"code":"FacePicFeaturesURL","name":"同步特征文件URL地址","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('2231030824', '', 'ControlDevice', '控制设备', '', '0', 'SYNC', '[{"code":"HostId","name":"主机ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"EfenceId","name":"围栏ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"Action","name":"动作","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065849', '0'), -('223565922', '', 'AddVehicleIOfPermission', '通行车辆权限下发', '', '1', 'ASYNC', '[{"code":"VehiclePermissionUrl","name":"车辆权限Url地址","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065789', '0'), -('2244187842', '', 'GetWhiteList', '查询白名单车辆', '', '1', 'SYNC', '[{"code":"WhiteListUrl","name":"白名单车辆Url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065858', '0'), -('2245373351', '', 'stopRecord', '停止录像', '', '0', 'ASYNC', '[{"code":"RecordID","name":"录像ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065943', '0'), -('2258034628', '', 'QrCodeDisplay', '显示二维码', '显示二维码', '0', 'SYNC', '[{"code":"QrCode","name":"二维码","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065790', '0'), -('2264084315', '', 'ResetZero', '清零', '', '0', 'ASYNC', '[{"code":"ZeroInstruction","name":"清零指令","type_spec":{"type":"text","specs":"{\"length\":\"20\"}"}}]', '', '系统', '1', '1692347065996', '0'), -('2277439790', '', 'NoticeBroadcast', '提示语音', '提示语音', '0', 'SYNC', '[{"code":"VoiceContent","name":"语音播报内容","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlaySpeed","name":"语音播报速度","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"10\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065789', '0'), -('229092007', '', 'DeleteAlgorithmModel', '删除算法模型', '', '1', 'SYNC', '[{"code":"AlgoID","name":"算法模型ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065897', '0'), -('2293892365', '', 'SetShankfFex', '设置小腿伸缩', '', '0', 'ASYNC', '[{"code":"ShankfFexMode","name":"小腿升降模式","type_spec":{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"小腿伸\",\"2\":\"小腿缩\",\"3\":\"小腿伸缩停\"}"}}]', '', '系统', '1', '1692347066048', '0'), -('2317320016', '', 'RouterUpgrade', '网关升级', '', '0', 'ASYNC', '[{"code":"RouterSerialNumber","name":"网关串码","type_spec":{"type":"text","specs":"{\"length\":\"9\"}"}}]', '', '系统', '1', '1692347066058', '0'), -('2324600382', '', 'Rhythm2', 'Rhythm2', '', '0', 'SYNC', '', '', '系统', '1', '1692347066213', '0'), -('2328484825', '', 'StartVod', '开始录像观看', '', '1', 'ASYNC', '[{"code":"FileName","name":"录像名","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"SessionID","name":"会话ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"PushUrl","name":"推流地址","type_spec":{"type":"text","specs":"{\"length\":\"512\"}"}},{"code":"Scheme","name":"流协议","type_spec":{"type":"enum","specs":"{\"0\":\"RTMP\",\"1\":\"RTSP\"}"}},{"code":"EncryptKey","name":"密钥","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"EncryptType","name":"加密类型","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9999\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065788', '0'), -('2336154452', '', 'DeleteModel', '删除模型', '内容推荐', '0', 'SYNC', '[{"code":"AlgorithmID","name":"算法任务唯一标识","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}}]', '', '系统', '1', '1692347066064', '0'), -('242356738', '', 'delQrCode', '删除二维码', '', '1', 'SYNC', '[{"code":"qrCode","name":"二维码","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065873', '0'), -('2436395457', '', 'NoticeDisplay', '提示显示', '提示显示', '0', 'SYNC', '[{"code":"DisplayContent","name":"显示内容","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"RowNumber","name":"屏幕行号","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"MovingSpeed","name":"文字移动速度","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"10\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"DisplayTime","name":"显示时长","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"3600\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}},{"code":"MovingType","name":"文字移动方式","type_spec":{"type":"enum","specs":"{\"0\":\"禁止\",\"1\":\"从右到左\",\"2\":\"从左到右\",\"3\":\"从下到上\",\"4\":\"从上到下\"}"}}]', '', '系统', '1', '1692347065789', '0'), -('2479915721', '', 'StartAlgorithm', '启动算法', '', '1', 'ASYNC', '[{"code":"AlgoName","name":"算法名称","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"AlgoVersion","name":"算法版本","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"VideoSrcURL","name":"视频源URL","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"TaskID","name":"算法任务号","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065893', '0'), -('2538569033', '', 'SyncTime', '同步时间', '把本地时间同步到NVR上', '0', 'ASYNC', '[{"code":"LocalTime","name":"本地时间","type_spec":{"type":"date","specs":"{}"}}]', '', '系统', '1', '1692347065825', '0'), -('2586489397', '', 'send_epd_table_datas', '刷屏数据', '给电子纸桌签下发桌签需要显示的数据。黑白红三色电子纸特定的数据格式', '0', 'ASYNC', '', '', '系统', '1', '1692347065953', '0'), -('2600026788', '', 'TimeReset', '设备校时服务', '', '0', 'ASYNC', '[{"code":"TimeReset","name":"TimeReset","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347066247', '0'), -('2616839497', '', 'QueryQrCodePermission', '查询二维码权限', '', '1', 'SYNC', '[{"code":"identityId","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"qrCode","name":"二维码","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065831', '0'), -('2618108939', '', 'GetStates', '获取设备状态', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065914', '0'), -('2650067192', '', 'RecordScreen', '监播录屏', '内容推荐 - 完成后通过MonitorActionEvent事件上报操作结果', '0', 'ASYNC', '[{"code":"Duration","name":"录屏时长","type_spec":{"type":"int","specs":"{\"min\":\"5\",\"max\":\"60\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}}]', '', '系统', '1', '1692347066064', '0'), -('2659323361', '', 'AddLedData', '下发LED数据', '下发LED数据', '0', 'ASYNC', '[{"code":"LedData","name":"LED数据","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065789', '0'), -('2667939359', '', 'GetVehicleInfo', '查询车辆信息', '', '1', 'SYNC', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065854', '0'), -('2692428189', '', 'QueryAlgorithmTasklList', '查询算法任务列表', '', '1', 'SYNC', '[{"code":"ALgoID","name":"算法模型ID","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"text\"}}"}},{"code":"TaskID","name":"算法执行任务号","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"text\"}}"}}]', '', '系统', '1', '1692347065897', '0'), -('270966040', '', 'FormatTFCard', 'TF卡格式化', '', '0', 'ASYNC', '', '', '系统', '1', '1692347066075', '0'), -('2738211501', '', 'UpdateModel', '更新模型', '内容推荐', '0', 'ASYNC', '[{"code":"UpdateTaskID","name":"更新任务ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"AlgorithmID","name":"算法任务唯一标识","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"AlgorithmName","name":"算法名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"Threshold","name":"结果置信度阈值","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1\",\"step\":\"0.0001\",\"unitName\":\"无\"}"}},{"code":"NumThreads","name":"使用线程数","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"128\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"ModelID","name":"模型唯一标识","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"ModelName","name":"模型名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ModelVersion","name":"模型版本","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ModelURL","name":"模型地址","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}},{"code":"ModelMD5","name":"模型文件MD5","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"ModelPlatform","name":"模型平台","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ModelTaskID","name":"模型生成任务ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"ModelEncryptType","name":"模型加密方式","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ModelExtension","name":"扩展信息","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347066064', '0'), -('2767194636', '', 'QueryModel', '查询模型', '内容推荐', '0', 'SYNC', '[{"code":"AlgorithmID","name":"算法任务唯一标识","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}}]', '', '系统', '1', '1692347066064', '0'), -('2809596084', '', 'GetParkSpaceList', '查询车位列表', '', '1', 'SYNC', '', '', '系统', '1', '1692347065857', '0'), -('2814199038', '', 'SendChallenge', '发送挑战字', '', '1', 'ASYNC', '[{"code":"Code","name":"结果","type_spec":{"type":"enum","specs":"{\"0\":\"成功\",\"1\":\"失败\"}"}},{"code":"Message","name":"信息","type_spec":{"type":"text","specs":"{\"length\":\"256\"}"}},{"code":"Challenge","name":"挑战字","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065972', '0'), -('2824158121', '', 'CalibrateParameter', '校准参数', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065989', '0'), -('283152180', '', 'DeleteSensor', '删除传感器', '', '0', 'ASYNC', '[{"code":"SensorSerialNumber","name":"传感器串码","type_spec":{"type":"text","specs":"{\"length\":\"9\"}"}}]', '', '系统', '1', '1692347066058', '0'), -('2863706626', '', 'CalibrateSensor', '传感器校准', '', '0', 'ASYNC', '[{"code":"DeviceID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"SensorID","name":"传感器ID","type_spec":{"type":"text","specs":"{\"length\":\"4\"}"}},{"code":"Weight","name":"重量","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9999\",\"step\":\"1\",\"unit\":\"g\",\"unitName\":\"克\"}"}}]', '', '系统', '1', '1692347066031', '0'), -('2890209654', '', 'Monitor', '监视', '', '1', 'ASYNC', '[{"code":"RoomNumber","name":"房号","type_spec":{"type":"text","specs":"{\"length\":\"12\"}"}}]', '', '系统', '1', '1692347066033', '0'), -('2913779213', '', 'ReBootTerminal', '传输模块复位', '', '0', 'ASYNC', '[{"code":"TerminalID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"8\"}"}},{"code":"SerialNumber","name":"指令编号","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}}]', '', '系统', '1', '1692347066006', '0'), -('2938253232', '', 'Peel', '去皮', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065996', '0'), -('2946430963', '', 'TriggerAudioPlay', '触发设备播放音频', '', '0', 'ASYNC', '[{"code":"AudioUrl","name":"音频地址","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}},{"code":"AudioType","name":"音频格式","type_spec":{"type":"enum","specs":"{\"0\":\"MP3\",\"1\":\"WAVE\",\"2\":\"AAC\",\"3\":\"Ogg\",\"4\":\"AMR\"}"}}]', '', '系统', '1', '1692347065799', '0'), -('2989369628', '', 'DelVehicleIOfWhiteList', '删除白名单车辆', '', '1', 'SYNC', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065858', '0'), -('3046437078', '', 'SwitchChannel', '频道切换', '', '0', 'ASYNC', '', '', '系统', '1', '1692347066089', '0'), -('3048347231', '', 'CreateOrder', '创建订单', '', '1', 'SYNC', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"InBarrierPK","name":"进场道闸PK","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"InBarrierDN","name":"进场道闸DN","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"InTime","name":"进场时间","type_spec":{"type":"date","specs":"{}"}},{"code":"OutBarrierPK","name":"出场道闸PK","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"OutBarrierDN","name":"出场道闸DN","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"OutTime","name":"出场时间","type_spec":{"type":"date","specs":"{}"}},{"code":"PayStatus","name":"支付状态","type_spec":{"type":"enum","specs":"{\"0\":\"支付完成\",\"4\":\"未支付\"}"}}]', '', '系统', '1', '1692347065857', '0'), -('3049640575', '', 'SCraftAlarm', '工艺参数报警', '触发设备的工艺参数报警', '0', 'ASYNC', '[{"code":"E_CraftAlarm","name":"参数报警标识","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065907', '0'), -('3051082588', '', 'DeleteAllAlgorithmModels', '清除所有算法模型', '', '1', 'SYNC', '', '', '系统', '1', '1692347065897', '0'), -('3062434807', '', 'ResetTime', '设备校时服务', '', '1', 'ASYNC', '[{"code":"ResetTime","name":"校时","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065949', '0'), -('3074497164', '', 'ModifyVehicleInfo', '修改车辆信息', '', '1', 'SYNC', '[{"code":"UserName","name":"用户姓名","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"IdNumber","name":"身份证号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"StateLocked","name":"锁定状态","type_spec":{"type":"enum","specs":"{\"0\":\"没有锁定\",\"1\":\"锁定\"}"}},{"code":"LockStartExpireTime","name":"锁车起始时间","type_spec":{"type":"date","specs":"{}"}},{"code":"LockEndExpireTime","name":"锁车截止时间","type_spec":{"type":"date","specs":"{}"}},{"code":"AccessBarrierListUrl","name":"通行权限道闸列表Url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"CellPhoneNumber","name":"用户手机号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065854', '0'), -('3079825896', '', 'StopRecord', '停止录像', '', '0', 'ASYNC', '[{"code":"RecordID","name":"录像ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347066086', '0'), -('3112716042', '', 'UpdateToken', '更新OSS服务token', '内容推荐 - 当云端收到ContentSdkInitCompleteEvent事件或密钥泄露导致安全问题需要更新密钥时调用该服务', '0', 'SYNC', '[{"code":"SlsToken","name":"SLS访问Token信息","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}},{"code":"OssToken","name":"OSS访问Token信息","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}},{"code":"TInfo","name":"Token-Info","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}}]', '', '系统', '1', '1692347066063', '0'), -('3114427007', '', 'VoiceMessageDownstream', '语音消息下发', '', '0', 'ASYNC', '[{"code":"MessageData","name":"语音消息","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065862', '0'), -('3124170868', '', 'QueryAlgorithmTask', '查询算法任务', '', '1', 'SYNC', '[{"code":"PageNum","name":"分页号","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"256\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"PageSize","name":"分页大小","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065970', '0'), -('314189156', '', 'QueryHost', '查询主机', '', '0', 'SYNC', '', '', '系统', '1', '1692347065849', '0'), -('3169498612', '', 'RestoreFactorySettings', '恢复出厂设置', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065942', '0'), -('3170146518', '', 'GetKeyList', '获取钥匙列表', '', '1', 'ASYNC', '[{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"0\":\"全部\",\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}}]', '', '系统', '1', '1692347066117', '0'), -('3176677693', '', 'StopPTZAction', '停止PTZ控制', '', '0', 'ASYNC', '', '', '系统', '1', '1692347066085', '0'), -('3212810849', '', 'get', '状态同步', '', '0', 'SYNC', '[{"code":"Selected_Property","name":"状态同步属性","type_spec":{"type":"enum","specs":"{\"0\":\"Set_Temputer\",\"1\":\"Safety_Temputer_Loc\",\"2\":\"Preheat_Mode\",\"3\":\"Timer_Quantum\",\"4\":\"OutputWaterTempute\",\"5\":\"Flame_State\",\"6\":\"CombustibleGasCheck\",\"7\":\"Error_Code\",\"8\":\"PowerSwitch\"}"}}]', '', '系统', '1', '1692347066162', '0'), -('3214173402', '', 'AuthVerifySDK', '设备授权文件下发', '', '1', 'SYNC', '[{"code":"LicenseData","name":"授权文件","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"StatusCode","name":"状态码","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"StatusCodeDescription","name":"状态码描述","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347066046', '0'), -('3215726589', '', 'UnlockVehicle', '接触车辆锁定', '', '1', 'SYNC', '[{"code":"UserID","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065882', '0'), -('3226046074', '', 'AddKey', '添加钥匙', '', '1', 'ASYNC', '[{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}},{"code":"UserLimit","name":"用户权限","type_spec":{"type":"enum","specs":"{\"1\":\"普通用户\",\"2\":\"管理员\",\"3\":\"劫持用户\"}"}}]', '', '系统', '1', '1692347066116', '0'), -('3227446299', '', 'QueryAlgoTaskDetails', '查询算法任务详细信息', '', '1', 'SYNC', '[{"code":"TaskId","name":"任务编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('3249018258', '', 'DeployAlgorithmModel', '算法部署', '', '1', 'ASYNC', '[{"code":"AlgorithmId","name":"算法id","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"AlgorithmType","name":"算法类型","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"65536\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"AlgorithmName","name":"算法名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ModelId","name":"模型id","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ModelVersion","name":"模型版本","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}},{"code":"ModelUrl","name":"模型下载url","type_spec":{"type":"text","specs":"{\"length\":\"512\"}"}},{"code":"Platform","name":"模型平台","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}},{"code":"TaskId","name":"部署任务id","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"MD5","name":"模型md5值","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"Encryption","name":"模型是否加密","type_spec":{"type":"bool","specs":"{\"0\":\"不加密\",\"1\":\"加密\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('3249857998', '', 'StartVoiceIntercom', '开始语音对讲', '语音对讲启动指令', '1', 'ASYNC', '[{"code":"IntercomUrl","name":"对讲地址","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"Key","name":"加解密秘钥","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"EncryptType","name":"加解密类型","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9999\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065799', '0'), -('3264686405', '', 'QueryAlgorithmModelList', '查询算法模型列表', '', '1', 'SYNC', '', '', '系统', '1', '1692347065897', '0'), -('3270211723', '', 'CaptureScreen', '监播截屏', '内容推荐 - 完成后通过MonitorActionEvent事件上报操作结果', '0', 'ASYNC', '', '', '系统', '1', '1692347066064', '0'), -('3291503391', '', 'QueryAddedUserInfo', '人脸-查询布控成功的人脸图', '', '0', 'SYNC', '[{"code":"GroupID","name":"人脸库组ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('3303956624', '', 'addInventory', '增加库存', '增加库存', '1', 'ASYNC', '[{"code":"x","name":"横坐标","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\"}"}},{"code":"y","name":"纵坐标","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\"}"}},{"code":"c","name":"库存","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100000000\",\"step\":\"1\"}"}}]', '', '系统', '1', '1692347066113', '0'), -('3328337202', '', 'VehAlertService', '车辆告警服务', '', '0', 'ASYNC', '[{"code":"Vin","name":"车架号","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"EventID","name":"事件ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"TboxID","name":"tboxID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"OwnerID","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"StartTime","name":"时间段起始","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"EndTime","name":"时间段末尾","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065822', '0'), -('3338991485', '', 'StopAlgorithmTask', '停止算法任务', '', '1', 'ASYNC', '[{"code":"TaskID","name":"算法任务号","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065897', '0'), -('3374227233', '', 'AngleSelfAdaption', '角度自适应校准', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065949', '0'), -('3377509400', '', 'StartPTZAction', '开始PTZ控制', '', '0', 'ASYNC', '[{"code":"ActionType","name":"动作类型","type_spec":{"type":"enum","specs":"{\"0\":\"左\",\"1\":\"右\",\"2\":\"上\",\"3\":\"下\",\"4\":\"上左\",\"5\":\"上右\",\"6\":\"下左\",\"7\":\"下右\",\"8\":\"放大\",\"9\":\"缩小\"}"}},{"code":"Speed","name":"速度","type_spec":{"type":"enum","specs":"{\"0\":\"慢速\",\"1\":\"中速\",\"2\":\"快速\"}"}}]', '', '系统', '1', '1692347066085', '0'), -('3384783941', '', 'StopVoiceIntercom', '停止语音对讲', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065799', '0'), -('3583780158', '', 'QueryStatus', '查询电梯状态', '', '0', 'SYNC', '[{"code":"Params","name":"输入参数","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065832', '0'), -('3584979892', '', 'Start', '启动', '', '0', 'ASYNC', '[{"code":"Menu","name":"菜单","type_spec":{"type":"enum","specs":"{\"0\":\"默认菜单\",\"1\":\"冻薯条\",\"2\":\"牛排\",\"3\":\"鸡腿\",\"4\":\"蛋糕\",\"5\":\"虾\",\"6\":\"披萨\",\"7\":\"鱼\"}"}},{"code":"WorkTime","name":"工作时间","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}},{"code":"ToastTemperature","name":"烘烤温度","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"460\",\"step\":\"1\",\"unit\":\"℉\",\"unitName\":\"华氏度\"}"}},{"code":"NotificationTime","name":"提醒时间点","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}},{"code":"PauseSwtich","name":"暂停开关","type_spec":{"type":"bool","specs":"{\"0\":\"开始\",\"1\":\"暂停\"}"}}]', '', '系统', '1', '1692347065871', '0'), -('3604882330', '', 'QueryUserData', '人脸-查询用户是否存在', '人脸2.0(不推荐)', '0', 'ASYNC', '[{"code":"UserId","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('3606595346', '', 'GetVehicleList', '获取车辆信息列表', '', '1', 'SYNC', '', '', '系统', '1', '1692347065882', '0'), -('3623250714', '', 'StopPlay', '停止功放播放', '', '1', 'ASYNC', '', '', '系统', '1', '1692347066074', '0'), -('3624054354', '', 'CallElevator', '呼梯', '', '1', 'ASYNC', '[{"code":"targetFloor","name":"目标楼层","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}},{"code":"startFloor","name":"起始楼层","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}},{"code":"identityId","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"startFloorDoor","name":"起始楼层电梯门","type_spec":{"type":"enum","specs":"{\"0\":\"起始楼层电梯A门\",\"1\":\"起始楼层电梯B门\"}"}},{"code":"targetFloorDoor","name":"目标楼层电梯门","type_spec":{"type":"enum","specs":"{\"0\":\"目标楼层电梯A门\",\"1\":\"目标楼层电梯B门\"}"}}]', '', '系统', '1', '1692347065831', '0'), -('3643687118', '', 'CommonService', '标准服务', '', '0', 'ASYNC', '[{"code":"method","name":"方法","type_spec":{"type":"enum","specs":"{\"0\":\"setProps\"}"}},{"code":"params","name":"参数","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"flag","name":"特性","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"seq","name":"序列号","type_spec":{"type":"text","specs":"{\"length\":\"30\"}"}}]', '', '系统', '1', '1692347066213', '0'), -('3646295719', '', 'DelQrCodePermission', '删除二维码权限', '', '1', 'ASYNC', '[{"code":"identityId","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"qrCode","name":"二维码","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065831', '0'), -('3652773755', '', 'SensorPeelAllSensor', '全部传感器去皮', '', '0', 'ASYNC', '[{"code":"DeviceID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347066031', '0'), -('3663421648', '', 'GetPlateNumberList', '查询车牌号列表', '', '1', 'SYNC', '', '', '系统', '1', '1692347065854', '0'), -('3694737859', '', 'QueryAlgoTaskList', '查询算法任务列表', '', '1', 'SYNC', '[{"code":"PageNum","name":"分页码","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"PageSize","name":"分页大小","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"50\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"TaskName","name":"任务名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('3712624659', '', 'UpdateContent', '将内容全量下发到边缘端', '内容推荐', '0', 'ASYNC', '[{"code":"UpdateTaskID","name":"更新任务ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"ContentUrl","name":"Content内容下载地址","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}}]', '', '系统', '1', '1692347066063', '0'), -('372080696', '', 'ConfigModel', '配置模型', '内容推荐', '1', 'SYNC', '[{"code":"AlgorithmID","name":"算法任务-人脸识别","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"Threshold","name":"结果置信度阈值","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1\",\"step\":\"0.0001\",\"unitName\":\"无\"}"}},{"code":"Switch","name":"功能开关","type_spec":{"type":"int","specs":"{\"min\":\"-1024\",\"max\":\"1024\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"NumThreads","name":"使用线程数","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"128\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347066064', '0'), -('37428985', '', 'OrderCompleted', '订单确认', '', '1', 'SYNC', '[{"code":"OrderNumber","name":"订单编号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PayStatus","name":"支付状态","type_spec":{"type":"enum","specs":"{\"0\":\"支付完成\",\"1\":\"免费\",\"2\":\"本地支付\",\"3\":\"取消订单\"}"}}]', '', '系统', '1', '1692347065857', '0'), -('3759356248', '', 'SubscribeEvent', '订阅事件', '', '1', 'SYNC', '[{"code":"EventTypes","name":"事件类型","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"EventDest","name":"指定事件接收地址","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"SubType","name":"订阅类型","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}},{"code":"EventLevel","name":"事件等级","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"int\"}}"}}]', '', '系统', '1', '1692347065847', '0'), -('3759439606', '', 'QueryLicenseList', '查询授权列表', '', '1', 'SYNC', '[{"code":"AlgorithmName","name":"算法名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"PageNum","name":"分页码","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"1000\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"PageSize","name":"分页大小","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"50\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065970', '0'), -('381144077', '', 'PTZCalibrate', 'PTZ校准', '', '0', 'ASYNC', '[{"code":"Direction","name":"方向","type_spec":{"type":"enum","specs":"{\"0\":\"完全校准\",\"1\":\"水平校准\",\"2\":\"垂直校准\"}"}}]', '', '系统', '1', '1692347066088', '0'), -('3825853839', '', 'SetShankUpAndDown', '设置小腿升降', '', '0', 'ASYNC', '[{"code":"ShankLiftingModeMode","name":"小腿升降模式","type_spec":{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"小腿升\",\"2\":\"小腿降\",\"3\":\"小腿升降停\"}"}}]', '', '系统', '1', '1692347066049', '0'), -('3867540414', '', 'FactoryReset', '恢复出厂设置', '', '0', 'ASYNC', '', '', '系统', '1', '1692347066066', '0'), -('3898930490', '', 'LockVehicle', '锁定车辆', '', '1', 'SYNC', '[{"code":"UserID","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"StartExpireTime","name":"起始有效时间","type_spec":{"type":"date","specs":"{}"}},{"code":"EndExpireTime","name":"截止有效时间","type_spec":{"type":"date","specs":"{}"}}]', '', '系统', '1', '1692347065882', '0'), -('3903274353', '', 'QueryFacePermTotal', '人脸-查询设备上人脸权限总数', '直接查询设备上的人脸权限数,由设备直接返回,不经过SDK统计', '0', 'SYNC', '', '', '系统', '1', '1692347065806', '0'), -('3905443156', '', 'ClearAlarm', '一键消除报警', '', '0', 'ASYNC', '', '', '系统', '1', '1692347066058', '0'), -('3907732657', '', 'Unlock', '开锁', '', '1', 'ASYNC', '[{"code":"UnlockCode","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"0\":\"室内机开锁\",\"1\":\"刷卡开锁\",\"2\":\"密码开锁\",\"3\":\"蓝牙开锁\",\"4\":\"人脸开锁\",\"5\":\"指纹开锁\",\"6\":\"手机开锁\"}"}}]', '', '系统', '1', '1692347066033', '0'), -('3948958799', '', 'SyncGroupIdAndRoomId', '可视对讲-同步组号和房间号', '', '0', 'SYNC', '[{"code":"groupRoomMappingFileUrl","name":"映射关系文件url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('3983499418', '', 'QueryAlgoConfig', '获取算法配置信息', '', '1', 'SYNC', '', '', '系统', '1', '1692347065972', '0'), -('4010779479', '', 'QueryDataCheckCode', '查询设备数据校验码', '', '1', 'ASYNC', '[{"code":"CheckTime","name":"校验截止时间戳","type_spec":{"type":"date","specs":"{}"}}]', '', '系统', '1', '1692347065816', '0'), -('4033075399', '', 'StartPushStreaming', '开始直播', '', '1', 'ASYNC', '[{"code":"PushUrl","name":"推流地址","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"StreamType","name":"码流类型","type_spec":{"type":"enum","specs":"{\"0\":\"主码流\",\"1\":\"辅码流\"}"}},{"code":"Scheme","name":"流协议","type_spec":{"type":"enum","specs":"{\"0\":\"RTMP\",\"1\":\"RTSP\"}"}},{"code":"EncryptKey","name":"密钥","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"EncryptType","name":"加密类型","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9999\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"PreTime","name":"提前推流时间","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}}]', '', '系统', '1', '1692347065789', '0'), -('4054791395', '', 'ReadMaxCutSpeed', '读取最大速度', '', '1', 'ASYNC', '[{"code":"MaxCutSpeed","name":"最大速度","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"}"}}]', '', '系统', '1', '1692347065985', '0'), -('4064087256', '', 'RemoteFreeze', '远程冻结', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065852', '0'), -('4086910445', '', 'AddVehicleIOfWhiteList', '新增白名单车辆', '', '1', 'SYNC', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065858', '0'), -('4110580212', '', 'TriggerPicCapture', '触发设备抓图', '', '1', 'ASYNC', '[{"code":"UPloadUrl","name":"上传地址","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065788', '0'), -('4128506212', '', 'GetVehiclePermission', '查询车辆权限信息', '', '1', 'SYNC', '', '', '系统', '1', '1692347065789', '0'), -('4149136510', '', 'SyncFaceData', '人脸-同步人脸数据', '人脸2.0(不推荐)', '0', 'ASYNC', '[{"code":"FaceDataUrl","name":"人脸数据URL地址","type_spec":{"type":"text","specs":"{\"length\":\"512\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('4164946181', '', 'ConfigContentSDK', '配置内容推荐SDK', '内容推荐', '0', 'SYNC', '[{"code":"RecommendOn","name":"内容推荐开关","type_spec":{"type":"int","specs":"{\"min\":\"-1024\",\"max\":\"1024\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"LogMaxCount","name":"日志批量上传配置","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"4096\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"LogMaxSize","name":"每批次最大size","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"5\",\"step\":\"1\",\"unit\":\"MB\",\"unitName\":\"兆字节\"}"}},{"code":"LogPeriod","name":"上报周期","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"86400\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}}]', '', '系统', '1', '1692347066064', '0'), -('4166875204', '', 'SendOssStsToken', '下发OssStsToken', '', '1', 'ASYNC', '[{"code":"Credentials","name":"加密的访问凭证","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"BucketName","name":"OSSbucket名称","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"EndPoint","name":"OSS的EndPoint名称","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"ObjectName","name":"OSS存储空间名称","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065789', '0'), -('4168830484', '', 'Rhythm', 'Rhythm', '音乐律动的标准服务', '0', 'ASYNC', '[{"code":"Hue","name":"Hue","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"360\",\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"}"}},{"code":"Saturation","name":"Saturation","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}},{"code":"Value","name":"Value","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}},{"code":"LightDuration","name":"LightDuration","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"250\",\"step\":\"1\",\"unit\":\"ms\",\"unitName\":\"毫秒\"}"}}]', '', '系统', '1', '1692347066213', '0'), -('4177958097', '', 'ActivateAlarm', '触发报警', '', '1', 'ASYNC', '[{"code":"AlarmMode","name":"报警模式","type_spec":{"type":"enum","specs":"{\"0\":\"停止报警\",\"1\":\"系统撤防提示\",\"2\":\"系统布防提示\",\"3\":\"防盗报警\",\"4\":\"火警\",\"5\":\"紧急情况报警\",\"6\":\"110报警\"}"}}]', '', '系统', '1', '1692347065928', '0'), -('41794594', '', 'DelVehicleIOfBlackList', '删除黑名单车辆', '', '1', 'SYNC', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065857', '0'), -('4210650454', '', 'MeasureBodyFat', '测量体脂', '', '0', 'ASYNC', '[{"code":"UserAge","name":"用户年龄","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"UserGender","name":"用户性别","type_spec":{"type":"enum","specs":"{\"1\":\"男\",\"2\":\"女\"}"}},{"code":"UserHeight","name":"用户身高","type_spec":{"type":"float","specs":"{\"min\":\"1\",\"max\":\"300\",\"step\":\"0.01\",\"unit\":\"cm\",\"unitName\":\"厘米\"}"}},{"code":"UserID","name":"用户ID","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347066066', '0'), -('4214506480', '', 'RemoteControl', '通用-远程控制', '', '0', 'SYNC', '[{"code":"Command","name":"控制指令","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"Params","name":"控制参数","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('4229101637', '', 'QueryDeployStatus', '查询部署状态', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065893', '0'), -('424470297', '', 'StartRecord', '开始录像', '', '0', 'ASYNC', '[{"code":"RecordType","name":"录像方式","type_spec":{"type":"enum","specs":"{\"0\":\"本地录像\",\"1\":\"云端录像\"}"}},{"code":"RecordDuration","name":"录制时长","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9999\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"PreRecordDuration","name":"预录时长","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"20\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"UploadUrl","name":"上传地址","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '', '系统', '1', '1692347065943', '0'), -('4264383615', '', 'P2PSignalDownstream', 'P2P信令下发', '', '0', 'ASYNC', '[{"code":"Data","name":"信令数据","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347066086', '0'), -('4268103547', '', 'FormatStorageMedium', '格式化存储介质', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065942', '0'), -('4275171575', '', 'UpdateDisplay', '更新显示', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065953', '0'), -('468257159', '', 'StopPushStreaming', '停止直播', '', '1', 'ASYNC', '[{"code":"StreamType","name":"码流类型","type_spec":{"type":"enum","specs":"{\"0\":\"主码流\",\"1\":\"辅码流\"}"}}]', '', '系统', '1', '1692347065788', '0'), -('503083712', '', 'OperatGate', '道闸操作', '道闸操作', '1', 'SYNC', '[{"code":"OperatType","name":"操作类型","type_spec":{"type":"enum","specs":"{\"0\":\"关闸\",\"1\":\"开闸\",\"2\":\"长开\"}"}}]', '', '系统', '1', '1692347065790', '0'), -('535853173', '', 'QueryRecordTimeList', '查询录像时间列表', '', '1', 'SYNC', '[{"code":"BeginTime","name":"开始时间","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"}"}},{"code":"EndTime","name":"结束时间","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"}"}},{"code":"QuerySize","name":"查询数量","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"128\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"Type","name":"录像类型","type_spec":{"type":"enum","specs":"{\"0\":\"计划录像\",\"1\":\"报警录像\",\"2\":\"主动录像\",\"99\":\"所有类型\"}"}}]', '', '系统', '1', '1692347065788', '0'), -('565072604', '', 'CaptureAIBoxDiagData', '采集AIBox的诊断数据', '类型为采集数据的类型,如果是algopipe表明是算法时序,如果是topo表明是设备拓扑图;如果type为algopipe,任务编号必填;如果是topo时,任务编号填空字符串', '1', 'SYNC', '[{"code":"Type","name":"类型","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"TaskId","name":"任务编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065972', '0'), -('578330224', '', 'QueryMonthRecord', '查询设备端月录像', '月份格式为yyyyMM,如"201806"。输出参数为字符串,长度为当月天数,1表示当天有录像,0表示当天无录像。', '0', 'SYNC', '[{"code":"Month","name":"月份","type_spec":{"type":"text","specs":"{\"length\":\"16\"}"}}]', '', '系统', '1', '1692347066088', '0'), -('610847651', '', 'GetEventSubscription', '查询事件订阅信息', '', '0', 'SYNC', '', '', '系统', '1', '1692347065847', '0'), -('613546171', '', 'GetBlackList', '查询黑名单车辆', '', '1', 'SYNC', '[{"code":"BlackListUrl","name":"黑名单车辆Url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065857', '0'), -('615282483', '', 'PlayQuickResponseRing', '播放快捷回复声音', '', '1', 'ASYNC', '[{"code":"RingType","name":"铃声类型","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065800', '0'), -('626029104', '', 'SetKeyPermission', '配置钥匙权限', '', '0', 'ASYNC', '[{"code":"KeyID","name":"钥匙ID","type_spec":{"type":"text","specs":"{\"length\":\"10\"}"}},{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}},{"code":"UserLimit","name":"用户权限","type_spec":{"type":"enum","specs":"{\"1\":\"普通用户\",\"2\":\"管理员\",\"3\":\"劫持用户\"}"}}]', '', '系统', '1', '1692347066117', '0'), -('6347913', '', 'Position', '定位', '', '0', 'ASYNC', '[{"code":"TerminalID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"8\"}"}},{"code":"SerialNumber","name":"指令编号","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}}]', '', '系统', '1', '1692347066006', '0'), -('63738309', '', 'syncPermissions', '通用-同步门禁权限', '', '0', 'SYNC', '[{"code":"permissionUrl","name":"权限url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('639912852', '', 'DoorOpen', '开门', '', '0', 'ASYNC', '[{"code":"DeviceID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347066031', '0'), -('692675557', '', 'QueryRecordList', '查询录像列表', '', '1', 'SYNC', '[{"code":"BeginTime","name":"开始时间","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}},{"code":"EndTime","name":"结束时间","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}},{"code":"Type","name":"录像类型","type_spec":{"type":"enum","specs":"{\"0\":\"计划录像\",\"1\":\"报警录像\",\"2\":\"主动录像\",\"99\":\"所有类型\"}"}},{"code":"QuerySize","name":"查询数量","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"128\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065789', '0'), -('709547439', '', 'DeleteScene', '删除场景', '', '0', 'ASYNC', '[{"code":"SceneID","name":"场景ID","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347065995', '0'), -('719645717', '', 'NotifyPhoneNumberCheckResult', '可视对讲-下发手机号校验结果', '', '0', 'SYNC', '[{"code":"phoneNumber","name":"手机号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"checkResult","name":"校验结果","type_spec":{"type":"enum","specs":"{\"0\":\"成功\",\"1\":\"失败\"}"}}]', '', '系统', '1', '1692347065806', '0'), -('73637539', '', 'ReCenterOpMessage', '救援消息推送', '', '0', 'ASYNC', '[{"code":"ReCenterMessageType","name":"消息类型","type_spec":{"type":"enum","specs":"{\"0\":\"10000\",\"1\":\"10001\",\"10\":\"10010\",\"11\":\"10011\",\"12\":\"10012\",\"2\":\"10002\",\"3\":\"10003\",\"4\":\"10004\",\"5\":\"10005\",\"7\":\"10007\",\"9\":\"10009\"}"}}]', '', '系统', '1', '1692347065824', '0'), -('743644423', '', 'UpdateAlgoTask', '更新算法任务', '', '1', 'SYNC', '[{"code":"TaskId","name":"任务编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"TaskName","name":"任务名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"SubProductKey","name":"子设备产品名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"SubDeviceName","name":"子设备名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"AlgorithmId","name":"算法Id","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"AlgorithmParam","name":"算法参数","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"Comment","name":"备注","type_spec":{"type":"text","specs":"{\"length\":\"256\"}"}}]', '', '系统', '1', '1692347065971', '0'), -('767254582', '', 'QueryExecutingAlgorithm', '查询正在运行的算法', '', '1', 'ASYNC', '', '', '系统', '1', '1692347065893', '0'), -('768185331', '', 'DeleteVehicleInfo', '删除车辆信息', '', '1', 'SYNC', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065854', '0'), -('778405373', '', 'GetAreaList', '获取停车区域列表', '', '1', 'SYNC', '[{"code":"type","name":"获取类型","type_spec":{"type":"enum","specs":"{\"0\":\"全量\",\"1\":\"1级区域\"}"}}]', '', '系统', '1', '1692347065853', '0'), -('778729599', '', 'PTZActionControl', 'PTZ步进控制', '', '0', 'ASYNC', '[{"code":"ActionType","name":"动作类型","type_spec":{"type":"enum","specs":"{\"0\":\"左\",\"1\":\"右\",\"2\":\"上\",\"3\":\"下\",\"4\":\"上左\",\"5\":\"上右\",\"6\":\"下左\",\"7\":\"下右\",\"8\":\"放大\",\"9\":\"缩小\"}"}},{"code":"Step","name":"步进量","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"10\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '', '系统', '1', '1692347066087', '0'), -('799878865', '', 'AppointmentStart', '预约启动', '', '0', 'ASYNC', '[{"code":"Menu","name":"菜单","type_spec":{"type":"enum","specs":"{\"0\":\"默认菜单\",\"1\":\"冻薯条\",\"2\":\"牛排\",\"3\":\"鸡腿\",\"4\":\"蛋糕\",\"5\":\"虾\",\"6\":\"披萨\",\"7\":\"鱼\"}"}},{"code":"WorkTime","name":"工作时间","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}},{"code":"ToastTemperature","name":"烘烤温度","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"460\",\"step\":\"1\",\"unit\":\"℉\",\"unitName\":\"华氏度\"}"}},{"code":"NotificationTime","name":"提醒时间点","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}},{"code":"AppointmentTime","name":"预约时间","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"720\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}},{"code":"PauseSwtich","name":"暂停开关","type_spec":{"type":"bool","specs":"{\"0\":\"开始\",\"1\":\"暂停\"}"}}]', '', '系统', '1', '1692347065871', '0'), -('807670334', '', 'AnnounceTTSText', '播报TTS文本', '', '1', 'ASYNC', '[{"code":"text","name":"TTS文本","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"voice","name":"音色","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}}]', '', '系统', '1', '1692347065791', '0'), -('845297896', '', 'RemoteOpen', '远程开门', '', '0', 'ASYNC', '', '', '系统', '1', '1692347065852', '0'), -('85966050', '', 'EnvHumidity_Control', '环境湿度调节', '', '0', 'ASYNC', '[{"code":"mode","name":"工作模式","type_spec":{"type":"enum","specs":"{\"0\":\"增加湿度\",\"1\":\"降低湿度\"}"}},{"code":"step","name":"步长_升高1个百分比需要的分钟数","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"min\"}"}},{"code":"SwitchNo","name":"开关","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"6\",\"step\":\"1\"}"}}]', '', '系统', '1', '1692347065891', '0'), -('879367166', '', 'ControlLockState', '车锁控制', '', '1', 'ASYNC', '[{"code":"OperationCode","name":"操作码","type_spec":{"type":"enum","specs":"{\"0\":\"解锁\",\"1\":\"上锁\"}"}}]', '', '系统', '1', '1692347066011', '0'), -('887813673', '', 'QueryEfence', '查询围栏', '', '0', 'SYNC', '[{"code":"HostId","name":"主机ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065849', '0'), -('891806454', '', 'StartDeviceDiagnosis', '开始设备诊断', '', '1', 'SYNC', '[{"code":"DiagnosisType","name":"诊断类型","type_spec":{"type":"enum","specs":"{\"0\":\"连接诊断\",\"1\":\"视频诊断\"}"}},{"code":"ProductKey","name":"子设备PK","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"DeviceName","name":"子设备DN","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '', '系统', '1', '1692347065972', '0'), -('909010428', '', 'getInventory', '单个库存查询', '单个库存查询', '1', 'SYNC', '[{"code":"x","name":"横坐标","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\"}"}},{"code":"y","name":"纵坐标","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\"}"}}]', '', '系统', '1', '1692347066113', '0'), -('958196170', '', 'EnvTemp_Control', '环境温度调节', '', '0', 'ASYNC', '[{"code":"mode","name":"工作模式","type_spec":{"type":"enum","specs":"{\"0\":\"升温\",\"1\":\"降温\"}"}},{"code":"step","name":"步长_升高一度需要分钟数","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"min\"}"}},{"code":"SwitchNo","name":"开关","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"6\",\"step\":\"1\"}"}}]', '', '系统', '1', '1692347065890', '0'), -('958302043', '', 'GetPermissionDownloadProgress', '查询车辆权限下发进度', '', '1', 'SYNC', '', '', '系统', '1', '1692347065789', '0'), -('97913898', '', 'CorrectPlateNumber', '车牌号校正', '', '1', 'SYNC', '[{"code":"PlateNumber","name":"正确车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"RecordID","name":"本地停车系统记录ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '', '系统', '1', '1692347065854', '0'); diff --git a/manifest/sql/category_template.sql b/manifest/sql/category_template.sql deleted file mode 100644 index d975008..0000000 --- a/manifest/sql/category_template.sql +++ /dev/null @@ -1,404 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:33:44.0110 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "category_template"; -CREATE TABLE `category_template` (`created` integer,`modified` integer,`id` text NOT NULL,`category_key` text,`category_name` text,`scene` text,PRIMARY KEY (`id`)); - -INSERT INTO "category_template" ("created", "modified", "id", "category_key", "category_name", "scene") VALUES -('1692347065', '0', '100801128', 'EnvironmentMonitoring', '环境监测', '公共场景'), -('1692347065', '0', '1018679054', 'Relay', '继电器', '公共场景'), -('1692347065', '0', '1024367747', 'Logisticsmonitoring', '仓储运输环境检测设备', '公共场景'), -('1692347065', '0', '1030488520', 'BathHeater', '浴霸', '公共场景'), -('1692347065', '0', '1035932400', 'sharing', '共享租赁服务', '公共场景'), -('1692347065', '0', '1036328639', 'loraLight', 'lora单灯', '公共场景'), -('1692347065', '0', '1044013833', 'Charging pile', '充电桩', '公共场景'), -('1692347065', '0', '1045820894', 'ECGCard', '心电卡', '公共场景'), -('1692347065', '0', '1045857980', 'emergency_button', '紧急按钮', '公共场景'), -('1692347065', '0', '1050273268', 'SmartElectricityMeter', '智能电表', '公共场景'), -('1692347065', '0', '105853454', 'ArcExtinguishing', '电弧灭弧', '公共场景'), -('1692347065', '0', '1062697323', 'ElectricPower', '智能电力', '公共场景'), -('1692347065', '0', '1075212443', 'Sterilizer', '消毒柜', '公共场景'), -('1692347065', '0', '1078442534', 'MilkModulator', '调奶器', '公共场景'), -('1692347065', '0', '1081660675', 'Breaker', '通断器', '公共场景'), -('1692347065', '0', '1097511234', 'SkyWindow', '天窗', '公共场景'), -('1692347065', '0', '1098286719', 'Thermometer', '体温计', '公共场景'), -('1692347065', '0', '1100956430', 'DoorSensor', '门磁', '公共场景'), -('1692347065', '0', '1104228963', 'EpdTable', '电子标签', '公共场景'), -('1692347065', '0', '1105676641', 'SideFan', '侧风机', '公共场景'), -('1692347065', '0', '1106090227', 'other', '其他设备', '公共场景'), -('1692347065', '0', '1135781990', 'LiftTable', '升降桌', '公共场景'), -('1692347065', '0', '1142791301', 'CardAccess', '刷卡门禁', '公共场景'), -('1692347065', '0', '1144901926', 'FAU', '新风机', '公共场景'), -('1692347065', '0', '118633576', 'SmartWaterMeter', '智能水表', '公共场景'), -('1692347065', '0', '1198455604', 'GrainMill', '谷物碾磨机', '公共场景'), -('1692347065', '0', '1200851220', 'SmartElevator', '智能电梯', '公共场景'), -('1692347065', '0', '120734772', 'FlowRate', '流速液位监测设备', '公共场景'), -('1692347065', '0', '1215092349', 'MultifunctionElectricityMeter', '多功能电表', '公共场景'), -('1692347065', '0', '1216382389', 'PetFeeder', '宠物喂食机', '公共场景'), -('1692347065', '0', '12166701', 'Bathtub', '浴缸', '公共场景'), -('1692347065', '0', '1218030131', 'ParkingLot', '停车场', '公共场景'), -('1692347065', '0', '1253277264', 'ActiveVehMaintenance', '车辆主动维护', '公共场景'), -('1692347065', '0', '1261613842', 'AirCollect', '大气监测设备', '公共场景'), -('1692347065', '0', '1270836624', 'FoodDehydrator', '食物烘干机', '公共场景'), -('1692347065', '0', '1273468051', 'SmokeAlarm', '烟雾报警器', '公共场景'), -('1692347065', '0', '1274587100', 'campus', '智能园区', '公共场景'), -('1692347065', '0', '1276324731', 'AutomaticCooker', '烹饪机器人', '公共场景'), -('1692347065', '0', '1300706239', 'ParkingLotBarrier', '车位锁', '公共场景'), -('1692347065', '0', '1305954973', 'HIKVISIONEdgeServer', '海康边缘服务器', '公共场景'), -('1692347065', '0', '1306352279', 'WetCurtain', '湿帘', '公共场景'), -('1692347065', '0', '1311121741', 'CeilingFanLamp', '吊扇灯', '公共场景'), -('1692347065', '0', '131792357', 'CirculatingFan', '环流风机', '公共场景'), -('1692347065', '0', '1318630506', 'Heater', '取暖器', '公共场景'), -('1692347065', '0', '1320562354', 'ManholeCover', '井盖', '公共场景'), -('1692347065', '0', '1324307916', 'WaterPressureSensor', '水压传感器', '公共场景'), -('1692347065', '0', '1355043972', 'ImageCaptureDevice', '图像采集设备', '公共场景'), -('1692347065', '0', '1355883463', 'ElectricValve', '电动阀', '公共场景'), -('1692347065', '0', '1363064002', 'MultiAccessControl', '多功能门禁', '公共场景'), -('1692347065', '0', '1365733672', 'Soilsensor', '土壤传感器', '公共场景'), -('1692347065', '0', '1388594569', 'BreakingMachine', '破壁机', '公共场景'), -('1692347065', '0', '1390085222', 'ParkLed', '余位显示屏', '公共场景'), -('1692347065', '0', '1405376921', 'AcoustoOpticalarm', '声光报警设备', '公共场景'), -('1692347065', '0', '1409612200', 'BrushFace', '扫脸娃娃机', '公共场景'), -('1692347065', '0', '1411882025', 'SignalCollector', '游乐设备信号采集器', '公共场景'), -('1692347065', '0', '1412071415', 'SideWindow', '侧窗', '公共场景'), -('1692347065', '0', '1420043581', 'VisionAccessNode', '摄像头边缘节点 ', '公共场景'), -('1692347065', '0', '1451700096', 'WaterPurifier', '净水器', '公共场景'), -('1692347065', '0', '1470893452', 'TemperatureHumidityDetector', '温湿度检测', '公共场景'), -('1692347065', '0', '147404947', 'WindowLinearActuator', '推窗器', '公共场景'), -('1692347065', '0', '1485078790', 'MicrowaveOven', '微波炉', '公共场景'), -('1692347065', '0', '1495020334', 'FlowIndicator', '水流指示器', '公共场景'), -('1692347065', '0', '1496647913', 'BodyFatScale', '体脂秤', '公共场景'), -('1692347065', '0', '1496721598', 'TextileIndustry', '纺织业', '公共场景'), -('1692347065', '0', '1513768238', 'IntegratedStove', '集成灶', '公共场景'), -('1692347065', '0', '1515552665', 'Wristband', '手环', '公共场景'), -('1692347065', '0', '1517786324', 'Collision data collection', '行车碰撞数据采集', '公共场景'), -('1692347065', '0', '1525431907', 'AdvertTerminal', '广告屏', '公共场景'), -('1692347065', '0', '1532594043', 'InductionCooker', '电磁炉', '公共场景'), -('1692347065', '0', '1536951488', 'Smart_Neck_Massage', '智能颈部按摩仪', '公共场景'), -('1692347065', '0', '1538933461', 'IRDetector', '红外探测器', '公共场景'), -('1692347065', '0', '1540237195', 'Electrical&Lighting', '电工照明', '公共场景'), -('1692347065', '0', '1563630218', 'Massage chair', '按摩椅', '公共场景'), -('1692347065', '0', '1565979639', 'IRRemoteController', '红外遥控器', '公共场景'), -('1692347065', '0', '1566362320', 'Networking', '网络设备', '公共场景'), -('1692347065', '0', '1569175604', 'Gatewaycampus', '网关-园区', '公共场景'), -('1692347065', '0', '1603407202', 'Lighting', '路灯照明', '公共场景'), -('1692347065', '0', '1622531533', 'AirConditioner', '空调', '公共场景'), -('1692347065', '0', '1632555187', 'TiltSensor', '倾角传感器', '公共场景'), -('1692347065', '0', '1637645972', 'DoorViewer', '猫眼', '公共场景'), -('1692347065', '0', '1646732851', 'DOSensor', '溶解氧监测', '公共场景'), -('1692347065', '0', '1648777990', 'ShowerRoom', '淋浴房', '公共场景'), -('1692347065', '0', '1651097197', 'Metering_socket', '带计量功能插座', '公共场景'), -('1692347065', '0', '1684861878', 'gateway', '边缘网关', '公共场景'), -('1692347065', '0', '1688811508', 'Sphygmomanometer', '电子血压计', '公共场景'), -('1692347065', '0', '1703800802', 'VibrationSensor', '震动传感器', '公共场景'), -('1692347065', '0', '1712657279', 'TitrantPump', '滴定泵', '公共场景'), -('1692347065', '0', '171753938', 'WaterDetector', '水浸报警器', '公共场景'), -('1692347065', '0', '1726108213', 'SmartCleanFace', '智能洁面仪', '公共场景'), -('1692347065', '0', '1733908156', 'Counter', '无人货柜', '公共场景'), -('1692347065', '0', '1760682634', 'SmartDustbin', '智能垃圾桶', '公共场景'), -('1692347065', '0', '178489153', 'CurrentTemperature', '室内温度传感器', '公共场景'), -('1692347065', '0', '1790925575', 'electricmeter', '电力仪表', '公共场景'), -('1692347065', '0', '1794014811', 'Audio', '音箱', '公共场景'), -('1692347065', '0', '1799516426', 'VideoDoorbell', '可视门铃', '公共场景'), -('1692347065', '0', '1816536129', 'SOCOutlet', 'SoC插座', '公共场景'), -('1692347065', '0', '1829717761', 'LocalControlCenter', '中控屏', '公共场景'), -('1692347065', '0', '1835220534', 'EnvironmentMonitor', '环境监测设备', '公共场景'), -('1692347065', '0', '1837093552', 'IntelligentCurtain', '智能窗帘', '公共场景'), -('1692347065', '0', '1839569016', 'CustomCategory', '自定义品类', '公共场景'), -('1692347065', '0', '1843901377', 'PublicService', '公共服务', '公共场景'), -('1692347065', '0', '1847987992', 'NoodleMaker', '面条机', '公共场景'), -('1692347065', '0', '187419755', 'SoyMilkMaker', '豆浆机', '公共场景'), -('1692347065', '0', '1876589456', 'QrCodeAccess', '二维码门禁', '公共场景'), -('1692347065', '0', '1889710714', 'Teatable', '茶台', '公共场景'), -('1692347065', '0', '1897736120', 'air_sensor', '环境检测盒子', '公共场景'), -('1692347065', '0', '190704141', 'InnerInsulationCurtain', '内保温帘幕', '公共场景'), -('1692347065', '0', '1909236355', 'AutoDoor', '自动门', '公共场景'), -('1692347065', '0', '192283263', 'EmerBroadcasting', '应急广播', '公共场景'), -('1692347065', '0', '1924091258', 'SOCSmartLife', '智能生活SOC', '公共场景'), -('1692347065', '0', '1932551087', 'PeopleFlow', '客流量传感器', '公共场景'), -('1692347065', '0', '1932946854', 'WiFiProbeCollector', 'WiFi探针采集器', '公共场景'), -('1692347065', '0', '1936246134', 'DrinkingFoundation', '饮水机', '公共场景'), -('1692347065', '0', '1945976728', 'Register', '寄存器', '公共场景'), -('1692347065', '0', '1950797311', 'LawnMower', '割草机', '公共场景'), -('1692347065', '0', '1989266658', 'Watch', '手表', '公共场景'), -('1692347065', '0', '2023130617', 'HVACExtController', 'HVAC外接控制器', '公共场景'), -('1692347065', '0', '2054272341', 'HotAirBlower', '热风机', '公共场景'), -('1692347065', '0', '2063149557', 'Outlet', '插座', '公共场景'), -('1692347065', '0', '2066626282', 'IceCreamMaker', '冰激凌机', '公共场景'), -('1692347065', '0', '2069094767', 'Ice cream machine', '冰淇淋机', '公共场景'), -('1692347065', '0', '2071325505', 'PHDetector', '酸碱度检测计', '公共场景'), -('1692347065', '0', '2076266987', 'ParkArea', '社区车行停车区域', '公共场景'), -('1692347065', '0', '209574098', 'ToiletSeat', '马桶', '公共场景'), -('1692347065', '0', '2111385126', 'AirEnergyHeater', '空气能热水器', '公共场景'), -('1692347065', '0', '2114398015', 'ElectricBlanket', '电热毯', '公共场景'), -('1692347065', '0', '212342029', 'FootBath', '足浴盆', '公共场景'), -('1692347065', '0', '2138658865', 'Washer', '洗衣机', '公共场景'), -('1692347065', '0', '2143223210', 'FillLight', '补光灯', '公共场景'), -('1692347065', '0', '2145080069', 'ElectricityMeter', '电表', '公共场景'), -('1692347065', '0', '2161122438', 'HealthPreservingPot', '养生壶', '公共场景'), -('1692347065', '0', '2169782115', 'ParkHDDetectMachine', '车位传感器', '公共场景'), -('1692347065', '0', '2176719136', 'Siren', '声光报警器', '公共场景'), -('1692347065', '0', '217862230', 'FaceIdentification', '客群识别设备', '公共场景'), -('1692347065', '0', '2188049139', 'EmergencyLight', '应急照明灯', '公共场景'), -('1692347065', '0', '2193034970', 'Locater', '车辆定位卡', '公共场景'), -('1692347065', '0', '2199273885', 'ParkingDetector', '车位检测器', '公共场景'), -('1692347065', '0', '2201595948', 'GasDetector', '燃气报警器', '公共场景'), -('1692347065', '0', '2209544523', 'CarbonDioxideGeneratingDevice', '二氧化碳发生装置', '公共场景'), -('1692347065', '0', '2213599504', 'FishTank', '鱼缸', '公共场景'), -('1692347065', '0', '2229872849', 'MosquitoLamp', '灭蚊器', '公共场景'), -('1692347065', '0', '2257486699', 'SmartRearviewMirror', '智能后视镜', '公共场景'), -('1692347065', '0', '2266956148', 'Faucet', '龙头', '公共场景'), -('1692347065', '0', '2271899857', 'EnvironmentalNoiseMonitor', '环境噪音监测', '公共场景'), -('1692347065', '0', '2281316059', 'MeterElec_Dlt645', 'DLT645电表', '公共场景'), -('1692347065', '0', '2292677369', 'FingerPrintDoor', '指纹门禁', '公共场景'), -('1692347065', '0', '2297952916', 'WifiTemplate', 'Wifi功能模板', '公共场景'), -('1692347065', '0', '2301483304', 'GeomagneticSensor', '地磁检测器', '公共场景'), -('1692347065', '0', '2305257819', 'PressureCooker', '电压力锅', '公共场景'), -('1692347065', '0', '2310141498', 'SmartCity', '智能城市', '公共场景'), -('1692347065', '0', '231505168', 'Water purifier', '净水机', '公共场景'), -('1692347065', '0', '2315571556', 'Seeper', '易涝点监测设备', '公共场景'), -('1692347065', '0', '2333366956', 'FireCannon', '智能消防炮', '公共场景'), -('1692347065', '0', '2340814740', 'GroundSourceHeatPump', '地源热泵', '公共场景'), -('1692347065', '0', '2341193733', 'Platinum_Temperature', '铂电阻温度传感器', '公共场景'), -('1692347065', '0', '2341823378', 'GlueSprayingMachine', '涂胶机', '公共场景'), -('1692347065', '0', '2364865203', 'Projector', '投影仪', '公共场景'), -('1692347065', '0', '2366964457', 'RobotCleaner', '扫地机器人', '公共场景'), -('1692347065', '0', '2373704', 'Locator', '定位器', '公共场景'), -('1692347065', '0', '2417246256', 'ElevatorCollectingBox', '电梯集采盒', '公共场景'), -('1692347065', '0', '2420166370', 'VOCSensor', 'VOC感应器', '公共场景'), -('1692347065', '0', '2421110268', 'InternetProtocolCamera', '网络摄像机', '公共场景'), -('1692347065', '0', '2426702047', 'SmartPatrol', '智能巡护', '公共场景'), -('1692347065', '0', '2427753350', 'ElectricWaterHeater', '电热水器', '公共场景'), -('1692347065', '0', '2432042222', 'PricingScale', '计价秤', '公共场景'), -('1692347065', '0', '2440549165', 'Fridge', '冰箱', '公共场景'), -('1692347065', '0', '2446506315', 'ElevatorStatusSensor', '电梯门体状态探测传感器', '公共场景'), -('1692347065', '0', '2464129095', 'Smoke_sensor', '烟感传感器', '公共场景'), -('1692347065', '0', '250222520', 'SolubleSensor', '可溶性盐传感器', '公共场景'), -('1692347065', '0', '2504555402', 'PharmaceuticalManufacturing', '医药制造业', '公共场景'), -('1692347065', '0', '2518047485', 'Scene', '场景面板', '公共场景'), -('1692347065', '0', '2536525713', 'AgriculturalMonitor', '农业监控设备', '公共场景'), -('1692347065', '0', '2549102915', 'GeneralGateway', '网关', '公共场景'), -('1692347065', '0', '2553629750', 'NVR', '网络硬盘录像机', '公共场景'), -('1692347065', '0', '2554802251', 'Humidifier', '加湿器', '公共场景'), -('1692347065', '0', '2559335234', 'Plant', '种植', '公共场景'), -('1692347065', '0', '2562826356', 'Car_Detector_Cam', '车牌抓拍', '公共场景'), -('1692347065', '0', '2595658908', 'MajorAppliance', '大家电', '公共场景'), -('1692347065', '0', '2611370050', 'MeteorologicalStation', '气象站监控仪', '公共场景'), -('1692347065', '0', '261350664', 'IlluminationSensor', '光照度传感器', '公共场景'), -('1692347065', '0', '2621274383', 'Environment', '环境电器', '公共场景'), -('1692347065', '0', '2627315767', 'AromaDiffuser', '香薰机', '公共场景'), -('1692347065', '0', '2651709330', 'epd_table', '电子纸桌签', '公共场景'), -('1692347065', '0', '2652134156', 'Building', '智慧建筑', '公共场景'), -('1692347065', '0', '265944701', 'Light', '灯', '公共场景'), -('1692347065', '0', '267456530', 'Dryer', '干衣机', '公共场景'), -('1692347065', '0', '2682543520', 'ZigbeeTemplate', 'Zigbee功能模板', '公共场景'), -('1692347065', '0', '2701317145', 'Dimming_panel', '家居调光面板', '公共场景'), -('1692347065', '0', '2711005454', 'Sauna', '干蒸房', '公共场景'), -('1692347065', '0', '2715095038', 'Juicer', '果汁机', '公共场景'), -('1692347065', '0', '2716080395', 'Airconditionerthermostat', '空调温控器', '公共场景'), -('1692347065', '0', '2721784734', 'FaceRecognizeDevice', '人脸识别机', '公共场景'), -('1692347065', '0', '2733066066', 'DisplacementMonitor', '位移监控器', '公共场景'), -('1692347065', '0', '2749364475', 'CuttingMachine', '裁床', '公共场景'), -('1692347065', '0', '2757170781', 'ElevatorController', '梯控', '公共场景'), -('1692347065', '0', '2759502015', 'ChemicalFiberManufacturing', '化学纤维制造业', '公共场景'), -('1692347065', '0', '2760499020', 'ChargingPile', '非机动车充电桩', '公共场景'), -('1692347065', '0', '2761884878', 'Tracker', '定位终端', '公共场景'), -('1692347065', '0', '2766906736', 'NAS', '网络存储器', '公共场景'), -('1692347065', '0', '2787062298', 'SmartPillow', '智能枕', '公共场景'), -('1692347065', '0', '2796323888', 'Airfryer', '空气炸锅', '公共场景'), -('1692347065', '0', '2796800124', 'DoorContact', '门磁传感器', '公共场景'), -('1692347065', '0', '2797686548', 'SmartHives', '智能蜂箱', '公共场景'), -('1692347065', '0', '2799633692', 'SmartGasFlowMeter', '智能燃气流量计', '公共场景'), -('1692347065', '0', '2802885852', 'Oven', '烤箱', '公共场景'), -('1692347065', '0', '2809360237', 'Temperatureandhumiditysensor', '室内温湿度监测设备', '公共场景'), -('1692347065', '0', '2811596498', 'SmartWasteSortingDustBin', '智能分类垃圾桶', '公共场景'), -('1692347065', '0', '2844741347', 'AlgorithmManagerPlatform', '视频内容分析', '公共场景'), -('1692347065', '0', '2853832207', 'ElevatorAccelerationSensor', '电梯加速度探测传感器', '公共场景'), -('1692347065', '0', '2858048414', 'ManholeLevel', '窨井液位监测设备', '公共场景'), -('1692347065', '0', '2858834722', 'ElectricKettle', '电水壶', '公共场景'), -('1692347065', '0', '2860066172', 'ParkWNC', '超声车位检测器', '公共场景'), -('1692347065', '0', '2866554735', 'Aquatic', '水产', '公共场景'), -('1692347065', '0', '2868672891', 'FaceRecognition', '人脸识别门禁', '公共场景'), -('1692347065', '0', '2883358023', 'Stockbreeding', '畜牧', '公共场景'), -('1692347065', '0', '2890773561', 'GarbageOverflowingDetection', '垃圾满溢检测', '公共场景'), -('1692347065', '0', '2891581509', 'PigDataReader', '猪参数采集器', '公共场景'), -('1692347065', '0', '2894271646', 'WallSwitch', '入墙开关', '公共场景'), -('1692347065', '0', '2923723957', 'MetalProductsIndustry', '金属制品业', '公共场景'), -('1692347065', '0', '2955270579', 'ParkMagnetism', '地磁车位监测器', '公共场景'), -('1692347065', '0', '2955333469', 'SmokeDetector', '烟雾探测器', '公共场景'), -('1692347065', '0', '2961614542', 'Camera', '摄像头', '公共场景'), -('1692347065', '0', '2962430284', 'ParkingLock', '地锁', '公共场景'), -('1692347065', '0', '2963888295', 'MicrowaveDetector', '微波人体探测器', '公共场景'), -('1692347065', '0', '2967058422', 'IB_Lock ', '锁', '公共场景'), -('1692347065', '0', '2971382879', 'ManholesCoverShiftDetection', '井盖移位检测', '公共场景'), -('1692347065', '0', '2980580850', 'KitchenAppliance', '厨房电器', '公共场景'), -('1692347065', '0', '2986019782', 'SingleSlotOutlet', 'SoC单孔插座', '公共场景'), -('1692347065', '0', '2990301097', 'CoSee', '大屏投放终端', '公共场景'), -('1692347065', '0', '2991546592', 'UnmannedAerialVehicle', '无人机', '公共场景'), -('1692347065', '0', '2998945716', 'GovernmentLed', '路政设备', '公共场景'), -('1692347065', '0', '3002313909', 'SmartDoor', '智能门锁', '公共场景'), -('1692347065', '0', '3007003404', 'Fan', '风扇', '公共场景'), -('1692347065', '0', '3037903449', 'LightEnsor', '光照传感器', '公共场景'), -('1692347065', '0', '3041630772', 'Cateyecamera', '猫眼摄像头', '公共场景'), -('1692347065', '0', '3062054368', 'BackgroundMusicController', '背景音乐控制器', '公共场景'), -('1692347065', '0', '3066392742', 'linkbusiness', '商业共享', '公共场景'), -('1692347065', '0', '3076088806', 'PasswordAccess', '密码门禁', '公共场景'), -('1692347065', '0', '3076751162', 'Drivingbehavior', '驾驶行为数据采集', '公共场景'), -('1692347065', '0', '307907542', 'liquidometer', '液位计', '公共场景'), -('1692347065', '0', '308247734', 'Lamp', '灯控开关', '公共场景'), -('1692347065', '0', '3095814411', 'AirCompressorMachine', '空压机', '公共场景'), -('1692347065', '0', '3102363127', 'ElectricVehicleChargingStation', '电动汽车充电站', '公共场景'), -('1692347065', '0', '3108576753', 'AttendanceMachine', '考勤机', '公共场景'), -('1692347065', '0', '312607446', 'Curtain', '窗帘', '公共场景'), -('1692347065', '0', '3128607928', 'Threadmill', '跑步机', '公共场景'), -('1692347065', '0', '3140851999', 'FireButton', '消防手报', '公共场景'), -('1692347065', '0', '3156652622', 'ThreePhaseMeter', '三相电表', '公共场景'), -('1692347065', '0', '316056500', 'SmartBoxingTarget', '智能拳靶', '公共场景'), -('1692347065', '0', '3160753104', 'WindSensor', '风速传感器', '公共场景'), -('1692347065', '0', '3166729274', 'Health', '个护健康', '公共场景'), -('1692347065', '0', '3170800897', 'GuideScreen', '导购屏', '公共场景'), -('1692347065', '0', '3181079025', 'GasWaterHeater', '燃气热水器', '公共场景'), -('1692347065', '0', '3221459178', 'LaserScanner', '激光探测仪', '公共场景'), -('1692347065', '0', '3226915393', 'PressureBlower', '正压送风机', '公共场景'), -('1692347065', '0', '3229953717', 'water_logging', '水浸传感器', '公共场景'), -('1692347065', '0', '3239377839', 'Curtain_motor', '窗帘电机', '公共场景'), -('1692347065', '0', '3249816705', 'InfraredDetectors', '红外体征探测器', '公共场景'), -('1692347065', '0', '3258597674', 'SpeechHelper', '语音助手', '公共场景'), -('1692347065', '0', '3259397577', 'OffVoltageMonitor', '断电监控', '公共场景'), -('1692347065', '0', '3261342850', 'DioxideDetector', '二氧化碳检测器', '公共场景'), -('1692347065', '0', '3263847734', 'ActivityDetectionEquipment', '活动检测设备', '公共场景'), -('1692347065', '0', '3265111709', 'ParkOverAll', '道闸一体机', '公共场景'), -('1692347065', '0', '3270891190', 'Flowmeter', '流量计', '公共场景'), -('1692347065', '0', '3273789893', 'Grab the doll machine', '抓娃娃机', '公共场景'), -('1692347065', '0', '3274217316', 'LiquidLevelAlarm', '液位传感器', '公共场景'), -('1692347065', '0', '3274814539', 'SmartBuilding', '智能楼宇', '公共场景'), -('1692347065', '0', '3292000697', 'BluetoothAccess', '蓝牙门禁', '公共场景'), -('1692347065', '0', '3339399204', 'SmartWaterFlowMeter', '智能水流量计', '公共场景'), -('1692347065', '0', '3347959094', 'QuickAccessDoor', '速通门', '公共场景'), -('1692347065', '0', '3353846382', 'CapsuleCoffeeMachine', '胶囊咖啡机', '公共场景'), -('1692347065', '0', '3368054021', 'Dehumidifier', '除湿器', '公共场景'), -('1692347065', '0', '3406302868', 'RemoteTerminalUnit', '远程监测终端', '公共场景'), -('1692347065', '0', '3416397169', 'Ice_machine', '制冰机', '公共场景'), -('1692347065', '0', '3459613602', 'Bed', '床', '公共场景'), -('1692347065', '0', '3465803734', 'FireWaterCannon', '智能消防水炮', '公共场景'), -('1692347065', '0', '3476661115', 'SmartAgriculture', '智能农业', '公共场景'), -('1692347065', '0', '348527058', 'ParkChannel', '社区车行停车通道', '公共场景'), -('1692347065', '0', '3488074008', 'FireValve', '防火阀', '公共场景'), -('1692347065', '0', '3499005676', 'Curtainswitch', '单路窗帘开关', '公共场景'), -('1692347065', '0', '3524953243', 'SmartTemplate', '智能模板', '公共场景'), -('1692347065', '0', '3540783499', 'ToxicGas', '有害气体检测器', '公共场景'), -('1692347065', '0', '3545472812', 'MultiParkingCamera', '多功能停车摄像头', '公共场景'), -('1692347065', '0', '3563468643', 'ServoDriver', '伺服驱动器', '公共场景'), -('1692347065', '0', '3569710856', 'OutdoorStation', '门口机', '公共场景'), -('1692347065', '0', '3576017802', 'Shared washing machine', '共享洗衣机', '公共场景'), -('1692347065', '0', '3582150087', 'VoiceTemperatureControlPanel', '语音温控面板', '公共场景'), -('1692347065', '0', '3587487221', 'EnvSensor', '九合一环境传感器', '公共场景'), -('1692347065', '0', '3648602984', 'MechanicalControlValve', '机械控制阀', '公共场景'), -('1692347065', '0', '3648932535', 'MAXHUB', '会议平板', '公共场景'), -('1692347065', '0', '3660361313', 'WaterSoftener', '软水机', '公共场景'), -('1692347065', '0', '3667165753', 'AlarmSwitch', '报警开关', '公共场景'), -('1692347065', '0', '3676009681', 'RainGauge', '雨量计', '公共场景'), -('1692347065', '0', '3683770939', 'ParkingBarrier', '停车道闸', '公共场景'), -('1692347065', '0', '3683813476', 'LinkEdge', '边缘计算', '公共场景'), -('1692347065', '0', '3684292976', 'WaterMonitor', '用水监控器', '公共场景'), -('1692347065', '0', '3724121940', 'QrCodeAccessControl', '二维码门禁机', '公共场景'), -('1692347065', '0', '3732718472', 'HomeSecurity', '家居安防', '公共场景'), -('1692347065', '0', '3748499381', 'WaterMonitoring', '水质检测终端', '公共场景'), -('1692347065', '0', '3767095257', 'Spraying', '喷涂处理', '公共场景'), -('1692347065', '0', '380791623', 'HazardWarningLamp', '危险报警器', '公共场景'), -('1692347065', '0', '3824746994', 'HomeLinkEdgeGateway', '全屋边缘网关', '公共场景'), -('1692347065', '0', '3840044729', 'OutsideShadeCurtain', '外遮荫帘幕', '公共场景'), -('1692347065', '0', '3845900826', 'LightingFacility', '灯光设备', '公共场景'), -('1692347065', '0', '3848864139', 'EnergyMangement', '能源管理', '公共场景'), -('1692347065', '0', '3850124653', 'GasLeakAlarm', '燃气泄漏报警器', '公共场景'), -('1692347065', '0', '3854940203', 'ExhaustWindow', '电动排烟窗', '公共场景'), -('1692347065', '0', '3855926004', 'Doorbell', '门铃', '公共场景'), -('1692347065', '0', '3869022214', 'Farming', '种植养殖', '公共场景'), -('1692347065', '0', '3876643534', 'EmbeddedSteamer', '嵌入式电蒸箱', '公共场景'), -('1692347065', '0', '3902906850', 'Containers', '售货柜', '公共场景'), -('1692347065', '0', '3922293557', 'ShowerHead', '花洒', '公共场景'), -('1692347065', '0', '3952743499', 'ElectricSafetyDetector', '用电安全探测器', '公共场景'), -('1692347065', '0', '3975312140', 'BlueToothScale', '蓝牙秤', '公共场景'), -('1692347065', '0', '3975752355', 'VREquipment', '智能VR类设备', '公共场景'), -('1692347065', '0', '3993282245', 'AirPurifier', '空气净化器', '公共场景'), -('1692347065', '0', '3997514749', 'CircuitBreaker', '断路器', '公共场景'), -('1692347065', '0', '4008121382', 'Others', '其它', '公共场景'), -('1692347065', '0', '4016087311', 'RiceCooker', '电饭煲', '公共场景'), -('1692347065', '0', '4029795058', 'WaterMeter', '水表', '公共场景'), -('1692347065', '0', '4029831015', 'SmartGasMeter', '智能燃气表', '公共场景'), -('1692347065', '0', '4046299200', 'IntelligentLitterBox', '智能猫砂盆', '公共场景'), -('1692347065', '0', '4052499646', 'WaterloggingSensor', '水浸检测', '公共场景'), -('1692347065', '0', '4081549859', 'DustMonitor', '扬尘监测', '公共场景'), -('1692347065', '0', '408370814', 'SceneSwitch', '场景开关', '公共场景'), -('1692347065', '0', '4083776241', 'Airbox', '空气盒子', '公共场景'), -('1692347065', '0', '4105829811', 'ActiveInfraredIntrusionDetectors', '红外对射探测器', '公共场景'), -('1692347065', '0', '4121315217', 'FeatureCamera', '特征摄像头', '公共场景'), -('1692347065', '0', '4133849131', 'TeaBar', '茶吧机', '公共场景'), -('1692347065', '0', '4138502251', 'ElevatorPositionSensor', '电梯平层位置探测传感器', '公共场景'), -('1692347065', '0', '41423900', 'PreciseTimeSpaceCamera', '精准时空摄像头', '公共场景'), -('1692347065', '0', '415410140', 'PHSensor', '酸碱度监测', '公共场景'), -('1692347065', '0', '4158284530', 'capture', '车牌抓拍-ib', '公共场景'), -('1692347065', '0', '416256118', 'SmartDoorIntercoms', '门禁对讲机', '公共场景'), -('1692347065', '0', '4162617481', 'AirConditioning', '空调机', '公共场景'), -('1692347065', '0', '4192441952', 'FoodDispenser', '取餐柜', '公共场景'), -('1692347065', '0', '4194519391', 'Television', '电视机', '公共场景'), -('1692347065', '0', '4199871195', 'WarningGW', '报警网关', '公共场景'), -('1692347065', '0', '4213442947', 'irrigation', '灌溉系统', '公共场景'), -('1692347065', '0', '4222534564', 'Sceneswitch2', '场景面板开关', '公共场景'), -('1692347065', '0', '4281929970', 'SecurityGateway', '安防监测网关', '公共场景'), -('1692347065', '0', '432598256', 'Currentdetectingsensor', '单向电流检测传感器', '公共场景'), -('1692347065', '0', '440090527', 'KitchenVentilator', '油烟机', '公共场景'), -('1692347065', '0', '442845539', 'EnvironmentalPerception', '环境感知', '公共场景'), -('1692347065', '0', '458148445', 'Stove', '燃气灶', '公共场景'), -('1692347065', '0', '459195961', 'ToiletLid', '马桶盖', '公共场景'), -('1692347065', '0', '465446309', 'Gas meter manufacturing', '气表制造', '公共场景'), -('1692347065', '0', '485431800', 'SmartLife', '智能生活', '公共场景'), -('1692347065', '0', '486507', 'FireDoor', '防火门', '公共场景'), -('1692347065', '0', '492522287', 'Forestry', '林业', '公共场景'), -('1692347065', '0', '497219157', 'PressureAlarm', '压力报警器', '公共场景'), -('1692347065', '0', '510145579', 'DishWasher', '洗碗机', '公共场景'), -('1692347065', '0', '512564848', 'PowerSwitch2', '入墙开关2', '公共场景'), -('1692347065', '0', '52506437', 'BroadcastController', '广播主机', '公共场景'), -('1692347065', '0', '539079273', 'ParkingArea', '停车区域', '公共场景'), -('1692347065', '0', '543555531', 'EFence', '电子围栏', '公共场景'), -('1692347065', '0', '548089746', 'ElectricMotorcycle', '电动摩托车', '公共场景'), -('1692347065', '0', '568688218', 'IntelligentBroadcast', '智能广播', '公共场景'), -('1692347065', '0', '57696272', 'FireSafety', '消防安全', '公共场景'), -('1692347065', '0', '596887707', 'Coffee machine', '咖啡机', '公共场景'), -('1692347065', '0', '59872758', 'TowelRack', '毛巾架', '公共场景'), -('1692347065', '0', '60587315', 'FlowDetection', '营养液流速监测器', '公共场景'), -('1692347065', '0', '614573824', 'IntelligentMassageChair', '智能按摩椅', '公共场景'), -('1692347065', '0', '617754892', 'Inverter', '变频器', '公共场景'), -('1692347065', '0', '619785281', 'PlasticProductsIndustry', '塑料制品业', '公共场景'), -('1692347065', '0', '623179856', 'N4DeviceType', 'N4设备', '公共场景'), -('1692347065', '0', '630944689', 'SmartSprinklerTerminal', '喷灌智能终端', '公共场景'), -('1692347065', '0', '648996772', 'SensorSignalCollector', '传感器信号采集器', '公共场景'), -('1692347065', '0', '655357831', 'GasMeter', '燃气表', '公共场景'), -('1692347065', '0', '665390661', 'SmartTox', '智能车机', '公共场景'), -('1692347065', '0', '669678928', 'VideoIntercomDoor', '可视对讲机门口机', '公共场景'), -('1692347065', '0', '675199350', 'Airer', '晾衣杆', '公共场景'), -('1692347065', '0', '67840715', 'FaceServer', '人脸门禁', '公共场景'), -('1692347065', '0', '697057860', 'ElevatorBodySensor', '电梯人体探测传感器', '公共场景'), -('1692347065', '0', '702314434', 'TempHumiUnit', '温湿度采集单元', '公共场景'), -('1692347065', '0', '71956746', 'ParkingSpace', '停车车位', '公共场景'), -('1692347065', '0', '736079691', 'FloorHeating', '地暖', '公共场景'), -('1692347065', '0', '758333098', 'AlarmButton', '手动求救报警', '公共场景'), -('1692347065', '0', '786178729', 'retail', '零售设备', '公共场景'), -('1692347065', '0', '791576653', 'FarmRecorder', '农田记录仪', '公共场景'), -('1692347065', '0', '823845940', 'ConversionGateway', '通用网关', '公共场景'), -('1692347065', '0', '849123658', 'WallHungGasBoiler', '壁挂炉', '公共场景'), -('1692347065', '0', '860901717', 'BreadMachine', '面包机', '公共场景'), -('1692347065', '0', '880501657', 'TicketMachine', '停车小票机设备', '公共场景'), -('1692347065', '0', '887020052', 'SmartFireHydrants', '智能消防栓', '公共场景'), -('1692347065', '0', '9113687', 'FaceRecognitionCapabilityModel', '人脸识别能力模型', '公共场景'), -('1692347065', '0', '922066141', 'SmartIndustry', '智能工业', '公共场景'), -('1692347065', '0', '950454215', 'PunchingMachine', '冲压机', '公共场景'), -('1692347065', '0', '960208357', 'MoxibustionApparatus', '艾灸仪', '公共场景'), -('1692347065', '0', '994131732', 'WaterAndFertilizerMachine', '水肥一体机', '公共场景'); diff --git a/manifest/sql/doc.sql b/manifest/sql/doc.sql deleted file mode 100644 index 3980259..0000000 --- a/manifest/sql/doc.sql +++ /dev/null @@ -1,17 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:34:02.6110 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "doc"; -CREATE TABLE `doc` (`created` integer,`modified` integer,`id` text NOT NULL,`name` text,`sort` integer,`jump_link` text,PRIMARY KEY (`id`)); - -INSERT INTO "doc" ("created", "modified", "id", "name", "sort", "jump_link") VALUES -('0', '0', '11695073', 'SDK参考', '2', 'https://doc.hummingbird.winc-link.com/guide/sdk/go.html'), -('0', '0', '52093426', 'API参考', '3', 'https://doc.hummingbird.winc-link.com/guide/api/call.html'), -('0', '0', '71610269', '产品概述', '1', 'https://doc.hummingbird.winc-link.com/guide/product/introduce.html'); diff --git a/manifest/sql/events.sql b/manifest/sql/events.sql deleted file mode 100644 index 60ef88f..0000000 --- a/manifest/sql/events.sql +++ /dev/null @@ -1,142 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:34:16.9980 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "events"; -CREATE TABLE `events` (`id` text NOT NULL,`product_id` text,`event_type` text,`code` text,`name` text,`description` text,`require` numeric,`output_params` text,`tag` text,`system` numeric,`created` integer,`modified` integer,PRIMARY KEY (`id`),CONSTRAINT `fk_product_events` FOREIGN KEY (`product_id`) REFERENCES `product`(`id`) ON DELETE CASCADE ON UPDATE CASCADE); - -INSERT INTO "events" ("id", "product_id", "event_type", "code", "name", "description", "require", "output_params", "tag", "system", "created", "modified") VALUES -('1011664504', '', 'alert', 'KeepFreshTempExceptional', '保鲜温度异常', '', '0', '[{"code":"Error","name":"保鲜温度异常","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"保鲜温度异常\"}"}}]', '系统', '1', '1692347065844', '0'), -('1064265265', '', 'info', 'UpdateVehicleInfoFromLocal', '车辆信息变更', '', '1', '[{"code":"UserName","name":"用户姓名","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"TypeOperation","name":"操作类型","type_spec":{"type":"enum","specs":"{\"0\":\"新增\",\"1\":\"修改\",\"2\":\"删除\"}"}},{"code":"IdNumber","name":"身份证号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"StateLocked","name":"锁定状态","type_spec":{"type":"enum","specs":"{\"0\":\"没有锁定\",\"1\":\"锁定\"}"}},{"code":"LockStartExpireTime","name":"锁车起始时间","type_spec":{"type":"date","specs":"{}"}},{"code":"LockEndExpireTime","name":"锁车截止时间","type_spec":{"type":"date","specs":"{}"}},{"code":"AccessBarrierListUrl","name":"通行权限道闸列表Url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065853', '0'), -('1068262344', '', 'info', 'AbnormalBehaviorAlarm', '非正常状态告警', '', '0', '[{"code":"AlarmType","name":"告警类型","type_spec":{"type":"enum","specs":"{\"0\":\"学习错误\",\"1\":\"开门遇阻错误\",\"10\":\"温度过高\",\"11\":\"制动错误\",\"12\":\"锁错误\",\"2\":\"关门遇阻错误\",\"3\":\"开门错误\",\"4\":\"关门错误\",\"5\":\"减速超时\",\"6\":\"霍尔错误\",\"7\":\"位置错误\",\"8\":\"双门通信错误\",\"9\":\"电流过大\"}"}}]', '系统', '1', '1692347065852', '0'), -('1091299760', '', 'info', 'OnMatched', '人脸-人脸比对事件上报', '人脸1.0 - 上报可识别人脸事件', '0', '[{"code":"UserPicID","name":"用户人脸图ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"FaceMatchedPicStorID","name":"人脸比对图片StorID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"Similarity","name":"人脸比对相似度结果","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}},{"code":"UserInfo","name":"人脸ID相关属性","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"GroupID","name":"人脸组ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '系统', '1', '1692347065804', '0'), -('1141511061', '', 'info', 'BlackListRecognition', '黑名单车辆识别', '', '1', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumberImageUrl","name":"车牌号照片Url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"Direction","name":"方向","type_spec":{"type":"enum","specs":"{\"0\":\"进场\",\"1\":\"出场\"}"}}]', '系统', '1', '1692347065855', '0'), -('1147269780', '', 'alert', 'StabilityEvent', '车辆稳定性', '', '0', '[{"code":"StabilityAccP","name":"加速度峰值","type_spec":{"type":"float","specs":"{\"min\":\"-2000\",\"max\":\"2000\",\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"}"}},{"code":"StabilityAccE","name":"加速度原始值","type_spec":{"type":"float","specs":"{\"min\":\"-2000\",\"max\":\"2000\",\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"}"}}]', '系统', '1', '1692347065824', '0'), -('1205296604', '', 'alert', 'LowTemperatureWarning', '低温报警', '', '0', '[{"code":"Error","name":"低温报警","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"低温报警\"}"}}]', '系统', '1', '1692347065843', '0'), -('1241926447', '', 'info', 'ExicutingAlgorithm', '单条算法执行结果', '', '1', '[{"code":"AlgoName","name":"算法名称","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"AlgoVersion","name":"算法版本","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"TaskID","name":"任务号","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"result","name":"执行结果","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '系统', '1', '1692347065893', '0'), -('1268509166', '', 'error', 'RolloverEvent', '翻车', '', '0', '[{"code":"RolloverAccP","name":"加速度峰值","type_spec":{"type":"float","specs":"{\"min\":\"-2000\",\"max\":\"2000\",\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"}"}},{"code":"RolloverAccE","name":"加速度原始值","type_spec":{"type":"float","specs":"{\"min\":\"-2000\",\"max\":\"2000\",\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"}"}}]', '系统', '1', '1692347065819', '0'), -('1276453964', '', 'info', 'RequestDecryptionKey', '请求解密密钥', '', '1', '[{"code":"ModelId","name":"模型id","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ID2ProductKey","name":"ID2产品秘钥","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ID2","name":"ID2信息","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"AuthCode","name":"授权码","type_spec":{"type":"text","specs":"{\"length\":\"256\"}"}}]', '系统', '1', '1692347065970', '0'), -('1301215743', '', 'info', 'UpdateContentCompleteEvent', '内容加载完成', '内容推荐 - 云端内容推送内容并且 SDK 下载完成后发送该事件', '0', '[{"code":"UpdateTaskID","name":"下发任务ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"Status","name":"状态","type_spec":{"type":"int","specs":"{\"min\":\"-1024\",\"max\":\"1024\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"FailedCreativeIDs","name":"失败创意列表","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"struct\"}}"}}]', '系统', '1', '1692347066063', '0'), -('1349799208', '', 'info', 'OnSync', '人脸库同步确认', '人脸2.0(不推荐)', '0', '[{"code":"SyncTime","name":"同步时间戳","type_spec":{"type":"date","specs":"{}"}},{"code":"Payload","name":"透传参数","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"Code","name":"状态码","type_spec":{"type":"enum","specs":"{\"200\":\"同步成功\",\"201\":\"同步失败重试\",\"202\":\"同步失败不重试\"}"}}]', '系统', '1', '1692347065804', '0'), -('1358009479', '', 'info', 'TamperAlarm', '防撬报警', '', '0', '', '系统', '1', '1692347065948', '0'), -('1374850905', '', 'info', 'TemperatureAlarm', '温度报警', '', '0', '[{"code":"AlarmType","name":"报警类型","type_spec":{"type":"enum","specs":"{\"0\":\"恢复正常\",\"1\":\"高温报警\"}"}}]', '系统', '1', '1692347065889', '0'), -('1433128647', '', 'info', 'RefreshSchedule', '显示内容更新', '', '1', '[{"code":"Result","name":"更新结果","type_spec":{"type":"enum","specs":"{\"0\":\"更新失败\",\"1\":\"更新成功\"}"}}]', '系统', '1', '1692347065901', '0'), -('1473918390', '', 'info', 'LowVoltageNotification', '低电压上报', '', '1', '[{"code":"VoltageValue","name":"电压值","type_spec":{"type":"float","specs":"{\"min\":\"3.5\",\"max\":\"7.0\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}}]', '系统', '1', '1692347066011', '0'), -('1485680428', '', 'info', 'passEvent', '通用-通行事件', '', '0', '[{"code":"code","name":"通行结果","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"message","name":"结果说明","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"type","name":"认证类型","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"content","name":"认证内容","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"extInfo","name":"扩展信息","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065804', '0'), -('1494066698', '', 'alert', 'LowBatteyEvent', '电量低告警', '', '0', '[{"code":"BatteryLevel","name":"电量水平","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '系统', '1', '1692347065798', '0'), -('1511012411', '', 'info', 'NeedAuthVerifySDK', '人脸算法SDK需授权', '', '1', '[{"code":"PackageName","name":"包名","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"ClientID","name":"设备唯一标识","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"PublicKey","name":"包公钥信息","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"Token","name":"设备Token值","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"DeviceEncrypt","name":"设备加密信息唯一标识","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}}]', '系统', '1', '1692347066045', '0'), -('1575935271', '', 'info', 'OnDetect', '人脸-人脸检测事件上报', '人脸1.0 - 上报人脸检测(非识别)事件,一般用于陌生人脸上报', '0', '[{"code":"StoreID","name":"人脸检测图StoreID","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}},{"code":"GroupID","name":"人脸组ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '系统', '1', '1692347065806', '0'), -('1585069676', '', 'info', 'ModifyVehicleInfoFromLocal', '本地系统修改车辆信息', '', '1', '[{"code":"UserID","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"UserName","name":"用户姓名","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PayType","name":"付费渠道","type_spec":{"type":"enum","specs":"{\"0\":\"免费\",\"1\":\"本地系统收费\",\"2\":\"云端系统收费\",\"3\":\"本地或云端收费\"}"}},{"code":"StartExpireTime","name":"起始有效时间","type_spec":{"type":"date","specs":"{}"}},{"code":"EndExpireTime","name":"截止有效时间","type_spec":{"type":"date","specs":"{}"}}]', '系统', '1', '1692347065881', '0'), -('1611096095', '', 'info', 'Health_Oil_Temperature', '健康油温', '', '0', '[{"code":"Health_Oil_Temprature_check","name":"健康油温监测状态","type_spec":{"type":"bool","specs":"{\"0\":\"未触发\",\"1\":\"已触发\"}"}}]', '系统', '1', '1692347066165', '0'), -('1626574925', '', 'info', 'TimeNotification', '时间点提醒', '', '0', '[{"code":"Time","name":"提醒时间点","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}}]', '系统', '1', '1692347065871', '0'), -('1692236711', '', 'info', 'ScanQrCodeForElevatorEvent', '二维码刷梯释放楼层事件', '', '1', '[{"code":"identityId","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"qrCode","name":"二维码","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"releaseFloors","name":"已释放的楼层","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"text\"}}"}}]', '系统', '1', '1692347065831', '0'), -('1834391684', '', 'alert', 'LowVoltageAlarm', '电压过低告警', '', '0', '[{"code":"Error","name":"电压过低告警","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"电压过低告警\"}"}}]', '系统', '1', '1692347065843', '0'), -('1838376918', '', 'info', 'AIEvent', 'AI事件', '', '0', '[{"code":"EventContent","name":"事件信息","type_spec":{"type":"text","specs":"{\"length\":\"256\"}"}}]', '系统', '1', '1692347065847', '0'), -('1855065626', '', 'info', 'RightWarning', '右炉告警', '', '0', '', '系统', '1', '1692347066165', '0'), -('1857498019', '', 'info', 'IntelligentAlarmEvent', '智能报警', '', '1', '[{"code":"AlarmType","name":"告警类型","type_spec":{"type":"enum","specs":"{\"10001\":\"违章停车\",\"10002\":\"占道经营\",\"10003\":\"摩托车识别\",\"10004\":\"行人识别\",\"10005\":\"车辆识别\",\"20003\":\"人脸检测\",\"20004\":\"人体检测\",\"60005\":\"人脸质量分\",\"60006\":\"人脸特征提取\",\"60007\":\"叠衣计数\",\"60008\":\"目标检测\",\"60009\":\"年龄性别检测\",\"60010\":\"表情检测\",\"60011\":\"人体姿态估计\",\"60012\":\"车辆和车牌检测\",\"60013\":\"车牌识别\"}"}},{"code":"Algorithm","name":"算法","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"ProductKey","name":"子设备产品名","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"DeviceName","name":"子设备名","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"Data","name":"告警内容","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"AlarmPicID","name":"图片ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065897', '0'), -('1884327063', '', 'info', 'VehiclePowerWarning', '车辆断电告警', '', '0', '', '系统', '1', '1692347066006', '0'), -('1910732581', '', 'info', 'CrashDetectedEvent', '碰撞事件', '', '0', '[{"code":"vehRPM","name":"发送机转速","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"12750\",\"step\":\"0.01\",\"unit\":\"r/min(rpm)\",\"unitName\":\"转每分\"}"}},{"code":"VehSeatBeltDrv","name":"主驾安全带","type_spec":{"type":"bool","specs":"{\"0\":\"False\",\"1\":\"Ture\"}"}}]', '系统', '1', '1692347065821', '0'), -('1914513880', '', 'info', 'DeleteVehicleInfoFromLocal', '本地系统删除车辆信息', '', '1', '[{"code":"UserID","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065881', '0'), -('1940201418', '', 'info', 'KeyDeletedNotification', '删除钥匙通知', '', '1', '[{"code":"KeyID","name":"钥匙ID","type_spec":{"type":"text","specs":"{\"length\":\"10\"}"}},{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}}]', '系统', '1', '1692347066116', '0'), -('1993334348', '', 'alert', 'TimeoutWarning', '超时告警', '', '0', '', '系统', '1', '1692347065829', '0'), -('2030517330', '', 'info', 'GetState', '获取状态', '', '1', '', '系统', '1', '1692347065892', '0'), -('2048302034', '', 'info', 'DeployAlgorithmModelResult', '算法模型部署结果', '', '1', '[{"code":"TaskId","name":"任务ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"Process","name":"部署进度","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"Code","name":"返回码","type_spec":{"type":"enum","specs":"{\"0\":\"成功\",\"1\":\"算法平台不支持\",\"2\":\"下载模型失败\",\"3\":\"MD5校验失败\",\"4\":\"解压失败\",\"5\":\"解密失败\"}"}},{"code":"Message","name":"返回信息","type_spec":{"type":"text","specs":"{\"length\":\"256\"}"}}]', '系统', '1', '1692347065970', '0'), -('205298887', '', 'info', 'abnormalCreditCard', '异常刷卡', '', '1', '[{"code":"cardId","name":"门禁卡ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"eventType","name":"事件类型","type_spec":{"type":"enum","specs":"{\"0\":\"无效卡\",\"1\":\"异常通信\"}"}}]', '系统', '1', '1692347065863', '0'), -('2139365487', '', 'info', 'CarPassOrder', '通行订单', '', '1', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"InTime","name":"进场时间","type_spec":{"type":"date","specs":"{}"}},{"code":"OutTime","name":"出场时间","type_spec":{"type":"date","specs":"{}"}},{"code":"Amount","name":"订单金额","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"99999\",\"step\":\"0.01\",\"unitName\":\"无\"}"}},{"code":"OrderNumber","name":"订单编号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PayStatus","name":"支付状态","type_spec":{"type":"enum","specs":"{\"0\":\"支付完成\",\"4\":\"未支付\"}"}},{"code":"InBarrierPK","name":"进场道闸PK","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"InBarrierDN","name":"进场道闸DN","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"OutBarrierPK","name":"出场道闸PK","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"OutBarrierDN","name":"出场道闸DN","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"OutImageUrl","name":"出场照片文件URL","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"InImageUrl","name":"入场照片文件URL","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065857', '0'), -('2202126164', '', 'info', 'OTA_Event', '固件升级通知', '', '0', '[{"code":"OTA_Status","name":"固件升级状态","type_spec":{"type":"bool","specs":"{\"0\":\"未在升级\",\"1\":\"正在升级\"}"}}]', '系统', '1', '1692347066162', '0'), -('2215803733', '', 'info', 'LowElectricityAlarm', '低电量报警', '', '1', '', '系统', '1', '1692347065953', '0'), -('2250273641', '', 'info', 'doorOpenEvent', '可视对讲-开门事件', '', '0', '[{"code":"sourceType","name":"源类型","type_spec":{"type":"enum","specs":"{\"0\":\"云对讲\",\"1\":\"固话对讲\"}"}},{"code":"number","name":"源号码","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"extInfo","name":"附加信息","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065804', '0'), -('2257679795', '', 'info', 'DoorOpenedNotification', '开门通知', '', '0', '[{"code":"DeviceID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ReportTime","name":"上报时间","type_spec":{"type":"date","specs":"{}"}}]', '系统', '1', '1692347065852', '0'), -('2286870042', '', 'info', 'ota_status', '固件升级', '', '0', '[{"code":"OTA_Status","name":"固件升级状态","type_spec":{"type":"bool","specs":"{\"0\":\"未在进行固件升级\",\"1\":\"正在进行固件升级\"}"}}]', '系统', '1', '1692347066002', '0'), -('2339426223', '', 'alert', 'TDSAlarm', 'TDS报警', '', '0', '[{"code":"AlarmType","name":"报警类型","type_spec":{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"高\"}"}},{"code":"TDS","name":"TDS","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"30000\",\"step\":\"1\"}"}}]', '系统', '1', '1692347065889', '0'), -('2357840716', '', 'alert', 'StarvingWarning', '缺料报警', '', '0', '[{"code":"Error","name":"缺料报警","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"缺料报警\"}"}}]', '系统', '1', '1692347065843', '0'), -('2374980569', '', 'info', 'CallElevatorEvent', '呼梯事件', '', '1', '[{"code":"identityId","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"startFloor","name":"起始楼层","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}},{"code":"targetFloor","name":"目标楼层","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}},{"code":"targetFloorDoor","name":"目标楼层电梯门","type_spec":{"type":"enum","specs":"{\"0\":\"目标楼层电梯A门\",\"1\":\"目标楼层电梯B门\"}"}},{"code":"startFloorDoor","name":"起始楼层电梯门","type_spec":{"type":"enum","specs":"{\"0\":\"起始楼层电梯A门\",\"1\":\"起始楼层电梯B门\"}"}}]', '系统', '1', '1692347065831', '0'), -('2402140697', '', 'alert', 'EnvironmentalTemperatureAlarm', '环境温度报警', '', '0', '[{"code":"AlarmType","name":"报警类型","type_spec":{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"高温报警\",\"2\":\"低温报警\"}"}},{"code":"Temperature","name":"当前温度","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°C\"}"}}]', '系统', '1', '1692347065890', '0'), -('2482402570', '', 'info', 'AbnormalAlarm', '异常告警', '', '1', '[{"code":"AlarmType","name":"告警类型","type_spec":{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"强磁干扰\",\"2\":\"低电量\"}"}}]', '系统', '1', '1692347066094', '0'), -('2536417341', '', 'info', 'ContentSdkInitCompleteEvent', 'SDK初始化完成', '内容推荐', '0', '[{"code":"DeviceInfo","name":"设备基本信息","type_spec":{"type":"text","specs":"{\"length\":\"4096\"}"}}]', '系统', '1', '1692347066062', '0'), -('2566041865', '', 'alert', 'AlarmEvent', '侦测报警', '', '1', '[{"code":"AlarmType","name":"告警类型","type_spec":{"type":"enum","specs":"{\"1\":\"移动侦测\",\"10\":\"异响侦测\",\"11\":\"哭声侦测\",\"12\":\"笑声侦测\",\"13\":\"火警侦测\",\"14\":\"人群聚集\",\"15\":\"人流统计\",\"2\":\"声音侦测\",\"3\":\"人形侦测\",\"4\":\"宠物侦测\",\"5\":\"越界侦测\",\"6\":\"区域入侵侦测\",\"7\":\"跌倒侦测\",\"8\":\"人脸检测\",\"9\":\"笑脸检测\"}"}},{"code":"AlarmPicID","name":"报警抓图ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"Data","name":"告警内容","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}}]', '系统', '1', '1692347065785', '0'), -('2571115998', '', 'alert', 'alarmEvent', '通用-报警事件', '', '0', '[{"code":"alarmType","name":"报警类型","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065804', '0'), -('257167943', '', 'info', 'MachineStateChangedEvent', '机器状态变更事件', '', '1', '[{"code":"MachineState","name":"机器状态","type_spec":{"type":"enum","specs":"{\"0\":\"Standby\",\"1\":\"Locked\",\"2\":\"Active\",\"3\":\"Jogg\",\"4\":\"Pause\"}"}}]', '系统', '1', '1692347065985', '0'), -('2578040422', '', 'info', 'AlgorithmModelDeployResult', '算法模型部署结果', '', '1', '[{"code":"AlgoID","name":"算法模型ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"Result","name":"增加结果","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"DeployType","name":"模型部署类型","type_spec":{"type":"enum","specs":"{\"0\":\"删除算法模型\",\"1\":\"增加算法模型\"}"}}]', '系统', '1', '1692347065896', '0'), -('258017166', '', 'info', 'OssStsTokenRequest', 'StsToken请求上报', '', '1', '[{"code":"RequestType","name":"请求上传文件类型","type_spec":{"type":"enum","specs":"{\"0\":\"图片文件上传\",\"1\":\"文本文件上传\",\"2\":\"其他类型文件上传\"}"}}]', '系统', '1', '1692347065787', '0'), -('261181743', '', 'info', 'Error_alarm', '设备故障', '', '0', '', '系统', '1', '1692347065914', '0'), -('2630322778', '', 'info', 'TimeoutAlarm', '超时未关门报警', '当检测到超时未关门时,上报该事件', '0', '', '系统', '1', '1692347066220', '0'), -('2647352045', '', 'info', 'EmergencyTriggerAlarm', '紧急触发报警', '', '0', '[{"code":"AlarmType","name":"报警类型","type_spec":{"type":"enum","specs":"{\"0\":\"解除报警\",\"1\":\"紧急报警\"}"}}]', '系统', '1', '1692347066029', '0'), -('2689785063', '', 'info', 'HijackingAlarm', '劫持报警', '', '1', '[{"code":"KeyID","name":"钥匙ID","type_spec":{"type":"text","specs":"{\"length\":\"10\"}"}},{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}}]', '系统', '1', '1692347066116', '0'), -('2767758251', '', 'info', 'ReportASRText', '上报ASR文本', '', '1', '[{"code":"text","name":"ASR文本内容","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"age","name":"声纹识别的年龄","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"200\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"gender","name":"声纹识别的性别","type_spec":{"type":"enum","specs":"{\"0\":\"女\",\"1\":\"男\",\"2\":\"未知\"}"}},{"code":"VoiceprintFeature","name":"声纹识别特征向量","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"double\"}}"}}]', '系统', '1', '1692347065791', '0'), -('2792455891', '', 'alert', 'FreezeCylindersTempExceptional', '冷冻缸温度异常', '', '0', '[{"code":"Error","name":"冷冻缸温度异常","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"冷冻缸温度异常\"}"}}]', '系统', '1', '1692347065844', '0'), -('2792749070', '', 'alert', 'HighEnvironmentTempWarning', '环境温度过高告警', '', '0', '[{"code":"Error","name":"环境温度过高告警","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"环境温度过高告警\"}"}}]', '系统', '1', '1692347065843', '0'), -('2843505984', '', 'info', 'TurnoverWarning', '翻倒告警', '', '0', '', '系统', '1', '1692347065949', '0'), -('2845909856', '', 'info', 'IntelligentEvent', '设备智能事件', '', '0', '[{"code":"EventType","name":"事件类型","type_spec":{"type":"enum","specs":"{\"1\":\"人流统计\"}"}},{"code":"EventPicID","name":"图片ID","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}},{"code":"Data","name":"事件内容","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}}]', '系统', '1', '1692347066084', '0'), -('2904713580', '', 'info', 'DeployedAlorithm', '单条算法部署结果', '', '1', '[{"code":"AlgoName","name":"算法名称","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"AlgoVweision","name":"算法版本","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"result","name":"部署结果","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '系统', '1', '1692347065893', '0'), -('2979554320', '', 'info', 'IllegalMoveWarning', '非法移动告警', '', '1', '', '系统', '1', '1692347066005', '0'), -('2989136850', '', 'info', 'AddVehicleInfoFromLocal', '本地系统新增车辆信息', '', '1', '[{"code":"UserName","name":"用户姓名","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"StartExpireTime","name":"起始有效时间","type_spec":{"type":"date","specs":"{}"}},{"code":"EndExpireTime","name":"截止有效时间","type_spec":{"type":"date","specs":"{}"}}]', '系统', '1', '1692347065881', '0'), -('3000546209', '', 'info', 'LowBatteryAlarm', '低电量告警', '', '0', '', '系统', '1', '1692347065996', '0'), -('3014018141', '', 'alert', 'CurrentOverload', '电流过载', '', '0', '[{"code":"CurrentOverload","name":"电流过载","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"电流过载\"}"}}]', '系统', '1', '1692347065843', '0'), -('3052901254', '', 'info', 'deliverCommodityEvent', '订单出货事件', '订单出货事件', '0', '[{"code":"orderNo","name":"订单号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"deliverTime","name":"出货时间","type_spec":{"type":"date","specs":"{}"}},{"code":"result","name":"结果","type_spec":{"type":"enum","specs":"{\"0\":\"失败\",\"1\":\"成功\"}"}},{"code":"code","name":"错误说明","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}}]', '系统', '1', '1692347066112', '0'), -('3082704538', '', 'info', 'CarReverseSignal', '倒车信号', '', '0', '[{"code":"ReverseStatus","name":"倒车状态","type_spec":{"type":"bool","specs":"{\"0\":\"OFF\",\"1\":\"ON\"}"}},{"code":"ReverseTime","name":"倒车切换时间","type_spec":{"type":"date","specs":"{}"}},{"code":"gnssHead","name":"方向","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"359\",\"step\":\"0.01\",\"unitName\":\"无\"}"}}]', '系统', '1', '1692347065819', '0'), -('309549582', '', 'info', 'RequestChallenge', '请求挑战字', '', '1', '[{"code":"ID2","name":"ID2信息","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '系统', '1', '1692347065970', '0'), -('310528543', '', 'info', 'FrontDoorStatus', '前门状态反馈', '', '1', '[{"code":"DoorStatus","name":"门状态","type_spec":{"type":"enum","specs":"{\"1\":\"已开门\",\"2\":\"正在开门\",\"3\":\"已关门\",\"4\":\"正在关门\"}"}}]', '系统', '1', '1692347065998', '0'), -('3126846568', '', 'info', 'FinalItemNotification', '关门时拿取物品通知', '', '0', '[{"code":"Name","name":"名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"Code","name":"编号","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"Count","name":"数量","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9999\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"Price","name":"价格","type_spec":{"type":"int","specs":"{\"min\":\"0\",\"max\":\"999999\",\"step\":\"1\"}"}},{"code":"Property","name":"规格","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ImageURL","name":"图片链接","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"CreateTime","name":"创建时间","type_spec":{"type":"date","specs":"{}"}},{"code":"OrderID","name":"订单ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}}]', '系统', '1', '1692347066031', '0'), -('3128574779', '', 'info', 'OTA_Success_Event', '固件升级成功', '', '0', '[{"code":"OTA_Status","name":"固件升级状态","type_spec":{"type":"bool","specs":"{\"0\":\"未在进行固件升级\",\"1\":\"正在进行固件升级\"}"}}]', '系统', '1', '1692347066165', '0'), -('3179991617', '', 'info', 'SensorError', '传感器故障上报', '', '1', '[{"code":"ErrorCode","name":"故障代码","type_spec":{"type":"enum","specs":"{\"0\":\"无故障\"}"}},{"code":"SensorSerialNumber","name":"传感器串码","type_spec":{"type":"text","specs":"{\"length\":\"9\"}"}}]', '系统', '1', '1692347066057', '0'), -('3185489567', '', 'info', 'UpdateModelCompleteEvent', '模型更新完成', '内容推荐', '0', '[{"code":"UpdateTaskID","name":"下发任务ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"AlgorithmID","name":"算法ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"ModelID","name":"模型ID","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"Status","name":"状态","type_spec":{"type":"int","specs":"{\"min\":\"-1024\",\"max\":\"1024\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '系统', '1', '1692347066063', '0'), -('3247526290', '', 'alert', 'HighVoltageAlarm', '电压过高告警', '', '0', '[{"code":"Error","name":"电压过高告警","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"电压过高告警\"}"}}]', '系统', '1', '1692347065843', '0'), -('3313774332', '', 'alert', 'WaterTemperatureAlarm', '水温报警', '', '1', '[{"code":"AlarmType","name":"报警类型","type_spec":{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"高温异常\",\"2\":\"低温异常\"}"}},{"code":"Temperature","name":"当前温度","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°C\"}"}}]', '系统', '1', '1692347065889', '0'), -('3328340152', '', 'info', 'StopAlgorithm', '单条算法停止结果', '', '0', '[{"code":"TaskID","name":"任务号","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"result","name":"算法停止结果","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '系统', '1', '1692347065893', '0'), -('3403674667', '', 'info', 'Machine_Fault_Event', '机器故障告警', '', '0', '[{"code":"Error_Code","name":"错误信息","type_spec":{"type":"enum","specs":"{\"0\":\"恢复正常\",\"1\":\"发生异常\"}"}}]', '系统', '1', '1692347066162', '0'), -('3442610346', '', 'info', 'KeyAddedNotification', '添加钥匙通知', '', '1', '[{"code":"KeyID","name":"钥匙ID","type_spec":{"type":"text","specs":"{\"length\":\"10\"}"}},{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}},{"code":"UserLimit","name":"用户权限","type_spec":{"type":"enum","specs":"{\"1\":\"普通用户\",\"2\":\"管理员\",\"3\":\"劫持用户\"}"}}]', '系统', '1', '1692347066116', '0'), -('3490842997', '', 'alert', 'OnFacePicError', '同步人脸图片失败', '人脸2.0(不推荐)', '0', '[{"code":"SyncTime","name":"同步时间戳","type_spec":{"type":"date","specs":"{}"}},{"code":"Code","name":"错误码","type_spec":{"type":"int","specs":"{\"min\":\"16001\",\"max\":\"16200\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"FaceMd5","name":"图片MD5值","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"UserId","name":"用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"AlgorithmId","name":"算法ID","type_spec":{"type":"text","specs":"{\"length\":\"32\"}"}}]', '系统', '1', '1692347065805', '0'), -('349560321', '', 'info', 'UpdateParkSpaceStatus', '车位状态变化', '', '1', '[{"code":"StateParked","name":"驻车状态","type_spec":{"type":"enum","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}},{"code":"ParkedNumber","name":"驻车车牌","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065858', '0'), -('3521784337', '', 'info', 'CustomAlarm', '智能告警', '', '0', '[{"code":"EventList","name":"事件列表","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"struct\"}}"}}]', '系统', '1', '1692347065798', '0'), -('3601273853', '', 'info', 'MonitorActionEvent', '监播动作结果上报事件', '内容推荐', '0', '[{"code":"ActionType","name":"监播操作类型","type_spec":{"type":"int","specs":"{\"min\":\"-1024\",\"max\":\"1024\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"FileKey","name":"上传文件ossKey","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}},{"code":"Extension","name":"扩展信息","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347066063', '0'), -('3605987335', '', 'info', 'UnlockNotification', '开锁动作上报', '', '0', '[{"code":"UnlockState","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"0\":\"室内机开锁\",\"1\":\"刷卡开锁\",\"2\":\"密码开锁\",\"3\":\"蓝牙开锁\",\"4\":\"人脸开锁\",\"5\":\"指纹开锁\",\"6\":\"手机开锁\"}"}}]', '系统', '1', '1692347066033', '0'), -('3624153632', '', 'info', 'KeyInformationNotification', '钥匙信息上报', '', '1', '[{"code":"KeyID","name":"钥匙ID","type_spec":{"type":"text","specs":"{\"length\":\"10\"}"}},{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}},{"code":"UserLimit","name":"用户权限","type_spec":{"type":"enum","specs":"{\"1\":\"普通用户\",\"2\":\"管理员\",\"3\":\"劫持用户\"}"}}]', '系统', '1', '1692347066116', '0'), -('3634107550', '', 'alert', 'RotateSpeedSensorExceptional', '转速传感器异常', '', '0', '[{"code":"Error","name":"转速传感器异常","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"转速传感器异常\"}"}}]', '系统', '1', '1692347065843', '0'), -('3634907374', '', 'info', 'KeyValueNotification', '键值信息上报', '', '0', '[{"code":"KeyValue","name":"键值","type_spec":{"type":"int","specs":"{\"min\":\"1\",\"max\":\"6\",\"step\":\"1\",\"unitName\":\"无\"}"}}]', '系统', '1', '1692347065928', '0'), -('3660075023', '', 'alert', 'BeltSlip', '皮带打滑', '', '0', '[{"code":"Error","name":"皮带打滑","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"皮带打滑\"}"}}]', '系统', '1', '1692347065843', '0'), -('3671750357', '', 'info', 'checkPhoneNumber', '可视对讲-校验手机号', '', '0', '[{"code":"phoneNumber","name":"手机号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065804', '0'), -('3705146098', '', 'alert', 'IntelligentAlarm', '智能告警', '', '1', '[{"code":"EventList","name":"事件列表","type_spec":{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"struct\"}}"}}]', '系统', '1', '1692347065787', '0'), -('3705798727', '', 'info', 'SensorNetstateAlarm', '传感器离线告警', '', '0', '[{"code":"SensorState","name":"传感器状态","type_spec":{"type":"enum","specs":"{\"0\":\"在线\",\"1\":\"离线\"}"}},{"code":"SensorSerialNumber","name":"传感器串码","type_spec":{"type":"text","specs":"{\"length\":\"9\"}"}}]', '系统', '1', '1692347066057', '0'), -('3742287838', '', 'info', 'CarPassEvent', '通行事件', '', '1', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"TypePermission","name":"权限类型","type_spec":{"type":"enum","specs":"{\"0\":\"普通车辆\",\"1\":\"临时车辆\",\"2\":\"白名单\"}"}},{"code":"PlateNumberImageUrl","name":"车牌号照片Url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"OrderNumber","name":"订单编号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"OpenType","name":"抬杆类型","type_spec":{"type":"enum","specs":"{\"0\":\"正常抬杆\",\"1\":\"异常抬杆\"}"}},{"code":"Direction","name":"方向","type_spec":{"type":"enum","specs":"{\"0\":\"进场\",\"1\":\"出场\"}"}},{"code":"RecordId","name":"本地停车系统记录ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065855', '0'), -('3763641175', '', 'info', 'DoorClosedNotification', '关门通知', '', '0', '[{"code":"DeviceID","name":"设备ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"ReportTime","name":"上报时间","type_spec":{"type":"date","specs":"{}"}}]', '系统', '1', '1692347065852', '0'), -('3764209992', '', 'info', 'ParkingChangeNotification', '车位状态变化上报', '', '1', '[{"code":"ParkingEvent","name":"车位事件","type_spec":{"type":"bool","specs":"{\"0\":\"出车\",\"1\":\"入车\"}"}}]', '系统', '1', '1692347066012', '0'), -('3776200902', '', 'info', 'PlayLogEvent', '播放日志', '', '1', '[{"code":"AdPlanID","name":"广告计划标识","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"ChannelId","name":"渠道标识","type_spec":{"type":"text","specs":"{\"length\":\"128\"}"}},{"code":"AdFileUrl","name":"广告文件链接","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"AdFileType","name":"广告文件类型","type_spec":{"type":"enum","specs":"{\"0\":\"图片\",\"1\":\"视频\"}"}},{"code":"StartTime","name":"开始播放时间","type_spec":{"type":"date","specs":"{}"}},{"code":"EndTime","name":"结束播放时间","type_spec":{"type":"date","specs":"{}"}}]', '系统', '1', '1692347065812', '0'), -('3804150115', '', 'alert', 'AbnormalOpenGate', '异常抬杆', '异常抬杆', '0', '[{"code":"OpenType","name":"抬杆方式","type_spec":{"type":"enum","specs":"{\"0\":\"遥控器控制抬杆\",\"1\":\"设备自身按键抬杆\",\"99\":\"其他方式\"}"}},{"code":"ImagePath","name":"抓拍图片地址","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065787', '0'), -('3809811826', '', 'info', 'UpdateWhiteList', '白名单变更', '', '1', '[{"code":"Type","name":"变更类型","type_spec":{"type":"enum","specs":"{\"0\":\"新增\",\"1\":\"删除\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065857', '0'), -('3884254233', '', 'alert', 'EnvironmentalHumidityAlarm', '环境湿度报警', '', '0', '[{"code":"AlarmType","name":"报警类型","type_spec":{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"高湿报警\",\"2\":\"低湿报警\"}"}},{"code":"Humidity","name":"当前湿度","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\"}"}}]', '系统', '1', '1692347065890', '0'), -('3907654116', '', 'error', 'Faultreport', '故障上报', '', '0', '[{"code":"error","name":"故障","type_spec":{"type":"enum","specs":"{\"0\":\"无故障\",\"1\":\"水超温\",\"2\":\"传感器故障\",\"3\":\"加热器缺水\"}"}}]', '系统', '1', '1692347065868', '0'), -('391457889', '', 'alert', 'TemperatureSensorExceptional', '环境温度传感器异常', '', '0', '[{"code":"Error","name":"环境温度传感器异常","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"环境温度传感器异常\"}"}}]', '系统', '1', '1692347065844', '0'), -('3938619587', '', 'alert', 'RefrigeratingExceptional', '制冷不良', '', '0', '[{"code":"Error","name":"制冷不良","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"制冷不良\"}"}}]', '系统', '1', '1692347065843', '0'), -('3963909453', '', 'alert', 'EnterAirTempSensorExceptional', '进气温度传感器异常', '', '0', '[{"code":"Error","name":"进气温度传感器异常","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"进气温度传感器异常\"}"}}]', '系统', '1', '1692347065844', '0'), -('3985158012', '', 'info', 'UpdateBlackList', '黑名单变更', '', '1', '[{"code":"Type","name":"变更类型","type_spec":{"type":"enum","specs":"{\"0\":\"新增\",\"1\":\"删除\"}"}},{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347065857', '0'), -('4012413282', '', 'info', 'HeartbeatNotification', '心跳事件上报', '', '0', '[{"code":"ParkingState","name":"车位状态","type_spec":{"type":"bool","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}},{"code":"VoltageValue","name":"电压值","type_spec":{"type":"float","specs":"{\"min\":\"2.5\",\"max\":\"4.5\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}}]', '系统', '1', '1692347065949', '0'), -('4029117601', '', 'info', 'Error', '故障上报', '', '1', '[{"code":"ErrorCode","name":"故障代码","type_spec":{"type":"enum","specs":"{\"0\":\"恢复正常\",\"1\":\"网络异常\",\"2\":\"存储介质异常\"}"}}]', '系统', '1', '1692347065787', '0'), -('4039883476', '', 'info', 'Status_alarm', '门禁状态告警', '', '1', '', '系统', '1', '1692347065951', '0'), -('4069638291', '', 'info', 'DoorUnlockedAlarm', '门未锁好报警', '', '1', '', '系统', '1', '1692347066116', '0'), -('4122979178', '', 'info', 'LeftWarning', '左炉告警', '', '0', '', '系统', '1', '1692347066165', '0'), -('4145483167', '', 'alert', 'PHAlarm', 'PH告警', '', '0', '[{"code":"AlarmType","name":"报警类型","type_spec":{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"高\",\"2\":\"低\"}"}},{"code":"PH","name":"PH","type_spec":{"type":"float","specs":"{\"min\":\"0\",\"max\":\"14\",\"step\":\"0.1\"}"}}]', '系统', '1', '1692347065890', '0'), -('4163701626', '', 'info', 'ElectricValueStateNotification', '电阀门状态报告', '', '0', '[{"code":"ElectricValveState","name":"电阀门状态","type_spec":{"type":"bool","specs":"{\"0\":\"分闸\",\"1\":\"合闸\"}"}}]', '系统', '1', '1692347066027', '0'), -('4238357100', '', 'info', 'EfenceEvent', '通用事件', '', '0', '[{"code":"HostId","name":"主机ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"EfenceId","name":"围栏ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"EfenceName","name":"围栏名称","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"EventType","name":"事件类型","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"EventCode","name":"事件编码","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"UserId","name":"事件相关的用户ID","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"UserName","name":"事件相关的用户名","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"EventTime","name":"事件时间","type_spec":{"type":"date","specs":"{}"}}]', '系统', '1', '1692347065849', '0'), -('46739182', '', 'info', 'ContentSdkStatusEvent', 'SDK运行状态', '内容推荐', '0', '[{"code":"Status","name":"状态类型值","type_spec":{"type":"int","specs":"{\"min\":\"-1024\",\"max\":\"1024\",\"step\":\"1\",\"unitName\":\"无\"}"}},{"code":"Message","name":"消息内容","type_spec":{"type":"text","specs":"{\"length\":\"1024\"}"}}]', '系统', '1', '1692347066062', '0'), -('492753336', '', 'error', 'CommunicationFault', '通讯故障', '', '0', '[{"code":"Error","name":"通讯故障","type_spec":{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"通讯故障\"}"}}]', '系统', '1', '1692347065843', '0'), -('558850459', '', 'info', 'LockedVehicleRecognition', '锁定车辆识别', '', '1', '[{"code":"PlateNumber","name":"车牌号","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PlateNumberImageUrl","name":"车牌号照片Url","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"Direction","name":"方向","type_spec":{"type":"enum","specs":"{\"0\":\"进场\",\"1\":\"出场\"}"}}]', '系统', '1', '1692347065855', '0'), -('58382700', '', 'info', 'DoorSensorNotification', '门磁状态上报', '', '0', '[{"code":"DoorState","name":"门磁状态","type_spec":{"type":"enum","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}}]', '系统', '1', '1692347066033', '0'), -('624092258', '', 'info', 'PublishDataCheckCode', '上报设备数据校验码', '', '1', '[{"code":"Code","name":"状态码","type_spec":{"type":"enum","specs":"{\"0\":\"获取校验码成功\",\"1\":\"获取校验码失败\",\"2\":\"取消获取校验码\"}"}},{"code":"UserInfoCheckCode","name":"用户消息校验码","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"PicCheckCode","name":"人脸图片校验码","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"FeatureCheckCode","name":"特征值校验码","type_spec":{"type":"text","specs":"{\"length\":\"64\"}"}},{"code":"CheckTime","name":"校验截止时间戳","type_spec":{"type":"date","specs":"{}"}}]', '系统', '1', '1692347065814', '0'), -('652354800', '', 'info', 'P2PSignalUpstream', 'P2P信令上报', '', '0', '[{"code":"Data","name":"信令数据","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347066083', '0'), -('72879488', '', 'alert', 'Offline_alarm', '离线告警', '', '1', '', '系统', '1', '1692347065828', '0'), -('735772469', '', 'info', 'AlgorithmTaskResult', '算法任务执行结果', '', '1', '[{"code":"AlgoID","name":"算法模型ID","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"TaskID","name":"算法任务号","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"Result","name":"执行结果","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"TaskType","name":"任务类型","type_spec":{"type":"enum","specs":"{\"0\":\"停止算法\",\"1\":\"启动算法\"}"}}]', '系统', '1', '1692347065896', '0'), -('764055094', '', 'info', 'GetWeather', '获取天气信息', '', '0', '', '系统', '1', '1692347066132', '0'), -('768661561', '', 'info', 'PicUploadResult', '图片上传结果', '', '0', '[{"code":"Result","name":"上传结果","type_spec":{"type":"enum","specs":"{\"0\":\"成功\",\"1\":\"网络异常\",\"2\":\"鉴权错误\",\"3\":\"文件内容错误\"}"}},{"code":"ErrorMessage","name":"错误描述","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"PicInfo","name":"图片信息","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}}]', '系统', '1', '1692347066084', '0'), -('771438591', '', 'info', 'GasCheck_Event', '可燃气体告警', '', '0', '[{"code":"Gas_Result","name":"可燃气体检测结果","type_spec":{"type":"enum","specs":"{\"0\":\"未检测到可燃气体\",\"1\":\"检测到可燃气体\"}"}}]', '系统', '1', '1692347066162', '0'), -('808796615', '', 'info', 'ControlResult', '遥控处理结果', '', '1', '[{"code":"function","name":"功能名称","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}},{"code":"success","name":"处理结果","type_spec":{"type":"bool","specs":"{\"0\":\"error\",\"1\":\"success\"}"}},{"code":"errorMessage","name":"错误消息","type_spec":{"type":"text","specs":"{\"length\":\"255\"}"}}]', '系统', '1', '1692347065901', '0'), -('829839713', '', 'error', 'CrashEvent', '水平碰撞', '', '0', '[{"code":"crashAccP","name":"加速度峰值","type_spec":{"type":"float","specs":"{\"min\":\"-2000\",\"max\":\"2000\",\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"}"}},{"code":"CrashAccE","name":"加速度原始值","type_spec":{"type":"float","specs":"{\"min\":\"-2000\",\"max\":\"2000\",\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"}"}}]', '系统', '1', '1692347065819', '0'), -('890919722', '', 'error', 'TyrePressureEvent', '胎压事件', '', '0', '[{"code":"VehTyrePressFault","name":"胎压故障","type_spec":{"type":"bool","specs":"{\"0\":\"False\",\"1\":\"Ture\"}"}}]', '系统', '1', '1692347065821', '0'), -('904837718', '', 'info', 'DoorOpenNotification', '开门通知', '', '1', '[{"code":"KeyID","name":"钥匙ID","type_spec":{"type":"text","specs":"{\"length\":\"10\"}"}},{"code":"LockType","name":"开锁方式","type_spec":{"type":"enum","specs":"{\"1\":\"指纹\",\"2\":\"密码\",\"3\":\"卡\",\"4\":\"机械钥匙\"}"}}]', '系统', '1', '1692347066116', '0'), -('929118685', '', 'alert', 'abnormalBleCard', '异常刷卡', '', '1', '[{"code":"cardId","name":"门禁卡ID","type_spec":{"type":"text","specs":"{\"length\":\"2048\"}"}},{"code":"eventType","name":"事件类型","type_spec":{"type":"enum","specs":"{\"0\":\"无效卡\"}"}}]', '系统', '1', '1692347065816', '0'); diff --git a/manifest/sql/init.sql b/manifest/sql/init.sql new file mode 100644 index 0000000..4ed6819 --- /dev/null +++ b/manifest/sql/init.sql @@ -0,0 +1,855 @@ +-- MySQL dump 10.13 Distrib 8.3.0, for macos14.2 (x86_64) +-- +-- Host: 127.0.0.1 Database: open-hummingbird +-- ------------------------------------------------------ +-- Server version 8.0.32 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `actions` +-- + +DROP TABLE IF EXISTS `actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `actions` ( + `id` varchar(255) NOT NULL COMMENT '主键', + `product_id` varchar(255) DEFAULT NULL COMMENT '产品ID', + `code` varchar(255) DEFAULT NULL COMMENT '标识符', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `description` text COMMENT '描述', + `require` tinyint(1) DEFAULT NULL COMMENT '是否必须', + `call_type` varchar(50) DEFAULT NULL COMMENT '调用方式', + `input_params` text COMMENT '输入参数', + `output_params` text COMMENT '输入参数', + `tag` varchar(50) DEFAULT NULL COMMENT '标签', + `system` tinyint(1) DEFAULT NULL COMMENT '系统内置', + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `fk_product_actions` (`product_id`), + CONSTRAINT `fk_product_actions` FOREIGN KEY (`product_id`) REFERENCES `product` (`id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `actions` +-- + +LOCK TABLES `actions` WRITE; +/*!40000 ALTER TABLE `actions` DISABLE KEYS */; +/*!40000 ALTER TABLE `actions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `advance_config` +-- + +DROP TABLE IF EXISTS `advance_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `advance_config` ( + `id` varchar(255) NOT NULL COMMENT '主键', + `log_level` int DEFAULT '1' COMMENT '日志等级', + `persist_storage` tinyint(1) DEFAULT '0' COMMENT '存储开关', + `storage_hour` int DEFAULT '24' COMMENT '存储时长', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `advance_config` +-- + +LOCK TABLES `advance_config` WRITE; +/*!40000 ALTER TABLE `advance_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `advance_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `alert_list` +-- + +DROP TABLE IF EXISTS `alert_list`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `alert_list` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `alert_rule_id` varchar(255) DEFAULT NULL COMMENT '告警记录ID', + `trigger_time` bigint DEFAULT NULL COMMENT '触发时间', + `alert_result` varchar(255) DEFAULT NULL COMMENT '告警内容', + `status` varchar(50) DEFAULT NULL COMMENT '状态', + `treated_time` bigint DEFAULT NULL COMMENT '处理时间', + `message` text COMMENT '处理意见', + `is_send` tinyint(1) DEFAULT NULL COMMENT '是否发送通知', + PRIMARY KEY (`id`), + KEY `fk_alert_list_alert_rule` (`alert_rule_id`), + CONSTRAINT `fk_alert_list_alert_rule` FOREIGN KEY (`alert_rule_id`) REFERENCES `alert_rule` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `alert_list` +-- + +LOCK TABLES `alert_list` WRITE; +/*!40000 ALTER TABLE `alert_list` DISABLE KEYS */; +/*!40000 ALTER TABLE `alert_list` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `alert_rule` +-- + +DROP TABLE IF EXISTS `alert_rule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `alert_rule` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(191) NOT NULL, + `name` longtext, + `device_id` varchar(191) DEFAULT NULL, + `alert_type` longtext, + `alert_level` longtext, + `status` longtext, + `condition` longtext, + `sub_rule` longtext, + `notify` longtext, + `silence_time` bigint DEFAULT NULL, + `description` longtext, + PRIMARY KEY (`id`), + KEY `idx_alert_rule_device_id` (`device_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `alert_rule` +-- + +LOCK TABLES `alert_rule` WRITE; +/*!40000 ALTER TABLE `alert_rule` DISABLE KEYS */; +/*!40000 ALTER TABLE `alert_rule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `category_template` +-- + +DROP TABLE IF EXISTS `category_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `category_template` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `category_key` varchar(255) DEFAULT NULL COMMENT '品类标识', + `category_name` varchar(255) DEFAULT NULL COMMENT '品类名字', + `scene` varchar(255) DEFAULT NULL COMMENT '场景', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `category_template` +-- + +LOCK TABLES `category_template` WRITE; +/*!40000 ALTER TABLE `category_template` DISABLE KEYS */; +INSERT INTO `category_template` VALUES (0,0,'1003991660','Bathtub','浴缸','公共场景'),(0,0,'1016943056','SensorSignalCollector','传感器信号采集器','公共场景'),(0,0,'1032263099','DoorViewer','猫眼','公共场景'),(0,0,'1057703083','FaceRecognition','人脸识别门禁','公共场景'),(0,0,'1077003807','WallHungGasBoiler','壁挂炉','公共场景'),(0,0,'1077369652','WaterloggingSensor','水浸检测','公共场景'),(0,0,'1080816726','GasWaterHeater','燃气热水器','公共场景'),(0,0,'1083528962','EmergencyLight','应急照明灯','公共场景'),(0,0,'1109907153','TiltSensor','倾角传感器','公共场景'),(0,0,'1121697478','FlowDetection','营养液流速监测器','公共场景'),(0,0,'1143378390','ToiletLid','马桶盖','公共场景'),(0,0,'1143463999','gateway','边缘网关','公共场景'),(0,0,'1164410062','MicrowaveOven','微波炉','公共场景'),(0,0,'1174050315','WaterMonitor','用水监控器','公共场景'),(0,0,'1180636848','TransmissionDetector','传输检测仪','公共场景'),(0,0,'1190323560','ElectricPower','智能电力','公共场景'),(0,0,'119641937','AirPurifier','空气净化器','公共场景'),(0,0,'1202956260','ParkMagnetism','地磁车位监测器','公共场景'),(0,0,'1205642975','MilkModulator','调奶器','公共场景'),(0,0,'1217945693','SOCOutlet','SoC插座','公共场景'),(0,0,'1219411432','Shared washing machine','共享洗衣机','公共场景'),(0,0,'1238245371','ElectricMotorcycle','电动摩托车','公共场景'),(0,0,'1257578583','AlgorithmManagerPlatform','视频内容分析','公共场景'),(0,0,'1272495504','LightEnsor','光照传感器','公共场景'),(0,0,'1295946571','BreadMachine','面包机','公共场景'),(0,0,'1310558742','BreakingMachine','破壁机','公共场景'),(0,0,'1314456282','SmartWaterFlowMeter','智能水流量计','公共场景'),(0,0,'1317832755','DOSensor','溶解氧监测','公共场景'),(0,0,'1322844205','epd_table','电子纸桌签','公共场景'),(0,0,'1336341254','WifiTemplate','Wifi功能模板','公共场景'),(0,0,'1338855748','InternetProtocolCamera','网络摄像机','公共场景'),(0,0,'1353311705','EmerBroadcasting','应急广播','公共场景'),(0,0,'1353473731','Watch','手表','公共场景'),(0,0,'1358761318','VoiceTemperatureControlPanel','语音温控面板','公共场景'),(0,0,'1370783399','IB_Lock ','锁','公共场景'),(0,0,'1374592946','MultifunctionElectricityMeter','多功能电表','公共场景'),(0,0,'1376371266','Siren','声光报警器','公共场景'),(0,0,'1378788574','RiceCooker','电饭煲','公共场景'),(0,0,'1402350707','MosquitoLamp','灭蚊器','公共场景'),(0,0,'1412832632','BodyFatScale','体脂秤','公共场景'),(0,0,'1427185741','Lighting','路灯照明','公共场景'),(0,0,'1452446090','GasMeter','燃气表','公共场景'),(0,0,'1458058150','Environment','环境电器','公共场景'),(0,0,'1459898422','Dryer','干衣机','公共场景'),(0,0,'1467396228','Fridge','冰箱','公共场景'),(0,0,'1474533354','FlowIndicator','水流指示器','公共场景'),(0,0,'1477581055','Airer','晾衣杆','公共场景'),(0,0,'1479313126','AlarmSwitch','报警开关','公共场景'),(0,0,'148482243','DisplacementMonitor','位移监控器','公共场景'),(0,0,'1486579442','GeneralGateway','网关','公共场景'),(0,0,'1490626281','Aquatic','水产','公共场景'),(0,0,'1498512016','Stockbreeding','畜牧','公共场景'),(0,0,'1508466943','ElevatorBodySensor','电梯人体探测传感器','公共场景'),(0,0,'1517977869','DrinkingFoundation','饮水机','公共场景'),(0,0,'151840085','Locator','定位器','公共场景'),(0,0,'1520336169','ECGCard','心电卡','公共场景'),(0,0,'1532635695','IceCreamMaker','冰激凌机','公共场景'),(0,0,'1542954005','IntelligentLitterBox','智能猫砂盆','公共场景'),(0,0,'1544020325','FoodDehydrator','食物烘干机','公共场景'),(0,0,'1572607807','ElevatorCollectingBox','电梯集采盒','公共场景'),(0,0,'1584367584','ParkingLotBarrier','车位锁','公共场景'),(0,0,'1601032911','SmartElectricityMeter','智能电表','公共场景'),(0,0,'1610492418','OutsideShadeCurtain','外遮荫帘幕','公共场景'),(0,0,'1612795346','Forestry','林业','公共场景'),(0,0,'1644898122','Sauna','干蒸房','公共场景'),(0,0,'1654064530','SOCSmartLife','智能生活SOC','公共场景'),(0,0,'1656986750','RobotCleaner','扫地机器人','公共场景'),(0,0,'1658405335','IRDetector','红外探测器','公共场景'),(0,0,'1660843887','SkyWindow','天窗','公共场景'),(0,0,'1662801242','WaterMeter','水表','公共场景'),(0,0,'1671919327','SmartRearviewMirror','智能后视镜','公共场景'),(0,0,'1680171268','ParkArea','社区车行停车区域','公共场景'),(0,0,'1692494275','Thermometer','体温计','公共场景'),(0,0,'1698856147','DioxideDetector','二氧化碳检测器','公共场景'),(0,0,'1709184249','Light','灯','公共场景'),(0,0,'1730778852','ElectricValve','电动阀','公共场景'),(0,0,'1736439261','Grab the doll machine','抓娃娃机','公共场景'),(0,0,'1746224889','WarningGW','报警网关','公共场景'),(0,0,'175372732','Sterilizer','消毒柜','公共场景'),(0,0,'1757093474','Airbox','空气盒子','公共场景'),(0,0,'1758547618','FireValve','防火阀','公共场景'),(0,0,'1767145807','SmartTox','智能车机','公共场景'),(0,0,'1802986572','AttendanceMachine','考勤机','公共场景'),(0,0,'1803132264','SecurityGateway','安防监测网关','公共场景'),(0,0,'1825489425','Gas meter manufacturing','气表制造','公共场景'),(0,0,'1841197388','Electrical&Lighting','电工照明','公共场景'),(0,0,'1851726091','Cateyecamera','猫眼摄像头','公共场景'),(0,0,'1851964822','SingleSlotOutlet','SoC单孔插座','公共场景'),(0,0,'1856095026','SmartCleanFace','智能洁面仪','公共场景'),(0,0,'1898502861','SmartLife','智能生活','公共场景'),(0,0,'1916837477','Smoke_sensor','烟感传感器','公共场景'),(0,0,'1917202308','ArcExtinguishing','电弧灭弧','公共场景'),(0,0,'1928083077','Wristband','手环','公共场景'),(0,0,'1931491868','Outlet','插座','公共场景'),(0,0,'1935151447','Temperatureandhumiditysensor','室内温湿度监测设备','公共场景'),(0,0,'1939472643','ConversionGateway','通用网关','公共场景'),(0,0,'1942478484','PasswordAccess','密码门禁','公共场景'),(0,0,'1954528545','Lamp','灯控开关','公共场景'),(0,0,'1959426687','WaterPressureSensor','水压传感器','公共场景'),(0,0,'1966822850','QrCodeAccess','二维码门禁','公共场景'),(0,0,'1977728554','irrigation','灌溉系统','公共场景'),(0,0,'1991875037','PressureBlower','正压送风机','公共场景'),(0,0,'1994857742','FireCannon','智能消防炮','公共场景'),(0,0,'1995115342','sharing','共享租赁服务','公共场景'),(0,0,'2024252260','SmartPillow','智能枕','公共场景'),(0,0,'2031779992','SmartDoorIntercoms','门禁对讲机','公共场景'),(0,0,'2041454942','loraLight','lora单灯','公共场景'),(0,0,'2054704192','Projector','投影仪','公共场景'),(0,0,'2060412569','WaterDetector','水浸报警器','公共场景'),(0,0,'2069703823','ShowerHead','花洒','公共场景'),(0,0,'2078017229','FireButton','消防手报','公共场景'),(0,0,'2096700314','HomeLinkEdgeGateway','全屋边缘网关','公共场景'),(0,0,'2119837287','SmartGasFlowMeter','智能燃气流量计','公共场景'),(0,0,'2127134966','WindowLinearActuator','推窗器','公共场景'),(0,0,'2139680068','VideoIntercomDoor','可视对讲机门口机','公共场景'),(0,0,'2140635649','DustMonitor','扬尘监测','公共场景'),(0,0,'214462138','AirEnergyHeater','空气能热水器','公共场景'),(0,0,'2147332400','Health','个护健康','公共场景'),(0,0,'2155247387','NAS','网络存储器','公共场景'),(0,0,'215562376','SmartBuilding','智能楼宇','公共场景'),(0,0,'2159633866','SmartWasteSortingDustBin','智能分类垃圾桶','公共场景'),(0,0,'2164229660','ToiletSeat','马桶','公共场景'),(0,0,'2165641745','ParkWNC','超声车位检测器','公共场景'),(0,0,'2176374230','PHDetector','酸碱度检测计','公共场景'),(0,0,'2183458749','BlueToothScale','蓝牙秤','公共场景'),(0,0,'2187353918','PressureAlarm','压力报警器','公共场景'),(0,0,'2197676390','FaceRecognitionCapabilityModel','人脸识别能力模型','公共场景'),(0,0,'2198447565','MultiParkingCamera','多功能停车摄像头','公共场景'),(0,0,'2213231298','TeaBar','茶吧机','公共场景'),(0,0,'2213511997','PeopleFlow','客流量传感器','公共场景'),(0,0,'2220700747','Farming','种植养殖','公共场景'),(0,0,'2236106118','IntelligentCurtain','智能窗帘','公共场景'),(0,0,'2243253985','ParkingArea','停车区域','公共场景'),(0,0,'2252555590','Audio','音箱','公共场景'),(0,0,'2254093160','ParkOverAll','道闸一体机','公共场景'),(0,0,'2263073175','Juicer','果汁机','公共场景'),(0,0,'226718712','TemperatureHumidityDetector','温湿度检测','公共场景'),(0,0,'2272365318','FingerPrintDoor','指纹门禁','公共场景'),(0,0,'2306933655','FireSafety','消防安全','公共场景'),(0,0,'233115878','Bed','床','公共场景'),(0,0,'2336370247','Breaker','通断器','公共场景'),(0,0,'2362050061','SideWindow','侧窗','公共场景'),(0,0,'236487212','WaterPurifier','净水器','公共场景'),(0,0,'2384697088','SideFan','侧风机','公共场景'),(0,0,'2386777387','InfraredDetectors','红外体征探测器','公共场景'),(0,0,'2411899612','InnerInsulationCurtain','内保温帘幕','公共场景'),(0,0,'2414894689','SmartAgriculture','智能农业','公共场景'),(0,0,'2416185867','FAU','新风机','公共场景'),(0,0,'241749358','Locater','车辆定位卡','公共场景'),(0,0,'2424197722','ManholeLevel','窨井液位监测设备','公共场景'),(0,0,'2449424750','VibrationSensor','震动传感器','公共场景'),(0,0,'2451490774','Seeper','易涝点监测设备','公共场景'),(0,0,'2458320290','N4DeviceType','N4设备','公共场景'),(0,0,'2469642651','GarbageOverflowingDetection','垃圾满溢检测','公共场景'),(0,0,'2478429125','Ice cream machine','冰淇淋机','公共场景'),(0,0,'2486213601','GlueSprayingMachine','涂胶机','公共场景'),(0,0,'2486863848','CustomCategory','自定义品类','公共场景'),(0,0,'2496595303','Stove','燃气灶','公共场景'),(0,0,'2506817612','capture','车牌抓拍-ib','公共场景'),(0,0,'2508550213','HealthPreservingPot','养生壶','公共场景'),(0,0,'2508828248','Drivingbehavior','驾驶行为数据采集','公共场景'),(0,0,'2511284808','Collision data collection','行车碰撞数据采集','公共场景'),(0,0,'2530476836','FlowRate','流速液位监测设备','公共场景'),(0,0,'2532038413','FillLight','补光灯','公共场景'),(0,0,'2540198608','SoyMilkMaker','豆浆机','公共场景'),(0,0,'2566653329','AutomaticCooker','烹饪机器人','公共场景'),(0,0,'2582619932','PunchingMachine','冲压机','公共场景'),(0,0,'2585140665','IlluminationSensor','光照度传感器','公共场景'),(0,0,'2591283185','DoorSensor','门磁','公共场景'),(0,0,'2615482591','FireWaterCannon','智能消防水炮','公共场景'),(0,0,'2618109742','BackgroundMusicController','背景音乐控制器','公共场景'),(0,0,'2630368229','EmbeddedSteamer','嵌入式电蒸箱','公共场景'),(0,0,'2658053963','AirConditioning','空调机','公共场景'),(0,0,'2665773780','Curtainswitch','单路窗帘开关','公共场景'),(0,0,'267289283','WaterSoftener','软水机','公共场景'),(0,0,'2675158354','Oven','烤箱','公共场景'),(0,0,'2689841043','Airconditionerthermostat','空调温控器','公共场景'),(0,0,'2690558751','Sceneswitch2','场景面板开关','公共场景'),(0,0,'2696180914','SmartFireHydrants','智能消防栓','公共场景'),(0,0,'2696331010','EnergyMangement','能源管理','公共场景'),(0,0,'2707381757','BathHeater','浴霸','公共场景'),(0,0,'2722813871','MetalProductsIndustry','金属制品业','公共场景'),(0,0,'272994382','Logisticsmonitoring','仓储运输环境检测设备','公共场景'),(0,0,'2736748498','Scene','场景面板','公共场景'),(0,0,'2753743871','FaceIdentification','客群识别设备','公共场景'),(0,0,'2753870070','Building','智慧建筑','公共场景'),(0,0,'2760735291','IntegratedStove','集成灶','公共场景'),(0,0,'2769982899','MeterElec_Dlt645','DLT645电表','公共场景'),(0,0,'277660652','MoxibustionApparatus','艾灸仪','公共场景'),(0,0,'2791657961','SmartWaterMeter','智能水表','公共场景'),(0,0,'28067888','FishTank','鱼缸','公共场景'),(0,0,'2810669640','Gatewaycampus','网关-园区','公共场景'),(0,0,'2833285369','CarbonDioxideGeneratingDevice','二氧化碳发生装置','公共场景'),(0,0,'2855630630','RainGauge','雨量计','公共场景'),(0,0,'286658404','TicketMachine','停车小票机设备','公共场景'),(0,0,'2876645323','Heater','取暖器','公共场景'),(0,0,'2879157437','Faucet','龙头','公共场景'),(0,0,'2892050503','SmartGasMeter','智能燃气表','公共场景'),(0,0,'2898213335','SceneSwitch','场景开关','公共场景'),(0,0,'2907507111','DoorContact','门磁传感器','公共场景'),(0,0,'2907624781','FootBath','足浴盆','公共场景'),(0,0,'2909485112','CeilingFanLamp','吊扇灯','公共场景'),(0,0,'2909800103','QrCodeAccessControl','二维码门禁机','公共场景'),(0,0,'2915327102','HazardWarningLamp','危险报警器','公共场景'),(0,0,'291929549','AromaDiffuser','香薰机','公共场景'),(0,0,'2924482367','FloorHeating','地暖','公共场景'),(0,0,'2926680552','VOCSensor','VOC感应器','公共场景'),(0,0,'2933874436','IRRemoteController','红外遥控器','公共场景'),(0,0,'2950098339','WaterAndFertilizerMachine','水肥一体机','公共场景'),(0,0,'296023864','SmartCity','智能城市','公共场景'),(0,0,'2965338308','TextileIndustry','纺织业','公共场景'),(0,0,'2965800811','Dehumidifier','除湿器','公共场景'),(0,0,'2985234695','Teatable','茶台','公共场景'),(0,0,'299322541','Inverter','变频器','公共场景'),(0,0,'2994213180','Spraying','喷涂处理','公共场景'),(0,0,'3005223742','Water purifier','净水机','公共场景'),(0,0,'3014064425','Sphygmomanometer','电子血压计','公共场景'),(0,0,'3045662349','EnvironmentalNoiseMonitor','环境噪音监测','公共场景'),(0,0,'304879615','WindSensor','风速传感器','公共场景'),(0,0,'3067546928','RemoteTerminalUnit','远程监测终端','公共场景'),(0,0,'3080168808','MicrowaveDetector','微波人体探测器','公共场景'),(0,0,'3084119236','FaceServer','人脸门禁','公共场景'),(0,0,'308992174','Threadmill','跑步机','公共场景'),(0,0,'3117718394','WiFiProbeCollector','WiFi探针采集器','公共场景'),(0,0,'3121321956','OffVoltageMonitor','断电监控','公共场景'),(0,0,'3135151784','AlarmButton','手动求救报警','公共场景'),(0,0,'3151630690','ParkingLot','停车场','公共场景'),(0,0,'3180963006','SmartPatrol','智能巡护','公共场景'),(0,0,'3184023416','air_sensor','环境检测盒子','公共场景'),(0,0,'3185730852','MeteorologicalStation','气象站监控仪','公共场景'),(0,0,'3189998891','HVACExtController','HVAC外接控制器','公共场景'),(0,0,'3194378963','ParkingSpace','停车车位','公共场景'),(0,0,'3199187122','WallSwitch','入墙开关','公共场景'),(0,0,'3202981550','Flowmeter','流量计','公共场景'),(0,0,'3210555695','ParkHDDetectMachine','车位传感器','公共场景'),(0,0,'3228525222','ManholesCoverShiftDetection','井盖移位检测','公共场景'),(0,0,'3256551445','MultiAccessControl','多功能门禁','公共场景'),(0,0,'3276866518','AirCollect','大气监测设备','公共场景'),(0,0,'328287120','SmokeDetector','烟雾探测器','公共场景'),(0,0,'3290884847','Relay','继电器','公共场景'),(0,0,'3291103805','retail','零售设备','公共场景'),(0,0,'3303376715','InductionCooker','电磁炉','公共场景'),(0,0,'3346900877','LiquidLevelAlarm','液位传感器','公共场景'),(0,0,'3357850891','LightingFacility','灯光设备','公共场景'),(0,0,'3361381672','Ice_machine','制冰机','公共场景'),(0,0,'3373562551','FarmRecorder','农田记录仪','公共场景'),(0,0,'3374429868','FoodDispenser','取餐柜','公共场景'),(0,0,'3375036315','LaserScanner','激光探测仪','公共场景'),(0,0,'3379620097','Plant','种植','公共场景'),(0,0,'338598066','AirCompressorMachine','空压机','公共场景'),(0,0,'3394190','EnvironmentalPerception','环境感知','公共场景'),(0,0,'339565485','ParkingLock','地锁','公共场景'),(0,0,'3402354095','Smart_Neck_Massage','智能颈部按摩仪','公共场景'),(0,0,'3403390294','VREquipment','智能VR类设备','公共场景'),(0,0,'3409876303','CapsuleCoffeeMachine','胶囊咖啡机','公共场景'),(0,0,'3423519571','DishWasher','洗碗机','公共场景'),(0,0,'3430619575','Platinum_Temperature','铂电阻温度传感器','公共场景'),(0,0,'3455630450','ActivityDetectionEquipment','活动检测设备','公共场景'),(0,0,'3456209001','VideoDoorbell','可视门铃','公共场景'),(0,0,'3466513117','ElevatorController','梯控','公共场景'),(0,0,'3478444863','Tracker','定位终端','公共场景'),(0,0,'3510095800','GeomagneticSensor','地磁检测器','公共场景'),(0,0,'3523878145','AcoustoOpticalarm','声光报警设备','公共场景'),(0,0,'3532163138','other','其他设备','公共场景'),(0,0,'3543355083','FaceRecognizeDevice','人脸识别机','公共场景'),(0,0,'354763736','BluetoothAccess','蓝牙门禁','公共场景'),(0,0,'3563261743','Metering_socket','带计量功能插座','公共场景'),(0,0,'3570226403','SmartDoor','智能门锁','公共场景'),(0,0,'3575903851','Coffee machine','咖啡机','公共场景'),(0,0,'3602800105','Others','其它','公共场景'),(0,0,'3609167817','CircuitBreaker','断路器','公共场景'),(0,0,'3611524336','PharmaceuticalManufacturing','医药制造业','公共场景'),(0,0,'3616017988','UnmannedAerialVehicle','无人机','公共场景'),(0,0,'3630544362','VisionAccessNode','摄像头边缘节点 ','公共场景'),(0,0,'3636026717','KitchenVentilator','油烟机','公共场景'),(0,0,'3654045198','NVR','网络硬盘录像机','公共场景'),(0,0,'3673574952','ElevatorAccelerationSensor','电梯加速度探测传感器','公共场景'),(0,0,'3688196829','NoodleMaker','面条机','公共场景'),(0,0,'368929831','GrainMill','谷物碾磨机','公共场景'),(0,0,'3691711553','CardAccess','刷卡门禁','公共场景'),(0,0,'3692411809','WaterMonitoring','水质检测终端','公共场景'),(0,0,'3700422185','GovernmentLed','路政设备','公共场景'),(0,0,'3711581302','water_logging','水浸传感器','公共场景'),(0,0,'3723136497','ParkChannel','社区车行停车通道','公共场景'),(0,0,'3730754568','ParkingDetector','车位检测器','公共场景'),(0,0,'3740665422','TitrantPump','滴定泵','公共场景'),(0,0,'3750530984','Counter','无人货柜','公共场景'),(0,0,'378472064','EnvSensor','九合一环境传感器','公共场景'),(0,0,'3788490072','GasDetector','燃气报警器','公共场景'),(0,0,'380478771','LocalControlCenter','中控屏','公共场景'),(0,0,'3807345907','linkbusiness','商业共享','公共场景'),(0,0,'380821140','PressureCooker','电压力锅','公共场景'),(0,0,'3815083389','Curtain','窗帘','公共场景'),(0,0,'3821752845','Networking','网络设备','公共场景'),(0,0,'383968405','ElectricWaterHeater','电热水器','公共场景'),(0,0,'3847094010','GroundSourceHeatPump','地源热泵','公共场景'),(0,0,'385000370','PigDataReader','猪参数采集器','公共场景'),(0,0,'3863022173','CurrentTemperature','室内温度传感器','公共场景'),(0,0,'3872147485','AdvertTerminal','广告屏','公共场景'),(0,0,'3886062835','Doorbell','门铃','公共场景'),(0,0,'38879518','Register','寄存器','公共场景'),(0,0,'3903642159','FireDoor','防火门','公共场景'),(0,0,'3911941892','PlasticProductsIndustry','塑料制品业','公共场景'),(0,0,'3931528492','SmartTemplate','智能模板','公共场景'),(0,0,'3972158297','SmartHives','智能蜂箱','公共场景'),(0,0,'3975114335','MajorAppliance','大家电','公共场景'),(0,0,'399770299','OutdoorStation','门口机','公共场景'),(0,0,'4009569597','ShowerRoom','淋浴房','公共场景'),(0,0,'4032521747','Fan','风扇','公共场景'),(0,0,'4032618608','Currentdetectingsensor','单向电流检测传感器','公共场景'),(0,0,'4035302770','MAXHUB','会议平板','公共场景'),(0,0,'4037241946','Car_Detector_Cam','车牌抓拍','公共场景'),(0,0,'4056354155','AgriculturalMonitor','农业监控设备','公共场景'),(0,0,'408778123','LawnMower','割草机','公共场景'),(0,0,'4092121371','HotAirBlower','热风机','公共场景'),(0,0,'4099130029','Airfryer','空气炸锅','公共场景'),(0,0,'4117235806','IntelligentBroadcast','智能广播','公共场景'),(0,0,'4120117696','ElevatorStatusSensor','电梯门体状态探测传感器','公共场景'),(0,0,'4121308061','LiftTable','升降桌','公共场景'),(0,0,'414051881','ParkLed','余位显示屏','公共场景'),(0,0,'4143936209','SmartIndustry','智能工业','公共场景'),(0,0,'4148949366','ElectricSafetyDetector','用电安全探测器','公共场景'),(0,0,'4150360804','CuttingMachine','裁床','公共场景'),(0,0,'4154797910','ServoDriver','伺服驱动器','公共场景'),(0,0,'4156108895','SignalCollector','游乐设备信号采集器','公共场景'),(0,0,'4163969646','ElectricBlanket','电热毯','公共场景'),(0,0,'4170989501','SmokeAlarm','烟雾报警器','公共场景'),(0,0,'4171244519','KitchenAppliance','厨房电器','公共场景'),(0,0,'4174419031','Soilsensor','土壤传感器','公共场景'),(0,0,'4192616482','FeatureCamera','特征摄像头','公共场景'),(0,0,'4193656155','TowelRack','毛巾架','公共场景'),(0,0,'4223452539','Charging pile','充电桩','公共场景'),(0,0,'4239647640','HomeSecurity','家居安防','公共场景'),(0,0,'4249352193','ElectricVehicleChargingStation','电动汽车充电站','公共场景'),(0,0,'4258646663','AutoDoor','自动门','公共场景'),(0,0,'4264357004','Dimming_panel','家居调光面板','公共场景'),(0,0,'428434065','MechanicalControlValve','机械控制阀','公共场景'),(0,0,'4288453094','EpdTable','电子标签','公共场景'),(0,0,'431781711','Containers','售货柜','公共场景'),(0,0,'441482838','ThreePhaseMeter','三相电表','公共场景'),(0,0,'450164982','SmartDustbin','智能垃圾桶','公共场景'),(0,0,'460764509','PowerSwitch2','入墙开关2','公共场景'),(0,0,'464194064','ActiveInfraredIntrusionDetectors','红外对射探测器','公共场景'),(0,0,'484760001','BroadcastController','广播主机','公共场景'),(0,0,'491363003','LinkEdge','边缘计算','公共场景'),(0,0,'505311232','EFence','电子围栏','公共场景'),(0,0,'505696314','ManholeCover','井盖','公共场景'),(0,0,'505995574','ElectricKettle','电水壶','公共场景'),(0,0,'511248486','ExhaustWindow','电动排烟窗','公共场景'),(0,0,'536795275','CirculatingFan','环流风机','公共场景'),(0,0,'542197753','PreciseTimeSpaceCamera','精准时空摄像头','公共场景'),(0,0,'555603583','electricmeter','电力仪表','公共场景'),(0,0,'5637227','EnvironmentMonitoring','环境监测','公共场景'),(0,0,'575033113','emergency_button','紧急按钮','公共场景'),(0,0,'575508799','ImageCaptureDevice','图像采集设备','公共场景'),(0,0,'577607736','PublicService','公共服务','公共场景'),(0,0,'583196710','HIKVISIONEdgeServer','海康边缘服务器','公共场景'),(0,0,'591304141','ChargingPile','非机动车充电桩','公共场景'),(0,0,'591827852','WetCurtain','湿帘','公共场景'),(0,0,'603109392','PHSensor','酸碱度监测','公共场景'),(0,0,'610658794','ElevatorPositionSensor','电梯平层位置探测传感器','公共场景'),(0,0,'626394945','BrushFace','扫脸娃娃机','公共场景'),(0,0,'656772030','ZigbeeTemplate','Zigbee功能模板','公共场景'),(0,0,'668445136','campus','智能园区','公共场景'),(0,0,'699486212','Television','电视机','公共场景'),(0,0,'719891342','Massage chair','按摩椅','公共场景'),(0,0,'727824867','Curtain_motor','窗帘电机','公共场景'),(0,0,'72835480','Washer','洗衣机','公共场景'),(0,0,'735704950','IntelligentMassageChair','智能按摩椅','公共场景'),(0,0,'754215611','TempHumiUnit','温湿度采集单元','公共场景'),(0,0,'764898325','SmartBoxingTarget','智能拳靶','公共场景'),(0,0,'782421510','GasLeakAlarm','燃气泄漏报警器','公共场景'),(0,0,'79120092','ParkingBarrier','停车道闸','公共场景'),(0,0,'791330942','EnvironmentMonitor','环境监测设备','公共场景'),(0,0,'798410038','liquidometer','液位计','公共场景'),(0,0,'811894544','Humidifier','加湿器','公共场景'),(0,0,'856054117','PricingScale','计价秤','公共场景'),(0,0,'860810962','ElectricityMeter','电表','公共场景'),(0,0,'867304276','ToxicGas','有害气体检测器','公共场景'),(0,0,'87398628','SpeechHelper','语音助手','公共场景'),(0,0,'880335157','ActiveVehMaintenance','车辆主动维护','公共场景'),(0,0,'888607087','QuickAccessDoor','速通门','公共场景'),(0,0,'889587514','PetFeeder','宠物喂食机','公共场景'),(0,0,'890626572','AirConditioner','空调','公共场景'),(0,0,'904111727','SmartSprinklerTerminal','喷灌智能终端','公共场景'),(0,0,'924385866','SmartElevator','智能电梯','公共场景'),(0,0,'936586300','CoSee','大屏投放终端','公共场景'),(0,0,'943363072','Camera','摄像头','公共场景'),(0,0,'943962405','GuideScreen','导购屏','公共场景'),(0,0,'954009651','SolubleSensor','可溶性盐传感器','公共场景'),(0,0,'99843046','ChemicalFiberManufacturing','化学纤维制造业','公共场景'); +/*!40000 ALTER TABLE `category_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `data_resource` +-- + +DROP TABLE IF EXISTS `data_resource`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `data_resource` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `type` varchar(50) DEFAULT NULL COMMENT '类型', + `health` tinyint(1) DEFAULT NULL COMMENT '验证', + `option` text COMMENT '资源内容', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `data_resource` +-- + +LOCK TABLES `data_resource` WRITE; +/*!40000 ALTER TABLE `data_resource` DISABLE KEYS */; +/*!40000 ALTER TABLE `data_resource` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `device` +-- + +DROP TABLE IF EXISTS `device`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `device` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `cloud_device_id` varchar(255) DEFAULT NULL COMMENT '云设备ID', + `cloud_product_id` varchar(255) DEFAULT NULL COMMENT '云产品ID', + `cloud_instance_id` varchar(255) DEFAULT NULL COMMENT '云实例ID', + `drive_instance_id` varchar(255) DEFAULT NULL COMMENT '驱动实例ID', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `device_sn` varchar(255) DEFAULT NULL COMMENT '设备唯一编码', + `status` varchar(50) DEFAULT NULL COMMENT '设备状态', + `description` text COMMENT '描述', + `product_id` varchar(255) DEFAULT NULL COMMENT '产品ID', + `secret` varchar(255) DEFAULT NULL COMMENT '密钥', + `platform` varchar(50) DEFAULT NULL COMMENT '平台名称', + `install_location` varchar(255) DEFAULT NULL COMMENT '安装地址', + `last_sync_time` bigint DEFAULT NULL COMMENT '最后一次同步时间', + `last_online_time` bigint DEFAULT NULL COMMENT '最后一次在线时间', + PRIMARY KEY (`id`), + KEY `idx_device_cloud_instance_id` (`cloud_instance_id`), + KEY `idx_device_drive_instance_id` (`drive_instance_id`), + KEY `fk_device_product` (`product_id`), + CONSTRAINT `fk_device_product` FOREIGN KEY (`product_id`) REFERENCES `product` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `device` +-- + +LOCK TABLES `device` WRITE; +/*!40000 ALTER TABLE `device` DISABLE KEYS */; +/*!40000 ALTER TABLE `device` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `device_library` +-- + +DROP TABLE IF EXISTS `device_library`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `device_library` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `description` text COMMENT '描述', + `protocol` varchar(255) DEFAULT NULL COMMENT '驱动协议', + `version` varchar(255) DEFAULT NULL COMMENT '当前安装版本', + `container_name` varchar(255) DEFAULT NULL COMMENT '容器名字', + `docker_config_id` varchar(255) DEFAULT NULL COMMENT '镜像仓库配置表id', + `docker_repo_name` varchar(255) DEFAULT NULL COMMENT '镜像名称', + `docker_image_id` varchar(255) DEFAULT NULL COMMENT '镜像ID', + `support_versions` text NOT NULL COMMENT '可用版本', + `is_internal` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否内置,云端内置驱动', + `language` varchar(255) DEFAULT NULL COMMENT '代码语言', + `manual` varchar(255) DEFAULT NULL COMMENT '驱动市场使用说明手册', + `icon` text COMMENT '图标', + `classify_id` bigint DEFAULT NULL COMMENT '分类', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `device_library` +-- + +LOCK TABLES `device_library` WRITE; +/*!40000 ALTER TABLE `device_library` DISABLE KEYS */; +INSERT INTO `device_library` VALUES (0,1719129179999,'3299803748','MQTT协议驱动','MQTT协议驱动的描述','MQTT','1.0','mqtt-official-driver','','winc-driver/mqtt-driver','','',1,'','https://doc.hummingbird.winc-link.com/guide/use-cases/access/mqtt-protocol.html','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAABkCAIAAABM5OhcAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAADYVJREFUeJztnHlwFFUawCNCFNRVjKAuimcttbqH54or3u5a60HtlmJZq1WCYWYyJpOZXCQUISTmghxAIAIxhyRcuVYIxFAEJAkhh5AAOTD3fUwm92VCjkn2i6MzPe919xzhoVLfr17lj/Trr1+//s3r773uGZtpBGGAzS/dAOT6BMVCmIBiIUxAsRAmoFgIE1AshAkoFsIEFAthAoqFMAHFQpiAYiFMQLEQJqBYCBNQLIQJKBbCBBQLYQKKhTABxUKYgGIhTECxECagWAgTUCyECSgWwgQUC2ECioUwAcVCmIBiIUxAsRAmoFgIE1AshAkoFsIEFAthAoqFMAHFQphwdcQ6d/hc0BtBAS8HCJVt7227nH15/Mo47+5tVW0RH0bQe4W+Hdpa3krXHx0c1dRrjEqDZmx0zOr2D/cPkwHrNJMTkyZ31Gq1ve29VflV2QnZqf6pSRuTDgcfzj2YW3uudqBzYGpqSmTfzvrOjpqOWZaJ8QldtO6W7tlH61P3Wd2HBFdBLLiiXsu8pDZS8SKbK/N5wufUnlODXYN0kJ7Wnm3vbJPOJff6cvWXdOX8pHz5fLlRWSD3edKnr92afmksbXR/0J0IKLlZ0tncKbTLlHaqubw5dVOq7zO+ioWKtTZrJTYSboH/KBcrg14MygjN6GzsnOYTbN0f1slsZbMp8lvlYIMuWvAbwbOMBiVqTZQVHcjLVRBrZHDEdakr9KZJt6BAj/s95wdm0HFgPIt3iifi7Fi1g66ZdyiPjgw7ZoRnWNp4GFTCV4bT0T61+bSziV+sga6BRM/Ez27/zJzzhVapfq9KD02/MnKFiOPxsIc5EcQ+q7YyvViBrwbOMhqUqE9+TWJpJ7U152pKMkryDuSlbUmL/DDS41EPGEJEVINNfi/4tVW2EaHgMhcmF0rnWSMWFI/7PXpaeixqfF1xHVwec8Wami5OL3ayc7Limnk84gGDHDcYimUx42PjkKNcSL8Q7xi/ftl6+ganK6q7VceCjumzBD0FyQWKOxVWiAW+HnQ5aH474Y7GO1zxigWfn4ytGfKb5VZfNsVdivNHzusDolizYrBnMCchJ2B5ANwE6TOBf8bJ40b6R4i9MiMzISezVKyZi2enGB0eNbNtVQVV9jb2Zop1Zu8Zoco6p+FcoALvaeqL/DZ5xdkKXUD3h92JzExXhOLz1LSVqqvVumiBrwTy1uENKFRzzyd7LLu6wly75YaitCL/5f6857nl9S0wqTGqPTWdHpQOlS0VC0paQJqZTYp4L0IoCCFWU1mTw3wH3ivkvNgZGnl8x/GKgorG8sbS7NK0wLSwt8Mcb3Pkjez+kPtQz9BMh3xTVPB1AVHyU/NdlrjQH7+shCy6cuHhQkhwdS0syyqjK0AJf5cckqHNx8KP8Vau/q7auotLc03XsSbGJs4eOKu4Q0F3N0yR+jX93Mpw64n4ICJiVQQdR1wspzucelt7TTamMr9SMlcwC+SKNTYytvGvG3mH23jneKEpurpGveWVLbwfpIj/RPDOE3Vn7bnMk26MzkUr2KfcRze7/kK9ddHM52rMCodGfP7m47XMy//v/tBliV6JBUkFPW2CSXRHfUfkqki6xz0f8+yo6+DWHB0cTQ1IpSOIiwUlxTtFvM1w/Tb/Y7NIBK5YeQfz6NbC5cnYbmISCnOR2LWxdHDZTbLa87VCDUOxfgJGY7elbnRf+D/vD4YNdvOsWgFJPkkOtuTNxX+FPzEAXPmBnKVPmyEWHL2ruUukzdUF1dy5p4hYkxOT6x5dR1eIlcSa0zmwu8/TPvTuu/67i7c+imWAVyzpz7dz1yWucL+gl8Xh05x/IF9+KznJCloRZPKIPGLdSB56v2q/SITg14JNqqkTq+zbMjofd7Zz7mk1d12jOr+anhfbz7Hvbee5X6NYBkTE0heX+1yyYrImx8mHJOWnyx0WGI1b4GKSd5L4wxBarK3vbpXNN1qOcrzdsVfNn2mVniwlXPn8uc+9n/HmFSvJM4k+HbiVm98/M4PWkzyDVs7eHLoyimUAcizvp7ydFjpBi0Um27Bp8z83Exk6UHS06LMFRqvYkjmSS8cviRyRFmvnezv3KvcSmdCe1fyTZ5iEEg0rTCl0tDOaxOnFCnkzhDgWHAWyLou6KEGZQHdIgiKBroliGYDRZah3CLL1lrKW4vTi1I2pqsUqIcPcHnCrLiTntCciThBLRN6Pe/d1Cj74o8XavnL7QOeAy71GE3WY8GvqNcS+F49eXHuDUdt8l/vCoEIMnHqxPB4hlzFh03DfsEVdlJ+cT6f/4W+F0zVRLDG0Wu3l7MtxDnHSm3jcUt2tKj5SzK0/MTaxX7mfGBX2Ou4Vis8rFvw/eUMyOSoojUaFifEJmFIY1ZkrLf+2HDYJiUWnR/IFcks7pLmimV5c9Vvux9N1KJZJoI8qcyvD/xUum0c+jFPaKevO13ErD3UPwWBGXD+hBFlILHWN2u1+42xvvhT+qd+xIqeCaAxcXd3LPLxiwWC8xmYN2fh7lZZ2RXdrNwQk4nj/xZu301Ass4CE/Uz8Gfpz73yPs7pWza0JibzsJqOrPpMk8SXxQmIB34R8IzJoBa4weqAGo0jJyRLdJqERixZCsUhhaSd0tXTRcTY+sZGuiWIZgASlLLOsqrAKEnOh2VxjaeP6x9YTZxjwfACxyhX1cRS3AnjWcKmBjiYi1ujwqLOdM3cTGNNRP7PuWnSkiEh0YC6pjykklv5xuOHCzFkLl9+iLqosrKSTzuBXg+maKJaBkcER94fcYXrv/qB7yOshaYFp7VXtU1rSsLqiug1/3mB0kjdKD7ge4Nap/a7W8Q6j2VmyVzJ9RBGxgKOBRyU3GAkUI4uB/4e9GUb0b+mpUv1eQmJtenYTcSwY51q+b7GoizK2Z9DJ+xcffEHXRLEM0OtYDvMdYmWx/R3kykJbdZvDLcarVvMk3BwIdExwNpqZ73jfrIfQXLFGh0aJtXLlXUpwiJgMhr0Vxh1fhcTa/dFu4lhQvvb72qIu2rFqBx3kSNARuiaKZUBogdRpoVNeQh5xc7yUcQmycm61wJcDYVaor9Be0c69a5j5dgNXLCD3YC5x61EsNLqjyefLGy81cncREisrOos+tU1PbeK2WZy+jj4wm766+vdnuKBYBkRW3h1sHU7uOsnNSLRabYx9DLeObK6sIpvTxVPTkNXOUiyhJ3SG4erNMCJPEhKrq6lLYkvexaDNZafKzOyfjHCe+6DL/S7jYzxfLUGxDIg/0pHZyk5GnuTWV1erVYtU3DrRq6O5FTJ3ZeqvhHViAWcPnRV6aQ56lnhLeFpYLCBGGkMHcb3PVej5Ope6i3X0Yh407Hj4cd76KJYBk88KZTfLiJWFY5uPGX18l7jMfJXlZ7pbuh1/5zhLseAKbXhiA2979nzE86hHRKy2yjb5LTxvJENeP6AZEOkZmAur7lHRO7re68r7VaVpFIuLOQ+hA14IuDJseAGmt71Xasv5BN8gORF5Qr8VOtf3ad9ZigWUnCjRvd9sNFrMkzRcaKAri4gFaeIht0O845/rEtejm4+2VbRxX98YHR5tuNgAE16YKfP0xo3S07GnhToTxTJgjlhwVYoPGz3G8X/R6NEKMfeOWRsze7HGr4z7PutL1Nz98W7esxARSxfKf4W/0KnB+BryRkjUR1FfOXy1+/3dgS8FyhbwfPOH90wJUCwD5ogl1a1GciaIOftyuGOA24Nu3Jj6hHc2YgGVZyu5r9MoFik0DeRjaR3iYgFw81r/J3KN19IS8k6I0NfBdaBYBswUS7lYyV1X7KjpgDm/fqu9jf3IkOG7OhcyLuie2s5SLKAityJxXeI+530pG1KaypqEqpkUa/rHO3jYO2Emz1RoYItZE/PDwA/inYliGTBTLOjZnDjDq22gkftSd+7ZtlYZfqahrqhO93Bt9mKZiTliTf/4ewKJnoncBNHMAid4OlowtdKDYhmYUeQBd5M9C2Id8jyk3wsyYu/HvblbIdfWb237vk0yZ+ZWuPODnfQRf0GxdPR39MfJ4pzudDLzhwV+KvOkBSkF4s1AsQyAItH20Wts1sD5i5ddHxp9g8D3OV/u1oJkQ6dr6jVyOznEzI7Npo9YnlMevjKcW1L8THwtxyRb/72VGzB0ZajQm8164M547n/n4p3ivf7oBU1dbbNa9xdu4v4v+Xs8yvNFZ/mt8tJvS0ViTmmnoqRRxNlBY/TfH7SUzKhMMtq7oe017dZFM5+r89oMfM562ns6mzvFy0C30apPb0cvdyv3CzmT45OaRk2f5qr9qg5roAeG+4cHugYgi9I9gFfXqF3vc6XdglyTeBftugR/eI0hNYU1Trfx/IKIapFKU8c/Ob1uQLHYcvH4RfoVPyjrHllH/qrA9QWKxZwz+87w/lKS73LfoT4rU/JfPyjWteBU9CmPpR66X6ThFr+X/EyubP1GQbGuETCtayppqsitKM8q5xaRH7n4TYNiIUxAsRAmoFgIE1AshAkoFsIEFAthAoqFMAHFQpiAYiFMQLEQJqBYCBNQLIQJKBbCBBQLYQKKhTABxUKYgGIhTECxECagWAgTUCyECSgWwgQUC2ECioUwAcVCmIBiIUxAsRAmoFgIE1AshAn/B2d72Ub2/hw1AAAAAElFTkSuQmCC',9001),(0,1719129180115,'3355124627','HTTP协议驱动','HTTP协议驱动的描述','HTTP','1.0','http-official-driver','','winc-driver/http-driver','','',1,'','https://doc.hummingbird.winc-link.com/guide/use-cases/access/http-protocol.html','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAABkCAYAAADDhn8LAAAAAXNSR0IArs4c6QAAGQpJREFUeF7tXXmUFEWe/jLr6Ko+6G5uujm6uQ8BQdaD2R2dWWV0WNABRUdccRx1j/f2vV3c8RhXURgZPPfNH/t2ZpUZL3AHBYFB1FUUXQeVG7mhG7qh6W6g7+6q6roy90VmZFVkVtbRVd3V6VbEez7s7siMiC/ii98ZkYIsyzJ44QhwBEwREDhB+MrgCMRHgBOErw6OQAIEOEH48uAIcILwNcARSA8BLkHSw40/lSMIcILkyETzYaaHACdIerjxp3IEAU6QHJloPsz0EOAESQ83/lSOIMAJkiMTzYeZHgKcIOnhxp/KEQQ4QXJkovkw00OAEyQ93PhTOYIAJ0iOTDQfZnoIcIKkhxt/KkcQ4ATJkYnmw0wPAU6Q9HDjT+UIApwgOTLRfJjpIcAJkh5u/KkcQYATJEcmmg8zPQQ4QdLDjT+VIwhwguTIRPNhpocAJ0h6uPGncgQB6xCE3M4lqKgz/4vL3hAe/KAKBy97lN/zYl0EBEFAzDVrggwBImYOcuOVW8ZiaEEeM8cSAFE3IHburTBS6xDEBI2AJOPfPq/BCwcuAoKRHgRYAjAvlkeAbHxhG5bPGoTV11cizxYlRXxCxJKnP8ZpWYIQ4F471IgHP61B2Ex2CBIEWeRSpT9WDdumIACml3MyGxghiAzYIOCVH1Zg2cxhEDV1gb7LapJDG6IFCCJBZuAiIpqI6n0NnVi89TRqvX6qd8kAmQxerIeAIAGyCAg2QA7H9o8ShPyhojAP78wfjzllAyL11DlXNQTdWohq3f02ZgsQRD92AlajJ4il75/CZ/Wdyj7DKlfk5/y2dnhaOvsNNN6wHgHF9gCxNQTkjxgMj8udUP39QVkR1s2fiBGFdkqs6PtkOQyBEM0ixRIE0cQrkSWBEPDkl7V4cV8jIBKpoe5OClFkGcXBALqPn4U/HI4j2i2CbC51g6hYIlG1AHeBG4EJYxG22VS70ah+EWkBGx6eNQKr/moUXHajVqDXKPobRksQhAVh/bEmLP2gSgWcGOGa+AbgkCTYTtSi2+fpb9x4+wwCESlPyVA8uBgdFaOp5Ccql0EiEFVZAtbdPB53Tx2sw1JTsa0CsKUIsq+hCws3H0d9d4i6/6iXShBgh4z8c/XouNSi/5tVkMz1fjC6sCgIcI0pg3fQIAggEsG8lLns2LxwEv6inNojFrTUs0YQxT9OPR5EZzWWZm8QS7aexKeN7apeqhVZUER1YWs7vGfrIJGfuXvXsnTUeGK32eCcOhpeZ4Ghr3r3/PfLi7FxwQQMcjtUvxZLEgsQJmsEiax34pnQthTKExLveGJnDV4k8Q4ijRUyada5CEe3B+ETNZCI3RHXrWjZNZOzHXO6XZCmjEVIYDY8RmVWgJEEPDx7GFZfXwGnolYbSNLP6PUPQSKDliDJItYduYQHdlQjYJTFAmAPhWE/W4fujg5AkR68WA0BnQ1i0A4KB5fAO3ok4UHcoo+PkEWgShnW5dtfY84KQXSS0iA2v2304LatJ3HWQ+MdDBIEuPyLTeg8Xx+NgRj9vv2FHG83ioCZLz6iJQhwVJQjPKgUkmLEGzMg1J8rCxzYuGASZo0oshSyWSFIvBGTPeLGPx5V4h1sIUYesVkK2jvQfbYOobCWdsBTSyy1erTOmKm9zO9EuwjbpHEIutQ8LJ2arJFLEHDD8ALsuOsKJWwcDR7qc7WyPf4+J4jebcfm10hYvasOT3xVr8Y7FLuDGCAqCVz+bghV5+HrjpUs2QaJt5c5AkUlA+AdU4aw3U6TUmn0nXHekFaevXYkfjl3dOYN9tIb+pwg8fq550IXrl7/LWAnAaWQznPlgIyCsxfQ1tKmimSzgFMvAcBfkxkCRNpLEolXqTlZalQ9tpC8OceoYQgNHaSYkrKp1CFJjQJ23TkV142MpqJk1sPMns4eQajtQf5p9gQw+40jOG8iHWyQ4W68DE9dE2Ti8SBF22W4Byuz2c7G01RlUv4xzJdNFGGvHAl/aXH8LAgBGOG04dtlV2JwgTMbPU7YRi8TxDxFWVGziF6peDIk3PLOcXxU16HvGE1XcHV0IXS6FiEiOcwS3xINh8ZMYqooEohxo7CTGOd9rN0Z6xeITbU3WxDpzq76LroP6zx38VL8jbgTLZ4J0CnYKi+NbDZa6o6y88dzfGgbkzYQw88xj5kY6yr0ZC7Vzc7pcsI+sQJep1OfZEf+yBBqXnkRPrrjisgZIbUL2U+B72WCxFsS0YGt/N9arNjdoNodbBEAly8AqaoWQb+fJrHFj8KmtPh0q5wujsgkMwQ0zRJOUbUzLIrYRcOkg5suRG3Rk3+1DIJ4rKWLWaLYZerRS0EiZ9qETgOgw8ofOADBylEIKkEvop4xsQ9tWYSBFVeX4+nvR+2R/ogbZokgKjKf1bTj5s3HYuMdJFsnLMNdex6e1o60z3i4RQHTRg2EKOo9HxdautDQ6ockJveClZfmo7xEH/0lXN53rhlBomtLAq4aOxA2NvjFbMFEWpL21ZN1CXY8EhSjC53UrWnsRMXwIkWHV7VKdaWYZR2Y0ceYw0SEhRSSsL+2FTLCcNhsmDVmkLoP09zC+KIDCMky/P4gmjr9uNThUxwomgagtZ8JeQrKhsA3fJghPqLflJwC8MGtU/DDypLokLPMkl4mSPwFQVJJ5qw7jJoufzQBkXquRFmC61ITvHWNKQmG2EoEWAkTiwux9/nbUei2R6qQBfb0+t14ZushIPpr+nf1uQgjJQFP3XYlnr7jKnoSgSTaicoiLX/wDdT7/EB3GE2/vw8Di1xMIr7J0VGGKNriNWp6WieJnPz56o/x6mPzwBy2S4gF+y7tqKvx/S2dfgx+4HXAKWJ0gRO1v1vGHInVexSNR19JSo8/FEZLuxdnLnXi82P1+PLEReypaUZbd1C1D1NlSKRjjIooAvnjK+ErcisBwXhldL4De+6ZHjmqm+YCSfuxPiOISnR1EsgCmL/hGD68QO0OzeNBu13Y0QnfGRLvSC+VRNXZoRLkhcUocmvGndq+QpAtBwHya2M0PuIAULfWp26djWeWzDEAKlGCBBWCNP/hZxhYRH36aUOvPqjgJMm4f83HeMWMINp2n+LOyUoShSD3vwE5DxGCpNNd7Z0kHHXqQiv+4+MjWLuzCt0SUQmTFEGAIJPTImphOeXKc0KcMAbePCOWeltrXlkxPrhziu4UYrayfnuZIEawVJVmzdf1eHzXOdMTgXmBIOzV5+Dx+pJBbf53BvGJJUaCkEckPL1+rypBHIbjoYohTGwR+q8kY8XCmVhx5xxVtWEWZfmDr6HeFwQCEnatWogCN5EgdJFT9yb5qcAhYtwI4qXRH4e71O7DxQ5/7KUGioSSsWLtl3jqvuti1EOtjeHFLgwtdivvVXwR9A/Vlzrg6Q5HEzMESQ2ywYYunx/fe3KLToJEO632r7HVg0td3RE3u6Ii2iSUuPIwpKTQ5LwGEAgFsXbHcSxftxd+yfRAdOK5UjqvDsRZWoJAZblhbTAp8lTV/PXc0Xjs2pHprZEMnup1ghiTMfc2dGLu+iMIxUhRdZdwV5+Dr63DEF01eJ1SHGCEIC5n5IQbWQQr3t6NlVuIihXHC6RJEapixUoQQCOIwkfN729kAYDZFYOw79nFMT1+7t29eGzTPhoMJQuAGAkCdVaQIKlGVMOjylFWCc8tugqPLCaqn7789ao/4dMTF6MZzrR+pBa1aTQVS1mazKm95zftx6Mb98YiHBbgdtpwx5wxWLFkDsYOV0mvyQKigj319h6s2X4wYZ4Vs4tE55jYiMxBKufIEQgMHRj/SDUBPSzgq7um4dpymoqSokRNcenErdbrBFFaouu7tZvEOw6jtsuvDyDRjM6Spha01VxQgWFcgdHJ7RlRNIIUup26KwFWrv8aK/50mJ5QpHuvmUGQAkGifWPPX0eJN2vsMOxfuTAKOJ3I5zbuw2MbDxi8d+zFBvR9rA6iGfKSgDWLrsSjt8+OuSbnplVb8cmJRgVDVdVU32M0D0YWOnH+t8tiFsLL7x3Ew+/upovTfAOZMbwEO578GwwmEowp35xqwtxn3qOBP8PZaGNLrCprcGCS1HixshzB4gGxAURmIKNcDuy/d0YkPpINjvQNQSg4t2w4qtgdZjEFtz+I4PEq1e5gPDrKoym4H80ob65iAU+99Q1WbT4AgVjAzA6r2UnK7ShEo5IEPL54JlbfebXB/x6VIMl2pKsqh2Dvqttiqik79bv7Y93byV5I/h4hiNE2AlQJ0pD0QgtWgrBNvrTpAP514x51A9M2qQj+KmFK8uzY8E834qaZo3S4nG5sx5zH30VHiBx/pi7bBNH0REMlqfHCxAr4lVQUJdROq0s6L/CPygfggyXTUkGtV+r0EkFivTjP7TqPx766EF0QTJCJuO9w+DQCwYAqaslKNQal0hieKUFkIEz+C4chKZF5MunqxBtdqqRJh2gz9SRFbJAk/co2QW781TbsOM5kO8fpXzyC/PvGA1i+aY85wdSzapg0ZAB2Pj0fw4oLdW/fU30Zc5/crFefM5hHd8kA+MaZ5WExko1sFteV4dEs5Wv1GUFuevsIPrnoUSOoBtCKun3wHDtD05/TYEKcR+JJkHRaMIpvqxIkUwnywqbdeGTjQSi7Ao3LkPwqt03E6IGFuLpyMH6xcCam0RiKhmUoLGP1xr14essRyCSXrheK3eGAc+ZkeMm7NBvFhHA3Di/Cxz+9ohdaTP6KzAkSRxGsbvHi2reOoEkOqcYoEROK6FR3g8L6y+hquBwRo2ZdTdXNrj1rRhDilQmFiU9f9d0TdUrV4gQ1+8FwY2Oe3QaHYszri1UJkqkEqWvy4mxzuy4g6bABJe48lJUWMC7zKB6EHO99XY371+5CVyDYK0egCSnzKsrgG0ScAWZxEXXdDHbY8dXd0zF+IPEi9n3qSZ8QRPNRrz10EX+3swZhJttTg5kchnKeqILPk6Z714RR8STIb98/jN98dCy+/s/YJffcMBlP3HZlzhAk+R6qr1HX3IHf7ziJl7YfQ0eIqsjqjtPTV+nqFw4ZCO+oMkjK9UFm+cDEVBXwuxtG44GZZTE2YkaNJ3g4c4Ik6dnPtp/Ga8ebSS5J9JIwOv68UAg4Xg0/2YVMvVhJPCOGtuMRZPWGvXhi0wE1kp5ILMkylv94Bl5aeu13hiCZqljaQM0UAbLRdXqDqGv1YO+pBmw7VIddVZdQ30akce+oVaT9/KIChCpGIUASGONdyCEJWDZ5MP4wf7zh0tK+oob63j4hCAu2JyDhmre+xdF2c0mR39wOf416W0kkvT3NMccz0le/wxBE924itmlMgvxeIcgVeGnp3O8MQTJVsV7beRKvfVENUUmUlCBBhFO0ISSF0ekPo80XREObBx4/yXLQJ0mqe028DOPUJtFps0EePwbBwnzDVU9amoHq0Zo8wIGv75mB4rxovtB3ws0bDflH9UFdGoAMnG3xYtob38Kn2CH0JBnFzyELKKyrR+ulZiqmyd/TE9fxIumrN+zHExv3q5H0OEWZbFnGv9wyHS/fc01MvMGqNkimEmTFhr1YufmgSXY1PQBlKsTZ+A0FNJJL0rPYVdGYcnQOLtXPikHKuwQBR+6dgXEDCYmyW/pEgpgN4e1jl3D3h2f0RjH1ULiCIYhnzsHbpfgv6AnCnpNERxBme1FVLJJqYnIVJtvZGBUreha+7IHX0aBcaJe4XFU5DHtXMYFCWj2jOEhYxJrFM/Ho7SQOojdMb1i5DZ+fTOTmVRezLpLOZMGs3LAPKzbTAGZkYWYmFRIjRN8tCygaXgxPeRkkgUgFJtOaJUhYxFs/qsTS6UOTQd8nf88aQUjv791yGm+eaYoOROGASgRXlwdS9XkEgsQr0sNCo+KEIPufX4yCfCc99K/mU+lULF0arCbG6a4nCVg+n6hYRhuESVY06xrzzjkVQ7DnV0kChYZAXNLRSjasWTSDEkRfO6EEYZJCR9Fs3kh2DN1AdBIkgxhG3DFoY2Uj6eTgVL5bVa1IYFApDCmZfvx07BCsv3V8dD6Zhr4TKlbSyWUq+MMSZr1+CMfbu81vbW9pg+fM+TQ9IiIG59nxDz+YDJczehcsced+eqwen5y8mDyKLcu4fvxwzJtWpvRaS5Ui73j2/UPwkIhxkjKyJB//eP1Umu9EbudQU+a/ON2Ij47pry9SeJXshYpAFTFv0hB8f7LaL7WokuSVL0+htiX517eK7XY8On+G8iT7FaiPj1/AzlPkA0U9l9gpdN20ikhuXZxQie6CfPU+Ag1sLV2G/CwAU4tc2H/fTOVCuei5mL537bKdzqoEIQ2favLiuv8+ipYgAYbeZEKPYxLXb96FevgaWjM22CODZMW17uYUg4HOprckyBtSP9pDiZLqotLWXoQNPVBh4l1uYGRWvN2fPW5r5sHrabApDVZEmhCISS/CXVEOb+nAmDlWLoCgLt5Spx1/XjIFU4ZEo/fKkJnM6f9HEkTP+lcPNuLvP2O+HEUvZyCLzxYMwXHmHHyaPdKTCTFdAIxfPRUVIuGCMRinJPKciCQxZ+F7ZsCqQ2fJZDhrTnfahGLISDCTJM34Q+4BkVOcp8JBpegeM0J/Han2LO2rCBv+8/oyPDQ7++ntxmFkWYJEifLQ9pN45XirqdqT5+2GVH1OPZuedJdmzpYb0qjjzllEQjALNs5xPzVDVoZA3NDKgqTPpEK2eB2Id7Qwbn0TV5K28M0kn9l7tP4a/zWe9iPvi6Tzp7jqk1WjbToKCyGPHYmQg9odLIYaSyUBS6eU4s0fT0oY78iG9FCnO+azpMlG2wt/l4H2QAjXrTus2CO6IsoQZRFFly+j89zFnudr9XTXZuubTVgmwzUaqIZ3paXdpJnprDStezYqHXT9SKtTyUFyiCLECZUIFLpVL76Z9JVlTBqQh2/+dqYu3sG+PVvEiAi1fiGI0rqE6pZuTH/zMHxkx2ILOUckSSg+14jWJvI9kARF84Rp6QmJJEFk1MyOzC6aBDt7dN0Y1A6WVOy1Q+xOrSzO6K2RyZeTSY2IFGMuNmDti55Iq4gEjV7Hk1afUnlIOZsvIG/0SPiGlCT0SpB4x9FlMzG2VD05qctzN2krG8du+0eCMIP9ze4G/PMXNfqPENHVGBMfiSzw+Pk6qcwZr9OXCOhtJrIRFgwohH9cReypUlZaSQJe/MtyPHzNKN2Jx77saSrv7neCtPtDeODDKrx7pp0JgkUPyeR5vZBO1yKouVhFQblSS5E5cZLaUhk4r9OLCCh2onkGhM1uhzx1HCTlojhaz9i0IGFJxSC8evM4FLkcvdixzF/V7wQhQzjb1o0Fm07haLvh24P0Rgx3cyu8ytFco7Ha+16WzCHlb1A0SgpD4cSx6CxKkCIiCJhU6MC2RdNoCru18LMEQQgk/1Pdhru2n0Kr8vVaBiRBgCjJcJ+phaeNf/rZWsuH9MZ8kyIEcY8cCt+woZC1I9UmTpASm4g/LpiMeZXF+qFl2xqPA6xFCCIhLIl4/pvz+OUuekw3YnSre1FeIAT5+FkEwuRaUustk5zvkUG6kxT27gljIGk3UJp53yQBq+eW45FrRpkec87Ek95b82ERgqjDaQuE8NCH1XjnNBMfYaLaAzq64Kk6p5wvTx4f6S2I+HsSIqC7W0yt6XA6IU6eAL+WPW3mOpYE3DGhFP918ziUOLV7ArSWsptOkmh8liGIJlFPNHnwky2ncYLcB6sUvb++uP4i2hsuK0KETU3gy7h/EDCuffKJg+KxI9FarH7fQzkvYvj+C/n9pAFubFk4AZOGGL+C2z/jiNeqZQjC3sH2UVUrfvL+qdj4CAC7LCHvdC08HV2RoLa1IM293qhJlyIEUULxiKHoKB+eMMDrgg3vLZyAm8cRu8Nw/py1PSxgh1iHIMwN+OQu35e/qccv/lwbjf4qrkTtLAG5xyf5Te25t1T7ecTEGFcuATRkBit+efo7WcYL36vA8mtG6O7a7eeex23eUgRhe9nWHcDPt9dgU22z+mvj97WtiijvlwEBvZdrUUUp1t4yDiUWi3dYW8XSRGn0wxVK4KmqJYAF751g7BE6DCu4NzgReoaAAEwqdGHboimWjHdYmyCqNadKCWgfn1HvriLxkSXbTqCdkMLo3u2jxLqezTyvHYOAyQamxDvmT8K8cfRjOBawL1KZOYuoWCYfoNE+YSMBW6uacazJF/PpgGwkq6UCIq+THIHpQ9xYMD7261/Jn+zfGhYhSGIQLObY6N8Z461nFQFLEcR4pNKIRIzE0NksWcWNN9YTBL4j6pTZkCxBkCh+1omg9mT+ed3UEIhscIo5GYagnJGxdrEEQawNEe9dLiPACZLLs8/HnhQBTpCkEPEKuYwAJ0guzz4fe1IEOEGSQsQr5DICnCC5PPt87EkR4ARJChGvkMsIcILk8uzzsSdFgBMkKUS8Qi4jwAmSy7PPx54UAU6QpBDxCrmMACdILs8+H3tSBDhBkkLEK+QyApwguTz7fOxJEeAESQoRr5DLCHCC5PLs87EnRYATJClEvEIuI8AJksuzz8eeFAFOkKQQ8Qq5jAAnSC7PPh97UgT+D1Hqano/gx28AAAAAElFTkSuQmCC',9001),(0,1719129180115,'3355124628','TCP协议驱动','TCP协议驱动的描述','TCP','1.0','tcp-official-driver','','winc-driver/tcp-driver','','',1,'','https://doc.hummingbird.winc-link.com/guide/use-cases/access/tcp-protocol.html','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAABkCAMAAAD0WI85AAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAWJQTFRF////6enpRkZGRUVFsLCwxcXFaWlp9fX1TU1NlpaWxsbGlJSUurq629vb2dnZ7OzsmJiYlZWVubm5TExMoaGhsrKy4+Pjx8fHdHR07+/v0dHRhoaGqqqqjIyMfHx8mpqa+/v7tra2bGxstLS0np6ekpKS3d3drKysnJycUVFRv7+/8vLy0tLSaGhovLy8h4eHwMDAgYGBcXFxp6enrq6u9vb2zMzMYGBgVFRU/Pz8paWl1dXVZGRkd3d34ODgvb29/v7+19fXoqKiV1dXzs7OeHh45OTk7e3t5ubmWlpa39/f8PDwioqKoKCghISEZWVlj4+PXFxcSUlJUFBQXV1dfn5+qKiofX195+fnSEhIyMjIt7e3YWFhycnJWVlZ+Pj4z8/PX19fdXV1w8PD8/Pzn5+fiIiI6urqpKSkkJCQf39/ysrK1NTUsbGxgICA4eHhb29vcnJyr6+venp6ZmZm2NjY/wjyAwAABH9JREFUeJztmXlbE0kQxivdgQRBkACKUY4lGEUQIguaiGjUNUJYL8QbBe8V3fX+/nZ111w9jYLMwOM+9fsjVHfXVNc7fUzPAMAwDMMwDMMwDMMwDMMwDMMwDMMwDPMbkNnrBDZBCCmzZLcIKVpjHrl8W1DYJ8Tu5LVthKKd7A4s2A77pRCdZHcpWxzYveS2A6bWTXZB2T1Wew4dpFcSXqG372Ay/R/qtzlMLcUjOFtUh61HsThAzYNDHZ3DPxHyh7LztkM7Jj+ijFLPiCmMmstkKQkhx4RNWdcfl0GNvnURH3kiFig8tbLKHot55NHlZMkEpPEZx7qJFIWciqQdE6Lqhq1ANCKTEtEexgo8Mroap50Yhyn8k4VKeL6lIOR0NGmHEDHtFvKn7RdymVHFyixWliBnAk+lK+SMp0CcOou31hci+6erwkw6WYsLUVPrnD1yYZ8xOWcczwPMqz8XoMdxS3bCvmiflMRFU6pf8usuo5W7ou2/Qtdf9RO3hUR24TI+BOdNVw0xQPKzkBxRIRMmhWsRl0AILGg7vN59ITJTUFSVtVgoHAkFLRc0l2i41T3C3bGJ9lJqQv6OJeoJuR6yb7iEmAG4qYxbaucLBSWP23T1WVN7wB6zZIUs69LsT4TMO4XUFks1uGPuw6gIHifksaLMu2iM69p8wkvEEiJjq9QSIu0RAX/XuqiuRAFiBuAWhilHhOCINNF1ECuHsaqyd0L0aUO0RdtJCD6A7qHdAnBfX/NANw+Zp8uK5ypzyrju6CdxIQ9dQvRiry9q+5FTCLbMor0A0GrWv3fmOeYJeSxoRqHfaopCdP/2WckkpQ5b05s/R7rhCbZk8KcO8JTWzVog5LYfSz1S1h33I3khzqkVYsrR3gbP1O9oH12+TK7PAyF6ROCF6cDVze4LqTna217ihS9xbSyDGSTcomSLJYQmrz9Z0xKy+WL3kP3W5kxCcG+qavMuxekbUj+vfCFmakHZj5SsDkvImO6i6BCC59lqf3fFHg7K+jW+XcwdRs8KVVVASHoVNCPS1DtfL+mYSVXIkO6j6hDSu3kIvdiL6lc/PkSdLilC07tIC5kwR1CoOufvjokKeWP2pfaIy5aEAPzzWFt5r6oZeHgHbXxx7yI7kXeqENbpd5VWwls855U25LutCwG4jI4dyqihEToRekI2AN5775/y31SFXBNRDm1DyJr/kSFjLea3FO2meo0MYg+kKQRPTL8q5Dn6Zf0gIY9BE+w0/BcJLhspCoGWbQvBZnX86vAHpCitmGZXL6zTcFRhMvlBiQmBeim4ZatLWxBiRqRTZ/8BuiSlG/L4iE2T0xT1k6pZ93pIes1bzOFaf7K2NWctpKHz+gz+8zPyUahVyAUvdf2tDB5QcTDp1HeAFoLvhOILFr+afCcjPlcbtHXJb17Vii7ndjnZH2G+opwxpyzz1VTI426/j6Hyq2QXyc5ZV9NQ7T9LI2YqDm+MFiqxAxngMStfjlQ0lu03gt+E+P9FuvYgC4ZhGIZhGIZhGIZhGIZhGIZh/sd8ByJfXgT28IPmAAAAAElFTkSuQmCC',9001); +/*!40000 ALTER TABLE `device_library` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `device_service` +-- + +DROP TABLE IF EXISTS `device_service`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `device_service` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `base_address` varchar(255) DEFAULT NULL COMMENT '地址', + `device_library_id` varchar(255) DEFAULT NULL COMMENT '驱动ID', + `config` varchar(255) DEFAULT NULL COMMENT '配置', + `docker_container_id` varchar(255) DEFAULT NULL COMMENT 'docker容器ID', + `expert_mode` tinyint(1) DEFAULT NULL COMMENT '扩展模式', + `expert_mode_content` longtext COMMENT '扩展内容', + `docker_params_switch` tinyint(1) DEFAULT NULL COMMENT 'docker启动参数开关', + `docker_params` text COMMENT 'docker启动参数', + `container_name` varchar(255) DEFAULT NULL COMMENT '容器名字', + `log_level` int DEFAULT '1' COMMENT '日志等级', + `driver_type` bigint NOT NULL DEFAULT '1' COMMENT '驱动类别,1:驱动,2:三方应用', + `platform` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `idx_device_service_device_library_id` (`device_library_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `device_service` +-- + +LOCK TABLES `device_service` WRITE; +/*!40000 ALTER TABLE `device_service` DISABLE KEYS */; +/*!40000 ALTER TABLE `device_service` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `doc` +-- + +DROP TABLE IF EXISTS `doc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `doc` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `sort` tinyint DEFAULT NULL COMMENT '排序', + `jump_link` varchar(255) DEFAULT NULL COMMENT '跳转地址', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `doc` +-- + +LOCK TABLES `doc` WRITE; +/*!40000 ALTER TABLE `doc` DISABLE KEYS */; +/*!40000 ALTER TABLE `doc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `docker_config` +-- + +DROP TABLE IF EXISTS `docker_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `docker_config` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `address` varchar(255) DEFAULT NULL COMMENT '地址', + `account` varchar(255) DEFAULT NULL COMMENT '用户名', + `password` varchar(255) DEFAULT NULL COMMENT '密码', + `salt_key` varchar(255) DEFAULT NULL COMMENT '盐值', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `docker_config` +-- + +LOCK TABLES `docker_config` WRITE; +/*!40000 ALTER TABLE `docker_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `docker_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `driver_classify` +-- + +DROP TABLE IF EXISTS `driver_classify`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `driver_classify` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `driver_classify` +-- + +LOCK TABLES `driver_classify` WRITE; +/*!40000 ALTER TABLE `driver_classify` DISABLE KEYS */; +INSERT INTO `driver_classify` VALUES (0,1705585912560,'9001','官方协议'),(0,1705585912566,'9002','网关'),(0,1705585912570,'9003','摄像头'),(0,1705585912574,'9004','传感器'),(0,1705585912579,'9005','开关'),(0,1705585912583,'9006','门禁'),(0,1705585912587,'9007','探测器'),(0,1705585912591,'9008','水电表'),(0,1705585912595,'9009','检测仪'),(0,1705585912601,'9999','其他'); +/*!40000 ALTER TABLE `driver_classify` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `events` +-- + +DROP TABLE IF EXISTS `events`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `events` ( + `id` varchar(255) NOT NULL COMMENT '主键', + `product_id` varchar(255) DEFAULT NULL COMMENT '产品ID', + `event_type` varchar(255) DEFAULT NULL COMMENT '事件类型', + `code` varchar(255) DEFAULT NULL COMMENT '标识符', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `description` text COMMENT '描述', + `require` tinyint(1) DEFAULT NULL COMMENT '是否必须', + `output_params` text COMMENT '输入参数', + `tag` varchar(50) DEFAULT NULL COMMENT '标签', + `system` tinyint(1) DEFAULT NULL COMMENT '系统内置', + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `fk_product_events` (`product_id`), + CONSTRAINT `fk_product_events` FOREIGN KEY (`product_id`) REFERENCES `product` (`id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `events` +-- + +LOCK TABLES `events` WRITE; +/*!40000 ALTER TABLE `events` DISABLE KEYS */; +/*!40000 ALTER TABLE `events` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `language_sdk` +-- + +DROP TABLE IF EXISTS `language_sdk`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `language_sdk` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `icon` longblob COMMENT '图标', + `addr` varchar(255) DEFAULT NULL COMMENT '地址', + `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '描述', + `sort` tinyint DEFAULT NULL COMMENT '排序', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `language_sdk` +-- + +LOCK TABLES `language_sdk` WRITE; +/*!40000 ALTER TABLE `language_sdk` DISABLE KEYS */; +INSERT INTO `language_sdk` VALUES (1705585912560,1705585912560,'8162831','Go SDK',_binary 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAFYCAYAAAB6T+FsAAAACXBIWXMAAAsTAAALEwEAmpwYAAA4KmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwMTQgNzkuMTU2Nzk3LCAyMDE0LzA4LzIwLTA5OjUzOjAyICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoTWFjaW50b3NoKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNS0wMy0wM1QxMjo0NzowNS0wNTowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE1LTAzLTAzVDEyOjQ3OjU4LTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wMy0wM1QxMjo0Nzo1OC0wNTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDo0ZWUwM2Y1My1jZTI4LTQzYjItOWNkOS02MDM1Y2IzNWY3Zjg8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpEb2N1bWVudElEPnhtcC5kaWQ6NGVlMDNmNTMtY2UyOC00M2IyLTljZDktNjAzNWNiMzVmN2Y4PC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06T3JpZ2luYWxEb2N1bWVudElEPnhtcC5kaWQ6NGVlMDNmNTMtY2UyOC00M2IyLTljZDktNjAzNWNiMzVmN2Y4PC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpIaXN0b3J5PgogICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjRlZTAzZjUzLWNlMjgtNDNiMi05Y2Q5LTYwMzVjYjM1ZjdmODwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNS0wMy0wM1QxMjo0NzowNS0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjI1MDwvZXhpZjpQaXhlbFhEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zNDQ8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pk8zyaoAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAn5JJREFUeNrsnXecHHX5x9/fmdl+vaV3SIAECBAChN67ICogvf8UFJGqqKAiAoIiWBHpRVQQkN5JIJTQQ0gI6T25frd9d2a+vz9mdne2XS717swMryN3u/vZnfnuPN+nfp5HSClxD/dwj//tQ3GXwD3cwxV093AP93AF3T3cwz1cQXcP93APV9Ddwz3cwxV093AP93AF3T3cwz1cQXcP93APV9Ddwz1cQXcP93APV9Ddwz3cwxV093AP93AF3T3cwz1cQXcP93APV9Ddwz3cwxV093AP93AF3T3cwxV093AP93AF3T3cwz1cQXcP93CPfntoGwMSQrgr1/8ODyBKbOQVgBcwS32VQBKIbMDnmIDuLnffHRvT0FVsFMgV9K19CCDzRfmBQOY7t398BY+ZjtcLx+tKWXQCMAper9h/C8fm4Xxt1P5XFHxGDEg5HndbDLuC7h49aGafLSSqrZEVh/B67L8NW7Oa9u9mThiFCggECuARQtQipeZQ+CYCRUq6QUYyLpywBVlKp/aXZsHmYdqWoGL/qPaPAqTtc1FtcEbwsZ9Lul+vK+jb2uF1CErI/jejnVWH0KQdGlUBTCFECCGqBKIaIaoFBIE6KWWjaRo1QCNQBdRiPVfteH/h+DdqC6NTa3cC7fb5xey/U0IonUKIOEI0A3EgjJRxiexG0i2l2e3Q4JlNQbE3Jo/9d9L+N2W/h3Rcp3u4gj7gD9Uh1EH734AtYBmNbDgEWxNC1CBENYgqkI2YcoREDgYG24JcC9Tb/1Zn4i0erw9PIIjq86F5vWj+AMHaelSfF2ma2e/P1HVi7e0YRhohBAKBlJJ0Io5pGAggnYgjdQNDT6MnE047XAc67I2g3f69HVgHNAuhrBRCrJbIDqBbmrIdZNzePFTHj2YLf8q+7phjY3MPV9AHxKHYwuy3NXbG9wVI2AEwxRJmqoUQTUKIcSCGY8qRpjSGA8OBIRmNr2gePF4f3lCQYH0jFY2DCNbVWz+19XhDIYJ1DQRq6vBVVuGvrMRXVYXi8SCccToBmBI9nUJKM++5WEc7ejKJEBDv6sRIptATcRLdXaTjcRLhLpLhbhLdXSS6Oom1txJrbyfW2Y6ZTJLObQhJoBVYrghlOYqyBORypJxvSrlKQLeUMmxbMNX2Wen22jgF33RvJVfQ+9vhswU7aJurmn3DRmwzVQNRIRRljBBiPDDGNPTxwHiHlvYoQqFi0GAqGwdROXgowboGqocNo3LwMEKNTYTqG/AEgniDITyBIL5QCMVraWxpWnE3KaVtSEtLk0sJIvsQIFBUxdLkGdGUgCKyewHCisVZ/9iPKwp6IkE6mcBIJEjFY+jJBImuTiKtLUTWraF79Sq6160msm4d4bWr6Vq9CkNPYVssbcByAV8ommeulOYCaZqzpZSdtqB7HXGJZNZNyPn6rqC7gt5nvnbAFm6f/Vgqd4OKwQixgwI7mNLcHZgEjLYFG48/QGXTIKqHj6J+7HY0jN2e2tFjCNU1EqyrI9Q0CM3rR0pLWLOCbBoYhgmmiTSNrGBLpOWEl/hepZTZ707KrOw6nnc+JrLRuexzisjGCBVVQSgCoagIRbF+HJuBaZrEOtqItrQQaV5L18rltCyYz9q5s+latZyu1asyH5QE5gOfC6G8BfIDKeView2r7I0z87qova5pV9BdQd8ah8fWOgFyEfKkbWpWKIoyBMSupmlOA7kzsBugKYpKRWMTtaPGMminnWkcP4GGseOpGT6SUGMTipoTGkPXMdM6pp7OamSZ+bGzZUKKokSWFPYfUuQLcsHzmxuLyFkAiiIQQkHRNBSPB1XzIJGYpomZShFet4bWhfNZO2c2a+fOZu0Xs+lesxrTNABaBOIToSivSnhXSnMRUsZsoffanxgFumwz3xV0V9A36yFsrV3l0NwJICGE8CPEaKTcR0q5L7CX7V9T0dBI0w6TaNx+AkN22Y3BO06iomkIgbo6PMEQ6WiEdDyGkUrZwmx/kSInZcIZKLe1NkJkVbBwSpuUSGHb6KIfYKXIbhJCCIQQaH4//soqEJDo7KJ77WpWf/4pqz6exYoP3qVlwXz0dAo7yPeqoiivSsRMaRpryBUBYWv3TraxtJ0r6FvONK+ytbc36zcKoSpCTBCKsreh64cAU4AGX6iC+jHjGDxpMiP33IdBE3emZvgogrV1mIZBOh7D1C1NbRpGkUmdTXw5TOasu1zC3h7IWCEEiuZB9XrxBIIoHg9dK5axbt4clrz9Jis+ep+1X8wmnUwALFEU9RkheNkwzU+RMmELvLqtaXhX0LeMgFeQyznriqIORxFTTF0/GDgAGOmvrGbQjjszfPcpDN9jLxrH70DV4KGoXi9ISMej6MlkgZ1b7Bw7ZSJfPgrT3/+LWEv4vaEKNJ8f09CJrFvL6tkfs+CNl1n67tt0LF8C0C7gdUXzPGWaxrvSNDvs78hjB+3C/+sC7wr65vO/qx0C3gVIoagTBRxumsbxts/N4J12Ycy0/Rmz30EMnrQrwZp6FE0jHY+hp5JII1eJmmeNixK3f6FWpCAQti1hAUUoaD4f3ooK0vE47YsXsuDNV5j/8nOs/OQDsCL0r6ua5yHT0F+Xlh9fa79Ft232m66gu4JeToNX2vdcB+BVNG1PAScZun4c0FhR38SY/Q9i+0OOYPjuU6kcNBRF09ATcYxUCkNP561Pqeh2mXu96IltHZvR8qpd+KMoKuF1a1gycwZfPPM4S9+ZgZ5OmYqiviYU5e+mnn5VWqZ8ja3V221LbEOOTFFTTze5YccHTFfQB1aQrZ5c7rbDzjFPlVKeL03zKKCybuQYdjjqeHY48lgad5iINxBETybREwlM07Dy0balKhzWubRvYlH2Syt+XjpiXi7WuRsoePx+PIEg8a52lr43k/f//ieWf/geQEpR1H8guNs0jI+BOjtoGsYq3OnpRvfZwu23Bd1jWwyZasXMHpWp5nPW9cftn5Qr6P33CNk3RMA292KKqu4G4mLT0E8CtMbtJrD7Geex41Ffo2rIMMx0mlQ8ZqW97LUTjhsYZyCqlEbPc9NL+a/5m4SLdWDttJ4QAtXnxxeqJBnpZt6L/+Wdv95By4IvAbpVzfNr09Afts35hjLa3UMuT+9MkUYtIRfVICsQBJDChyCFlFGs4qcucilWr32GMfvxuCvom0f7UuJW2NBDs827ansn7lYUdTzIs0zTPBOobhg3nt1PPZtJJ36T6mEjSEUipKJRq/rM/uiSxSfZIjNbtTtz0jJ3V2dSVaJQnbnYXmLtLzIQJFBTS9fqFcy67y4+fvR+Yh1tCMRbQlV/bRr6O/b37AeabUGusn8UWzATQogqhBiJae4hYQdgFLlqxQpbkFvt91ihCGWeFHyIlIullEnbInASgRKuoPfu8JFjPTn51k6Bj9sLKhxm1PqOgL3Le4EOoSgBoajfMvX0D4GRNcNGMuWsC5j0tW9SN3ocsc529Fg0K8l2mjiXUy44ISsIZd2kmboSmc2F51RYVllJkKVy1gMYa2ldu3pOVVEUFaGqtpCSl2c3DRPTMDANA2kY2QrA3n+ulb/3hSrwVVSybNY7vPnbG1n89hsACVXz/MI09HuldaNXkqPRRgUihSLGWEFW8wg7yFoLEKprIFTfiL+qCm9FJclYhFR3N5HmdcQ62jLn1Aa8raja81Kab0jTbLE3EI+t+dvYAk06BrqgC/LLSf12sCNlL1ah3Zf5W7M3AsXhL8XJUSKdR4NDi8cU1bOXlMbl0jQPDdbUses3T2O3U8+icfxO6Mk4yXA4R/pwmo/kgkeZ37PmO7mbvbSwyHyCicMkyNShi4GIRaJ4vXj8AeuNTImRThHv6iDZ3U0y0o2pGwhh19ZLUFQFTyCEv7qaQG0dmt/ey6WJHk+gp1PF91q5c5agaBr+mloS3Z18/OgDvHf3H4m0NqOo2lMgf2Eaxgr7HksrqrqDEOIUO8g6OlTXQNOEnRi2+54M2mEnqoeNwF9Vg6+iAi0QQo9HSUWjxLs66Fq5wirw+eQD1s39nGQsCvCR6vE+YBr6c9I0w7bFmATWsJlLdgeyoAcd5pVha+kEQoSEEA32TlyHpNb+piWCdqATSVhKs9nGZPwt1V7kbttU89i+eAXQKRSlQhHquYaR/i7QNHa/g5n23csYNXUaQigkurssAXfmemV+qqis41BYHy7KRJjJK34rSjkPFKzqsSLiHr+feGcHXWtWsm7+PFbPncPar+bRuXY10bY29LYWSKfzgxeqhqiuobKhkarBQxi0/Q6MmLw7QybsSM3I0XgDIdJJizgjdd2679ZzzlLKLNln6btv8epNP2P17E8APlFU7RopzYVCKGeahn4msF31kOHscNRxjDvocAbtOIlQbR2Kx4uUJnoqhTR0pGEgFBVFVVG9PoQiMNI60dZmVnz0HrOf+CdLZr6BnkqhCOV5oaq/M/T0LDvIawBrN6ewD0RBD9mmTsheiA4hRJVQlIkIsZc0jN2klKOBEbawexzilbYFeaUilPlCVeZJU74vpTnXpj9mAiVxh/C3Kaq2o4DrDUM/Mlhbz36XXM7kk88kUFNLoqsDPZXKu8aS5A/7LsswvIQQKIpqFcgoCqqmoahq1s2UhoGpG5h62irttP38QoqoM6WU9xlFz9kxgj7EKpoHf1U1RjJBy8L5LHn3Lea8/CJrZr0Ftnk1uL6Ocdttx+AhQxk+YgSVlZUYhoFEoioq8XiM5nXNrFixnC/nzqO5vd3uQKEw+qDD2OnQoxiz34E0jNsePZUi2d1VIOBlzllKFE0jWFdP56qVvPWHW/nokXsBVmte7ypTN/YMNTSyy0nfZuevn0zThB3twqYYRjqNaeiOfbxgrezPVzQN1evFG6wgEe5i+btv897f/8SS994CaFM93p8b6dSjthJTNqdmH2iCnmmcoAPtQogmRdUOMfT0N4A9gHqPL0DdqNFUDRtBqL6RQG0diiIwDZNYeyvR1habIPEVhvXltAEfqx7v86ahvyJNc6VtKViLr3m+ZejpnwDbjd3vIA649BpGTt2HdDxOKhbNfqHS4XRnlblDjaseD95QJarHg5FOI02DZKSbSEsL6WiUVCxCKhaxTVjwVVbhDYXwV9cQqqtH8wdRPBqKopCKRknHYwVqKd81KJuXLpWO2oJYKU1Ur49ATR3JSDfL3n2b9//xAIvfeAX0FEMbG9hn2jT22/8ApkydypixY6mpqSEUCvV4I8TjcdraO1i1cgVvTX+Tt6a/xeuvvkIklYLKGvY57Wx2PelUBk/chVQkTDISsZl0PZ2z9YSvshqkyTt/vYMZf7gVI51i8E47c+zNdzJyyt6kohFSMSuLIsrk9sqtlbSCBnj8frzBCqJtzcy6/y7e+evvMXTdVD3e24x06hbb0tQ2l7APFEH3OPLW3UBcUbVjpDQvl6Y5FWDY5D3Y7sDDGTFlL6qGDqdy8FC8gUCOY61Y+3cyHCbS1kLnsqWs/Ph9Fs14jVWffZz5nHmK6nlYmvrfpJQRVfNcZejpXwLsc/4l7Pu9KwjW1hHv6sTU9ax5Lh3uqRA5G1FRNTzBAL6qalKRGO3LFrFmzmes/PxT1sydQ+vypSRaWiARKR+CqK6latBgmsZtz4jJezBs0q4M3mkXqocOs5o7hLsx02lMU9o3bHE6qvdU082Itf8M1tWjahrzXnqWmff+lRUz3wTgiEMO5uzzLuDQww9lUNOgzWLqLVy4iGf/+xT3/O1u5syfDx4fh1x+LVPPPB9/dQ3RthakYVlGPV4vAk8ggCcY5LMn/sHz1/4QQ09z2LU3sO93f0iyu9PeOJRNXCuBNxRC8/mY++yT/Pfq75OKRVA9ntsNPX0jkqAN3WQzfiAIuh+rY4oKtApFGaso6hWGnj4NYPyhR7LHaecxaq9p+Cqqsn6SmU5jmAZCypyrLARC0VA9GprPIpMlIxFWfTyLz5/+N3OffYp0Mo7m8b4hka1GOv2tykFDOPTq65n8rdNJJeKkwuGcGehM9TorJHxevKFK9GSC1oVf8uWrL/HV29NZ9+E7WY3fVFPLuHFjGTVmNIMHD6Guvp76hgYQAj2dZs2a1XR2dLByxUrmz5vHshUrSNptnTyDh7PjgYew4+FHMWrqvviraiwtn4xtdappEdY2ZTSfH191NWs+/5Q3fv8bFrz8DB7gnHPP5ZIf/IBdd9211zdouXun3HNSwsMPP8StN/2az+d9ScOOu3DM9b9mzD77k+juRk8li1NzhdckTTSvn0BNDYtmvM6TP7iQSGsz0y78Pof++BekEwnSsWhO2DdhrVSvl4qmISx47QWevOxCws3rUDXPjYae/p0doEsBqzYhNdzvBd0PDLUj6V2K5tnf1NO3ADs0jN2eA374Y3Y86ji8oQpiba0Y6bQjCFSQUil1gwhQVI/FEjMNVn3yATP/fDtfvvwcAI3jxvO13/6FEXvuTaytzaKFCooZWPa/ms+HNxQiGYmw+J0ZzHrsIZa9/iIAdQE/hxx1NPsddBB7TZ3KjjvuRHV1Va8WIZFIsHr1aj744AM++OADXvzv03yxYKH1vpN2Y8o3T2OXr32DYEM9qXCEdCKeZ1lsNaqpXSfgr6pCmpIPHr2fl39+DSA57dvf5uof/Yhdd9llg25OK7gpN+r+iScS3PTrX3PDDTcAcOQvbmXKt89GSkkyErZt6x6u15SoHo2KpsEseO1FnrzsIiKtzez73cs47NobSIbDpOMxe7PYFFouIBSqhgxlwWsv8tgF3yadiCcVzfNdU08/ZWd+Wuxc+/+coPuxmhoKIKx5vN/W06kbBaJyj9PPZf9Lr6Z21BiiLc3o6aSdqhLZQIjMJlELPjsv1SIz3zWhpkHEuzp55qrvMe+Fpxk77UCOv+1P1I0eR2TdGkzTzAbSpON9BBIhVLyVVZjpJF+9+iJv/vVO2r74lJCqcOyJJ3LKaaez33770dTUtFlM1LSe5oP3P+A/jz/OQ/fdQ3NXN6FRYzns0qvY8egT0Lw+Et1d9k3UE13Umch23hCiF1TTfKyUEqEoBKpr6V6zkpd+fR1fPvckO43fnt/87naOPfbYHjVxvtlb/vmNwb49cybf+7+L+OyLuUw5+yIOv+Z6hKrZws56rtdEUT1UNDay9L23+deFpxNtb+XQa37OvhdfTrK7Ez2VcrTR2sh1BoSqUjVkGLPuv4vnf3wZUsrVKOJk0zCW2AG6lRtbVNNfBV0Fhtm+eZuqec419PRNHn/Ad9Dl17Ln2RehqBrxrg7y5xQI52aaZUNljHdn4ERK+38KBGrqCK9ZzZOXXcjyD95lhyOP4+hf3krVkGFEWppLY63SDXyBEN5giBUfvc+bd93J4pefpdrv45yLLuLc8y9k11127nHhnTdouXXq6bmFixbxr38+xu9uvpm2cIRxhx/L4Vf+lKYJO5IMW2aqEErpvPJmpIsqqoq/uobVsz/h8Su+S9fC+Zx5xpncetutDBo0qKRAbsj1bgoWYPXq1Zx95pm8+vrr7PKt0znuhttACMvXFvR8vYBQVEKNTSx+63X+9Z2zSHR1cPwtd7LbyWeRiHRjpHrI3/dynaXt8mg+Hy///Ed88PA9KIrymCnlj5Eyw6Ff+78k6A12hH2tqnlOMvT03b7KSs+RP7uJyaeeTSpimUyZL0WIgkiqoxhFiBLRYcfeEKytpWvtav57+XdY+t7bTDzuJI6/5U40f5B4Z3teHrYQG6iuxkil+eDRe3n1xutAGlx0wfn84IdXsNNOO67Xn1yfJuqNn5o5lixdyq9vuIG/33sval0jX7v+JnY58WQrQhyP2dZHidKhEn9uKF0UIahobGLZ++/wj4vPJrFuDb/5za1cddWVG21mbmxMpydsLB7n3LPP5l///jdTz7+EY37xGxKdHaSTiVw6rNz1AigK1UOH8cWzT/LY+aegebx848/3s9PRJ5Do7sqmSgGkrpNOJDD1dH56bz3rjJQEqmvoWrWSf33nTNbN+1xXNc93DD39jJ1W3iit3h8FPWRr8zZFVSebhvGYoqoNx9/yByaffAaJ7jB6Mp4ze8qkNXIVULmUV95rpEmgto5YWytPXnYhS96Zwa7fOI0jfvZrfBUVxLu68tJl+Ru8JFhXT2TdWl688afMe+YJJk+ayK9/cytHH330Rt2wmyromePxxx/n4gsvpKWzk0N/9Av2Pv/iLKmmSNhLpMiEKC3Q5eii0jQJNTax8pMPePCsb2J0d/LYv/7Jyd86eZMixJtT0J2PxRMJjjzkUN569x2O+uVt7H3exURa1oIp877sUtcrpUTVPATr6/n40fv579Xfo6K+kVPv+zf1Y8axdu7nVnwESaixifqx49E8XuLdnUgzVy3Z8zpLBArBugY+e/wRnrn6e0gpZ0rk2ba0xu2U24AWdC0TfBNCKEKIx03T3HP/717OIT/+OYmuTrs4xdFt1CHYssD6Kqw2y+S2JRJ/qAKhaTx56QXMff4ptjvgUL5+5912MUN31pzLx1pvXjloEK2LFvDv75/Putkfc9q3v80df/gDDfX1G+V3bu5N4NPPPuPcM87g0zlz2Oe7P+Swq35mRYkzVtBmootKaVLR0ETnqpXce+pxhJcv4aGHH+aM00/fJEHelE2vN2u6atVqpu4+mdWt7Vzw1GsM3WU3Ym2tpa32oly4RPX58FVU8vIvf8x79/6F+rHbUdU0hLalizH1FFKCJxhk5B57sec5/8fw3aYQ6+zATOsIRfRqnb3BEKlYhH//3+ks//B9U1GUM0zTfN1OMa9gAymuGyOzW3Jscg1WRVpSqOr3TNPcc8cjjuGQH11PKhazhFyIvKIUKfKtq0wMrqAC1VG7IvF4vXhCFbzyy2uZ+/xTjNhjL77227/gr6y1hNwKsRVgrSaMFY1NNM+fx/2nn8C62R9z469u5JFHH80TcqefmOnCWuhvFj6/OQOZk3fdlRnvvMMhBx/Eu3+5nRl/+h3B6moUVSuyUAp4NsUmq6PoR+QJucQXqkRPpfjPDy4kvHwJ9913X1bIN+bG2hw1F+vbBACGDRvKv598CkyDZ6+7knhHK55g0JKwMteb07wCPZkgnUhw8FU/Y+evfYu2xQtZ8t5bdK9dRaS1hWhbC50rljH7qX/x8OknMve5p/BXVqOoaq/XOR2PUjloCDsd9w2EEIo0zePJTa0JsRWOLSXomW4tYUVVp5q6fmGoroGDrvwZCEEqEkY4qRNSZsd2ZthfAoFqlxmqXh+qx2strh1ZFxIUVSPUOIhZ9/6ZWQ/+jephI/jaLX+kctBgyyfP3xayWCSE6urpXLmCh87+JpGVy7nnvvu49ifX9rhzZhoaOgW6UMs7/+5JQEo9Xw5bWVnJf558iimTJzP9t7/ikyf+QbC+IXsuzps61w66OAiVe95RSmYH37yhEK/degMrPniHyy+/nHPOOWe957W+5zb2ejcECzBt2jSuvupK1n76IR//+x94g6FsTrzU9TrXCiFIRSOoHh8HX/UzmsZb8RiP14fm8+Px+vH4/Gg+P8lomBeuv5pVn36Ir6qqOBFeZp2llKRjUcbufxCN201AwmEoynCsqtDgQBb0KkARCFUIcRZQs9f5F9O0485EW1usL0EU9wnL9CtXPB58VVVowaAt3JbQe2zusScQAEUhWF/Houmv8sL1V6N5vHz9jrtp2nESkZaW7HvJwvA6El9FJalwF09cej7hlcu48847Oc9xY68vGlzq8VJR5fVFkgsjz4UbivOorq7m0X//m0H1dTx59aWsm/s5wdq6nBq3TR9BbrqKdHbByJhGIjfpOJMnDtTWsfjtN3jvb3ey++Td+O1vf7tZznlrYDPHT392HcMGD+Ltv/+JrlUr8GbKbktcb+FagSDe1UHt6DEc+qNf4AtVkE4l8zoFAWgeH5GWdbzz199jptOoHm9eJqjcOiOsOXY1w0cxfI+pAI1Cyt3tyHtmDt2AE/RM//OEUMQuhq4f0bj9Duz6zdNIx6N5AiekQ0hsTasFAqgeL8vee5s3f3sjT13xHf590ek8+6NLeeuPt7Fo+mvEuzqoHjKUjuVLeO7HP7AKKK6/mTH7HmQFY7LF6s6qJesX1etDUVReu/0mVn74LldfdRXf//73826icuZ4uVRRqX97sgzWp73K/b39dttxz4MPQSLGc9dfjaGn8fiDmdV09GpwpCCzzkruy3FmoDyBILHWVl6+9UZU4K9/+9sG+4Xru74tic08X1lZydXX/Jhk8xo+/e/jCFUDVcm7XpFNpeavVebrTHR2sP2hR7H3BZcAWEVbThfSHmG1cPprrP78E3yhkGPDKL/OQlrEJs3vzwg6UsrdbN/cuzW0urYF3tNv/0SllIcCNTsefQKVg4YQ72jP5iJzWofs/zyBEKaeYubf/8SHD/6dWGd70Zv7QpUM32NPdv3GaSye8Rqtixcy+Zuns8fp5xFra8XUDTIOWV60VVhFOL7KKua/8jwf3n8X06btw00331xSW5czzQt/L6XZezIz1/f3+l577DHHcN4553Lv/ffx2ROPscdp51gppTzzSORfOGTLOJ0vy7RXnvPfx1n78ft8/7vfZc89p2ywBbMh17clsWecfRZ/vOP3fPiPh5h84sn4q6rtyHnhWhSvlRACPZVCjceYctYFLH33LZbNegcVjyM4JNG8XtLJBMtnvcvwPfa2UnCm2eM6g7BHaUHtyLF2cC46glzXWmUgavQQoAshhkgpD6pqGsy4Aw7BNHTM7NjegkIDu3xV83p5685bmXHnb4h1tqOqGprHZ/lIHi+qqpGMhu165Qv49Il/MGjCThz2kxsw0tZoX6HkKpQKjUFvMEh43Rpe/PV1VAcC3HPvvSiKslmimr3VSBsSnCr3XrfcditNtbW8/odb6V69Em8glP96UeSl5/ntmd89gSDRlmam3/UHGmpquO6Xv9zkgNrmvN4NDeTV1dZyxllnElm2kKXvvY3m96EIxxBJ4dz0i9dK2P56RdNgDrriJ3j8AbuW3hnhtH5vW/gVeiKGUlDAVGqdM+pdTySoaGyiasgwsDgfGb66GGiCrtiCnkIoY4GJQyfvQf247UgnEjlfXOb+zYTa/dXVLHlnOrMesExHrz+AomlZOqJQrFlems+PxxdAAh5fgEN//AuCdQ0kIt25dk8yl07L5jmFgurz8flzT9G1ZAGXXXklO0zYYYtHikul4Xq7sZQ7j4b6eq665hpiq5Yz76Vn8QaDYA85tIKZIlsxW/hetkODlKD5/Cx5fybdi7/ijDPPpKGhoddme2/PeWthM8cJX/8GCjDnleeRuolQtez1yiLLq9RaCWLt7Yzd7yAmn3wmUkpMXc+PqhcG2dezzpmnjXSaQHUtwbp6sBqhVLIJ5Ja+FPSMa6JimhMB/9BddsdfVYupp/I3VUcqSPV4MVJJ3r/nzxjpFJo/kPN5S3yIaVi+055nXsB2Bx1Boqszq8GdBQyZmIiUEm8gQHTdWt69/y7GjhjB93/wA7bWsSkpt3LY8y+6iMqAn3cesZohZhh8JdtnyuKbNNOL/rPnnsKnKJxx9tllP7fU+W3MOW9pLMCknScxZfJkln88i+51q60Kt8K1KDMwJxuN162ipGnfuZTaEaPze/Xb/1QNH4HHH7AGYPawzvmfazXEUDQP5FpHy4Go0TNRCY9EjvP4AzRsP8Ea62ua2SsWSEchjMQb8LNmzqcse2+mvQkUTzeRMmvlY+g6w3bejT3PvQgjlcBIp3LCLWTuXzuXJoRA8/n58rUXiS5fwkUXX0y9nSsvlSor9M17eq6n53vjV26IlnP+Xltby9nnnEP3V1+w4sP3rUxE1l2x88aZNRA5MzXzHXgDftqXLWbRqy9w2GGHsfsee/QoULqh88orr/LLG37FxZdcwuVXXsWDDz3EmjVren3Om3K9vd0MVFXl2BNPILVmFeu+/ALN583eD0JIq1lE5r4ot1ZCkAx3Uz96LPt/70pbG1vFXelkAl9lFeMPPdpuZGn2uM5FnyuK5EXZGoK+uYNxIfs9BdDo8Qctf0Q6Va2z4aB1rZovwOpPPyadjKMoak7IHdVxwuYcG6kkQgj2uvB71AwfSaytNc/ft/V61iRDWB1h9FSST55+gkqvl5NPOaWk0G6I5ioVnCsXwFtfqm59DK9y2G+cfAp/+stfWfTuW2x/yBFWYEg6CfW5NXA2eLS4/Cqrv5iDTMY5+LDD8moaCq/9v888yy233MQ7M98tUlfDhg/nrLPO5rqf/RS/379eS2BTrrc3WCEEu+8xxerdNG8uEw490nrOlNmyYVmyPVTBWklBrKOdnY47kY8fe5CVn8wi0y9i73O/y7DJuxPv7Mgv1SxYZ2fbG2G7n6lYFD0eh/zBEAPOdLcnXYgKoNpbUWH5j1hRSZGtF8wPlCmaSqytxfpdUfNqG3BodGkamNJkhyOOY8IRx5KMhLMdRXNxD/u9HeaA5g/Q/NU81n70PkcecwxjxozJ08ilbp6Fixfz3HPP8/TTT/P000/z3nvvkUwmS6Z3ykXgC/PE5YJrPZmj5bAAe06dys477sDc118h2tqCx+tz3LhO81TYyiZHoQTJovffRgMOO+Lwkp8JcPWPfswJXzued2a+g1Xj4LWDoz4QCqtWruSmX9/IIYcdxsqVK7PYzX29vcUCTJw4kab6elbN+QwjrduMP5GXKssX8tJrpScSeCsqmfadH6CqGoahs9e532Xvi75HOhazpuHmmfT56+xIsln3oddHrK2ZyLo1kBsooQ1EQbfCa8KaQhqsq0fz+pDWgPv8dqpSZAvaTcOgwm5BZNqvzUbmM+uoCHQ9hb+yht1OOxdPIGAH+ER+0jIb4Mva8mg+H6s+/xRMnSMcXGrnTZk5Pvr4Yy648EKOOvIojjvuOE488UROPPFEjjrmWI499jgefuTRvIKYDQm+lSr66G2OuRQ2FAwyebfdiS75inDLOhSPJ6edKIo+5X5VVVLxOM0Lv2L08GGMG7ddyc///e/v4NZbrPSjxxfA4/NnsxRCCKv82BdA0Ty8O3Mmp595FtFodItdb2+xI0aMYOigJpoXfGmZ3IrI9jMoXIv1rVU6GmHMtP0ZvtueAOx49PFW2i7bpKI8trB+W/V4iba2Em5dBxaZpWOgCroAVGmpcD0djdi7npKnmXPCaa1AOhZnxJ774AtVYpoGilKiSsqeJb7j0cczeu9pJLu78vOjMifY2feWloWgJxIs++gDqgIBpkyZUvamue+B+zns8MO55+9/Z9HCBdZ7qSooGl0d7bz22qucecbpnHHmWXR1da/35itX8bU+C6A32MwxeffdAVg7f65lIqpKbk1Eqa8HVFUj0tJCZN06dpo0iYqKiqL3f+edd/n5L36RFfJcEU5hIEuiqSpCUZnx5hvccutvtsj1bghW0zRGjxlDtKOdWFeXzQvogXlSbq2EQE8m8VVWsdPxJwEw/5XnSScSdkBN9LjOTkaWUBSkabL2i9kY6TQCFmCx1yRbYMjDlhZ03c5rRYBwrLODZDSS14sr16VDZs2mdDxK046T2P20c6zAh65n02NkUxMp/FXV7HH6eWheH0amVxgyv+GbzH9vIQSpWIwVsz9h9MhRjN9++5Ja4O577uGCCy6gs70dRbM0lcfrxaN50DQNj8+qeQZ49JGHOf2MM0k5GhQ43YD1RY43Z55+8uTJADQvWmgF45ytscpkbhRVJdreQqJlHWPKaPM77ryTrs4OFI+3fAbIEQ7QPFZhyZ13/oGVK1dusevt7TFi1ChkJEykeR2qfW49X4cs+/l6MsHoafsTqmtg7rNP0bliGZrf73AZ13eOEtXjJdbRzrJ337LkRCif2Om1FNYYpwEl6FFHkKEzHY8TbW0pvWs6qmYMXcdIJtn34ssYOWUfDD2dDbpZcmuVHow78DCG7jLZSqcJRyM/IfN24RxVSYKikIrHCK9ZzbjtxuW1Hs4IxZfz5/ODH1yGqRt4fH5URbEFNneqmd89/gBC1Xju2f/y29/9br0aaUsfw0eOJKSpdK1bY3++Y15ZORWmqCTDYUgnaBxU3LV19eo1TJ8xw9L+ygbcIkKlq6ODZ597jr4+mgYNAj1FItyFUNQy+TTWv1ZYhS41w0cx/tCj6FqzklUfz7IbU4j1YjP3qL+qilWffcQKa7b7PCnNRdhTY9gK45c3t6DbzjimEGJpKhZh3bw5KIpqB4RLJDBlriLJV1nNSX+4hwmHH4MpTdLJOEJYhQaaz88ep5+DUFTLHSiIlpbb+VWPh2hbC0QjjB47puRrrrvuOuLRCJrXX7RfFPULlxLNyoPyqxt/zbKlS3tlgq4vhdRbzVX43hUVFQxqGmT120smstaTKDmWVNpyrhDv7ARg8JChRZ/x3vvvsW7NalTNk6+sZIHyEqDrOulkAsMwslr9jTenb5Hr3RCsqmqUjL6VwJZfK+t30zDQ/D7GH3GMpRhefBZpmCiqul4sSLRAgFQsyqePPUiiuwshlJewJq8a9r9yoAk6WUFXlAWAseqTD0lGui0T0GFqZ+mVGaFXBImuTiqbBnHi7//GQZf9mGBdPYauI6XJdgcexph9DrDGJWW/MJGN62VcAllQ5aRqHmId7SANGhoai77cefPm8dRT/y2KoxSHGPPsORTNQywS5oGHHi6Kwpcy/9YXSOopndQTNlRRweAhQ4h3d1tDKBSRO2HHYsgCYTdMyy0MBAJF77nU3rwUVXM0CyhWXOlkAmnohCqqMPW07XLB2jVrttj1rg9bNkpvp3ilsyTW+eWWXKucm2kkUwzdeTfqR49jyTszaFv8Fd7M2pXDSglCwVdZxZcvPcdXr72IUJQFEvkmVg/FMPmjnAeURo8CmjTNhcD8lR/Nonn+PDyBYK6OwBlRzzCI7DeIdbajKAqHXHMdp9z9KNXDRlgpk+NPQvF47QaJxdhs00iRK5qxrEnNynciLXOu4Hj11VdJpxLgyN/jcPedWRLDMEmn0pimiWo3Hpg+ffp6/cve0DA3FpvFOxYlW1pcmLrIXIhjFE0poYrFYnmbgjOJkYl56qkkldU1/P2ee5j92Sdcfc01SHvzQKx/PbbUWhVpf9N0zFgQJVpK9bRWuYtPJxJUDB7MhCOOIRWPsvTdt1E8vnzzrxALBGvqaJ73BTPuuBlD100hxKNImfFn27dGIG5LCLppC7oqpWwWQsyItDUz97mnQVi16nlTEpxdGjNUYduMN5JJAjV1pMLd1I/ejlHT9ife7iyOKcAWJkalKArAaI6uIJmbY8HCRVlTr7DBXy6MIEindauMVxoYegrDdh+WLltGZ2dH3k26Ps1e6vlSdNjeYEXR62XxaKFs0VauvDCzjrpefJ9VVVVl3106MkSZjzENEyklF154Aeefdx5jx47llptvZr8DDrT9erVkkHJzXG9vsABtba2ganhDlY6qTOsinGvR41plLl6ANKx8/Mip00DAV6++QDoeRVGVklgpJf6aWsIt63jl1z+jddECFEV90jSMt23fvANrUpEYqKZ7NGuOCDEdIdZ9/uQ/WT37YwI1ddke2EXbvoOor6gaEsGXL/6XaEcbE48/iYr6Jpsf3DO2uAukyAZjEo6Cl8yNmMoOVSzYlJ3BmHQaTVM5/4ILuPfee/nmt75ldQQFwuEw3d2Rkn56qRx74U8pTdZbbObElUxFXLkGZtlGCLbGN01C1TUALF+6pOh6x44dawdJ00W8AQGY0oodFQ5w2HVX6+/hI4aXPe9Nud7eYgGWLVkCgRAVDY02KUVQ/EWvZ60K8u2pWJRBO+1Mw9jxLP/gHbpXr0KzMzH52TSFioYmkpEwz197GQvffAVF1WZLaf7DDr7FgXWOmNaA0+jCNkXaAUWa5hJFVf8b7+7ktZt/TiLcib+yOq/uPV/rWiul+f3E2luZ99zTqB4P4w87CtOwfPViZkJhgE/m/UgjTbDGov2uXbu2SKNnTPCiKryM9jJNpKlz8snf4u933825557Lo488wv4HHgSA1+vF5/OW1EQ9+Z8bq+EKn9d1nUQiaQXhlBLFH4UXJCVGKkXd6HF4mobw0az3iz5r6p57MnT4SHuqqCiqVMyUKb/3Xj727bffBuDAAw4oWufNdb29wRqGwcIFCwg1DqKiocEWdFlyLda3Vs70mZlMUjVoCOMPOZJ0IsHSd9/GX12T996K5qFi0GBaF83nP987j/mvvoAQ4ispzd9LKZttq3eNrQy3ijbfksG4SNaEN4xnFUX9cOm7M5h++y1owSC+ykqr9jivt7rDxPb6WDt3NmvmzmbE7lNpnLBTXu/3vOCQLIh25u0DwqIG1taBotHZXtzIYuiwobZAG3nfcaZ8OWOiH3H4EVmMx+Nh32n7WFHrwYOpq6sr7TeXiO6Wm1BSqKV6i41Go6xZvZJgTS2+CttMzfKtZVEqE2HN9q4cPIT60eOY9f77tLW15aemmpo47LBDbKHRnVBb0C0r6YEHH+S23/6ON9+czsWXfI/PPvmE6ppajjryyLzz3pzX2xvs4sWLWb5yFYO2n4Dq9dp9EBx9w0V+cVVPa+Vsx2OaJormYcSe1ne//IN3rOIXRUMIQbCunkB1NfNeeJp//d8ZLHrrdRRF/RghbpWmuQKLsbYKaLU/0ByoGj1zpyewRhgjpewA+SchRPt79/yJ6bffjL+qBl9VdU42HVVWQlGQwJKZVpBr+8OOxuPzYaZTpZznPGx+Ht2SVCOdpqK+HkIVLFm0qOiE9502zULbN7QosNgyJZ8rV64oyjUD7LbbZDx2WqlUb7OeIsHl/MsNwba3tdHc1k7N0GGomgdpmjmedVG/POtX09Dx+AIMn7w7a9o7+OTjj4vO4aorrqCuvtFyUUR+BERK0DxeYpEoV115BYcefjh/+fOfALjmmmsYNmzYFrve3mBnzfqA1q4uxkzZK7smebOwHYuxvrWSDqWBlKRiUYbsPJnKpsEsmvE6XatXUD10GNXDRtCy4Eue+dGl/Ps7Z9GyYD6Kqr1gSvMmaZqZHOxKW5vrbOVjS2j0zEp1YI2cUU3TXIgibgY63vztr3jhp1dgpFIE6uoRioKQIrugqtdLtGUdi2e8ga+ikpFTp2HqOqYpi81SKbLkfmeL3ey3JCwTz+MPUDV0BCtWrnT45NYXu9+++7LbHlMoFS4WWTNV8Oe//pVnn3+eZDLJPffeyxNPPA7AmSX6npfTOD1pplLWQG+or7M/+5Q00Dh2OyQSmaVN5gffshupkEhpmbIT9j8YgOefeaboGiZNmsQdv7/dSqMl4jn31TEu2OPzgqJl4xUnffObXO2Y6LK5r7e32Ndffgk8XkbuvqftJppZ6mhOe9tstvWslZPuLIF0PEb10GGM3md/Yh1trJ3zGc1fzeOFn17Bg6d9jY8fexBDTy9TFPVW09D/iJRh+82X29o87QhcD2hBz6xa2r6w1YBHGuZ7QlFuFUJ0vnvPn3jy0gtoW7yQUEMD3opQtjOs5vHSsWIZa+d+zvDJU6gbNYZ0MlGgVfJ9dOGohJPObp9SgGmi+fwM2m48q1auZMmS/OCTpmn86Jqr7bxwPN89sK03zetj9YoVnHDCiUzYcScuOP8CopEIxx53PAcU+KOltNLG5IZ7i/1o1izLhdhhJ+vcTed+l8s+SMccb0zQkwkG7ziRmgkTeeqJJ2hpaSkSojPOOJ1bb7sNVVVJJxOkkgnSqRTpdNr6SSbATqmdeNJJPPzgg6iqukWvtxw2g2lubuap//yH+kmTaZqwE3oinufKicxgzUKaarm1KsTatNSRUy1L8PXf/JIHTjmWmX+7k2hrS5eieR5HiBtM03jZNtUTtpCvtGVCbm0h39KCjm2irLSFPSBN810hxLWKEHO+ev1FHjnjRGb+9U7iXZ0Ea+vwVVYiVJWl77yFlCaj9z0Qf1U1pp4uS3EtDKrk01QtDacFAozaY0+au7p47733im6uk7/1LS686P+yRSAUDGEUAjw+P6aeZtmSxYBk2PAR/OmPfyipZXvyN3ubG14fFqwRzDOmT8c/bDRN47bHTKdytN0eaKogMFIpgnUN7HbSqSxZvZonHn+85LlcecUVvPHmm5xw4olUVNVY96hpWD9CYbfdd+eOO+7kySeeyBbf9AVNNfP4Px5+mPZIhN2P+zreigoMvThTk7cWvVgrCtpLGuk0I6bsRaC6juav5pldq1YsEYr6uBDKNaaevgcp12AVxKwBviQ3jaVPhNy65i07e021NxMfMAoYDphCEUOFon7N1PVjAP+ovfZlt1POYuz+B1E5eAiPnPENFk5/hbMfe5bhe+xFMtxdYJY7IuxClM7LOzZtf1U1q+d8xr3fOJJTTvwajz3+RMkikYu+8x0eeeihXNDN50MIBWlK0nraurmBUaPHcN+993LwwQf1vNuVuTl702ShJ2zm8ZkzZ3LQfvsx6YwLOPbnN5GKRHKtjUqM9y2c+OmrqKJj+RL+cvzBTBozik9mz85q5FLnNHPmO3wx9wtaWloIBAJsN24c06ZNy/aa21LX2xPW+XhHRwfTpkxhcUeYi554kcqhQ0nHoo57A8oOrFvPWjmxms+PlCb/vugMFr8zPS0U9XppGrNs4VaxylrX2UG3qC3c0vHvpmnRjZDZLc2FNR3BuaX2RY6QpmyRpn6voqizpWkcuez9mVOXvz9THbHH3gzfYypr5nxC43YTqB05Ouv/5bSryGetFX6JzpGr9peXjscZNGEnGibtxksvvMi6tesYNHhQ3g0dDAZ56IEHmDJlCnfecQdLFi8mXdBowucP8M1vfoPrfvYzxo8fX9aU7I2Gd0akNwYL8OiDD6EDEw461Ko9MM38CMN66JPpeIyGcduzxyln8OH9d/HoI49y5llnlv3sffedxr77TttgBbA5rrcc1om78447+XLxYg688jpqRo6yZ6aXm1HFBq2V83kjlaJq6DAGTdyZxe9M9yClz77HTTsu1WpnnnSHgPeJJt9aGt1p+yhYHWgabc1eZUdJKoSi7CxN42BgVyzqHlPOPJ8jf/ZrUrFYfhmjU8CL+piXbgIghMBfU8e79/yFV3/1Y/54551c4hjaUJjGWbFyJW+++SYffvghiVgcoamMGzuW/fbdl3322aestuntGvV2xHJPx5q1a9l+zBh82+3E+Q89gebzZjvt5hTSephVUuKrqqZr+VL+dvIxNGkKn8+fT011da984w3RQBt7vb3Fzp07l9132QXfyDFc8O/n8VdWk4qEy486LVLe62Oh5c8Vqhw8lE//9QhP/fAipJT/AH5n++ArsSreMopusxfF9EeNXpDkJmn763GsvtZNIJPSNN4DPheKMlqa5hmqou4yaIeJ1ryrcNgmqRX31s5x0R3Bk7x0m8yORjZSKcYfdChv/qmBP//hD5xz3nmEQqGSUdsRw4dz5hlncOYZZ/TKJC81uWVLH7+/7TaiiQQHfftMgnX1xNpbCxa9oC9a6R2bVCRM/XbjOej7V/Hyz6/m6iuv5G93391r4esvx3nnnEPSMDjuimupbBhErKOtBEupPE11vWuVz7Em2d3NoB0mEqiuJdbZPs422cO2+Z6mnx3KVvoc6djdMpVzC4C5dmQ+BXRL0/wESFQOGsygHXe22gAJkW3ZTKlo6XpoqhmqaToRpX7Mdkw9/VzmLljAgw88sEnCWa6mfUvTVMFi3N3629/SOHEyE4/7OslId4HZTq/ok2AVCiXDYfY64zxGH3g4d//979xzz72b9Zy3NPb//u87vP/BB+z9f5cy8fhvkLBnmJesoNwImmoprJ5KUjl0KA3jtgcYqSjqEPs+FvTDQ9mKn+X0VUxbuzcD8+3oZCdC1ADjq4ePonbkaIy0XrChyhyrzMnAEs6bIJ+mmnXhDQMjnWbKKWcQaBzMr37xC1odFWHl0ju9McvXlxranDRVU0rOO+ccJHDENT8jUFtPOpFwFA45blJ7MYTdYkpRNauvuKrYDROtxUkn4whF4cSbbifQMJiLLjg/23hic5zzlsT+6sYb+dvf7mL7Q4/i0MuvJR2LYqRTyDz+Q05Qe0dTZf1Y08QbCDJ01z0AGoWijLHvaW0ry1W/E3Tnyhq2sKfJtdJpRcomoKZh/I54Q6FcIE6KXE1DXg9u68EcTVUW0VSd2HQ8Qs3IMRx46VWsbm7m6iuu6FEL9zQppLdtjXvz/htC27z+Zz/jvVmz2P3MCxh/2NHWeOgSJqqiaHiCIQI1tfiravAEQtaPP4jHH8JXUUWguhZ/VTWq10e8q5PaUeM4+Y9/x0RwwtFHlaTgbg2qaW+xN990Ez/76U9p3GlnTrjtzyheH6lo1O4+5PCpM41Ie01TXT9WSonmC9A4fgew2JqjMzFb+6dfHVoffa4z1eC1zyOClYKjYex2eIMhYm2tJQKghcR+gZPPXpQOyZu3ZZKOhtn1xJP58tUXue+BBzj8iCP49mmnldQW5QYmlgrgFf6+oUGUwgmupY4HHniAX914I0277M6hV/6EVCSMkUrnSrKRaH4/Hn8QQ0/TtXoFXatWElm3lnDzWtKxmPU61WJXVQ4aQuXgwdQMH4W/qppkpIux+x7EKff8g39edAbHH3UUTz33HIccckjJ81/fOW/K9faEjUaj/ODSS7nn3ntpnLgLp/zpfkJ19URam63Cq4wOyHR+dW4cmSEXWSVRgqbaC6yUJqaepmbkaHyBEMl4dEchRK2UMt6HctXvBD3fQsqNWh7r8fmpHj6C7Dxrh6SWN/lEcURV5D9vYRXS8TiBmlqOuvYX3D37Y75z/vlsP2ECU/bYoyy5otQGUM5/7E2qqJQpuj78Sy+/zMXnn49WXcfXf/NH/JXVxDvaEYp1fprXi7+6hkR3F1+99gKL33qDNbM/oW3JIqv/vWnkLbgiFFSvj8rBQxg8cRfGTDuA8YcdhTdUyaTjvo5+x9088f0LOP7ww/jTPfdyzjnnFG1q6zvnTbnecmv4+eefc9n3vsfrM2aw3SFHcvxNv6eicZAl5Bl3RJROi+UHcqEsTbWXWCOVombEKKqGDqdl0fzRQLVtnVbYgblt2nQvtdnoQA0wvsb2z9OJWJlAyIbRVIuxEO/qYPBOO3PqHXfTnUhw/FFHMnfevB79xEJqZDnttiVoqk888R+OOfJI4oEQp/31AYZM3NnqmpOZKxcMonp9zH/5eR6/+Gwev/hsPnjo76z87CPidmBKCAVVVVEUNVsUk07GaV+2mLnPP8VzP72cR889mdmPP4qRSjL5W6dzxsNPYA4axrnnnsvZZ53FqlWrioJiW4pqWviYbhjcettt7LXbbrw+YwbTLr6cr//ur1Q0DiLe0YFw3so9UE03haZaiu5bNWgINSNHAwwC0WS/i8f10Yv3zwrAtANxY0INDVQOHoqRSjlqkLGj7+Voqg4joYCmWoS1XxZrb2X7gw/nuJv/wNrWNo476kg+sllcpRodbA6/fWOol7/77W/55je/gayo4tQ/3sPoffYn2taajR/5KiqQpmT67Tfzn0vPZ9GM1zF0Hc3rw+O3hi5oPh+q14uieVA9HhTNg+bzZVtYZwYzrJs3h6euvJg3bv0VqWiY8Qcfwdn3/pNxhx/Lgw89xP57TeXe++7LUne3JNXU+dizzz7LflOncvVVVyGGjuTkux7hkCt+gubzE+9oL0ip0iPVtORzcuOwUpogFKqHDce6j+XITMzUFfRiQVexusaOACpqRozCV1GJaZg5UnjhCMwimmpBMzoHTbUc1tR1Yh3t7HnmeZzw27+wZPkKDtx7b/5t13yXMsd7GjJQ+PyGUi8LN5BINMoFF5zPFVdeSeXocVz4z+fY/qAjSHR2YBoGEonH5wMTXr3pOmb+9XZSsSiaN9N/XpSIIjv2yQKDSPV48Xitev7pd/6GWff9DSOtM2jCTpz6x/s49uY7WdIZ5vzzzmOfKVN44IEHiUQiG5Qi25AUYjgc5sEHHuCgfffl+OOP5/2PP2bf713Fd//zEjseeSzpaNTuUVAiy9IT1bRAe28K1jRNhCJo3H4HBEKRUo7orwG5vhb07OhoJOMAUTtytHVjSDNLTMndsxtOUy2LRcFIp4m2tbL7qWdxyt2PkAxVcvK3vsXVV19NZ1fXem/ecib6xtBUnc/947HH2HmHCdxzz73sdMLJnPeP/zJk512Id7Zj2rx5VVPxBEN8+Mi9fPjwPZa96AvkDabMfk6B1+McWe1cNikyU1ngnb/dwfIP38U0DQw9ydQzzufSF99mn4sv54Mv5nHOOWczafvt+PE11zBj+vSiuXTl1qynGoNoNMrzzz3H9y/5HhO3G8vZ55zD9HfeY/Lp5/Gdl2Zy+DXX4auqJtrehqGn2Ciq6abQVAuw1iRVQe3I0faMQcbYwWVPfxP0rVEC29PhxSqHjQrEjRJ5/om338XOXz+FeHubI4ieqV2y7kbnJNZcVVxGg9pR+LwJl+WxEmtySaiugdWzP+H5G37CyvfeYucdd+CmW27l2OOPW28+t6dpqhuybjNnvs3tt93GE089DYrG0T+/iSlnXoA0DOJdHWSokgC+yiralyziH+eeTOeq5dkpMnlKqbBQsKCgMLt8BQrNNHRMQ2ev877LYT+5gVQ4jGkY+Kuq8VdWs2bOZ3z+3yeY9fijJFcvB2DciOEcevjh7D5lT7YfP57hw4czaNAgqmtqSu7vLc0trFmzhlWrVvLlvHm88/ZM3p05k1U2XbZy3AT2OPFb7HjU8QyeuAt6PGZ387XN5oKJuXlaV2TCuKLkgmxOrK+iirVzP+fJyy6kfenidxHiCqRsxap53yIBuY2S2T4W9GpgsL0gf1c1z9FnPPIUo/feN+uHOvIZBUy1TP5Tlh5svwFYiURRFKvrbCzG+/fdxRt/ug3iMQ498EC+/8MfcvjhRxAMBnr1JWxIXXc4Eubll17i/nvu4dkXXgRg55PP5MDvXEbTjhOJtrVagxkyJX4CVK+PVCzKRw/fy4w7f4OqeRCqmjdLvqePddIG8pYnm1eW6OkkY/Y5gJP+eA/eYMgykyUIoeCtrMQbDBJuWcfyWe+x4J0ZLH5vJl1ffQmmVftQU1lJbU01VVXVVvDPtDdVRZBKpejq6qKtrY2Y3QiEyhoax+/I+P0PYtxe0xiy82SCtbWk43GSkQhSNxw+M45puaL0Bec9Xxiv3XxYTzBIpKWZZ6+5lCXvzlgiFOUSaZoLsKo/2/uLoPd1vk/BKp6pB5qC9fUEa+swdYOCUq/iSazOW1aUoan2Epsx/6PtbXiDIfa/+Idsd9AhzHr4fl577AFemz6dvXbbjeO/fiJHH3Ms222/vaMlcvlNsJyQt7S08MWcObz8wvO89MLzfDxnLgA7nvAtppxyJqP22hcBdK9Z6ZhXlzttzecnFYuz6pMPrc9RlDzNLQrux1JKvWTWKH/4J6ZpoHp91kDBLH3bJNndRbK7G08wyA5HHMP4Q44g3tVJx9IldCxfzLrFi2lbuZz2FctY19meNylF2o1AanYYzdhBgxk0bnsaRo2hduRIaoaPwhMMWdNeI2HCa9fmLkIpuIiSE1EdG4HzOxeFtRWbDysNg0BNLcH6RoAmEFV2FqkC6Owvgbm+FnQBGEKIOillY6i+CV9VtdUsQFD0BWwsTbW3WCEE6XgUPRln8I47c8JNv2fKaWfx2VOP88F/n+D9667np9ddzy4TJrDXvvsyaZdd2GGHHRgxcgRNjU14fT78fj+KopJKpUgmE0QiEVYsX87q1auZP/9LPvvoY95/5x2WrVsHQHDM9uxzyRXseMiRDNl5NxSPRrK72+pcWqDBFI8Hb2WVpR31FF2rVhZvKIUp4GJ6fomJqKX/TkWiRNespn7HiXh0PavVM69Lx2PW+GBFRfP5GLLLbozcc29M00RPxEkn4tYU3MLsiKKgebyoXi+aP4A0TfRkAiOZtCbxZOr2C3PesNmoppsLa5omnkCQKmu0VQgph9qvzpTCuoLuSEVUATWh+gb8VdVW//ZsO1aHtimcZV20GcjiMpyNwErDJN7ZgeLxMGTirgyduCt7n3UBKz/7mAXvzGD5F7OZff+DYOr4PB6Cfj9+rwe/z0dDfT1ej5eu7m46u7pIGzrReIJoPG69fU09g8bvwJTjv8V2+x7I0Em7EqytRQiFVCyKEUnnzEkHM89bVY2RSrHqneksef1lFs+aReviRfaEmR66Bq/PyyoM3Alhd02F9oULePGKS5h4wtcZd+zXqRg6gmRXJ0Y6mRvoKCXSNDBSBkYqRbIbhGr15lc9XoRX5J+eyEWs0/E4yWgETLPoesv7ILK0yd1HWGlaF2YLOlKaQ2y56lcMtr4WdL9t5oSAymBdPf7qGqLN6xzmk8xp41K2Zi9oqhuHtVoGJTo7EKpK5aDBTDr2RHY+7utE21vpWL6UjpXLaVmymLali4l1dhANh2nr6sCMpvEEKghNGEkwEGTo8BHUDR9J45hxVA8ZSvWwEXgrKpCGiZFOWVRcp9/l8PEVVcVfV0/nwgV8dt9f+OSpJzHCXUybsgOj99yBGR98ga4beDxKUW/6DQ+lCFKJBCA55bj9OGD3HfjzfS/w3K9+zvavvMzU//seIw86HFMPkIp0l/wQiQQTDDPd+3td5Hq1CUp9VyV2rhKf2ydYe9ZAReMgNI8PPZ1syFcxrqCrQABISUQTSBGoqUPzeO3FE3nrnvsyStBU7dRH6Rz3pmIBW/voiQRCVfEGKxi26x4M322qda7SzO4bmRy3IhTbd7Y2EGvKqcTUdVvzddu97c0cl7agMEfRNLxVlax6+w1ev+5HrFk4j0OnTebisy/gqIMnk0ikOPzcm3n3o3mkpIbHo2X3rrL9Fgqj7HaIQzcMpGEJ5gWnHs5frj8XrbGa4w6ZzN8ee4O7H3iRf553GvucdS57XnYN/tp6Eh3tRectSn5wwdDCMkGwgYjN7K5VQ4fjCQTQ08lB5DdaiW7rgq5kz0HKKoBgfZ1ttjv9Iueiy4IgnXDIrChxI29erJQSaeqYaR09mcjdJIrIJWRslpMuba/ExiElEjOX6stWW5GlQOJI3SiKwF9Tw/I3XuHFH/0QvbOFX11zFj8450g89VXQHSVUXcGjv7uES35+L8+/8THpZGbIoQaqgiIESobC65gzb5pW00zM/A5Hu00cy7XfOYFvnrg/6AaJNW2MHDOYX11/Jsccujs/+81jzHjwbtbOm8sB115P0+Q9SYa7kel0QcCzOHRSivJJniYdoFg7rR6orsFXVUW8u7PeVmCmbalu84LuOAfZCBCsrkWaRgFLzVI7QsiCvFDuixBZ84uSabQthQWLHy4M6zFZoC6lLGRHlaBAOmJBzvigp6Ka9q/m8cYvf4LZ1cYfb/4up556EMRSJNZ12O+dZPTYoTz3t6u574np/OuF93nro6+IRiKgr79RmdA8jB0+hH0mb8exB03mpCP2xNtQg9HWRSptBQPj3TE0RTDtgJ15docR3PDHp7njrv/w7Pcu5LAbfsOIg48k1d2J1PVc/lmUCQKUu95slmBgYk1Dx+MPUNE4iM6Vy2uFEPVSygj9qAlFXwq6s5dcSFFU/DW1mIZBT1TTkjRVKR0WVX/AynzDoCD11TMF0prfZSQTzPrj7+hcsoAbfnoep55yEITjxBMpx2kI4u1hAkEf5559FGeesC8fzVnKnAUr+HLxGta2dtEdjdPaEUEATXVVBAM+BjdUM3ZEI9uNGsT4UYMZPXow+H0QTxJf02ZbJTm/2TBAX9dBoCrIr39yGmNGNPGzmx7kpR9fwZE3C4bvexDpWAQMc6Oud1PWqj9gTcNA8wcI1TUA1ICoBbnU9dHzt04VqNZ8PvzVNXZqpVRKoweaqugtTXVrYjeeAumrrmHpKy/wxbP/5aRj9+fCUw+CeIpYIlWcShPCEv5ECq+mstc+E9lr30kQS6CnDQzDJKXrCARej4pQFDweDfxeUBWIp0jFExjRhHVKiijQXMJWaoJYd4xgwMeFZx2GIgQ/uuE+3rzxeo7+3Z9omLQryUzl2gZeb/lU38DASlOi+X34rWGeNQiqkP2L2NIfSC0K4FUUFc0XKDExdXPTVLcCVoqNpkCqHi/peJwv/vNPKj3wvbOPJFBfRTwaR8kaFzLP2BBSIqQkrRvE27tJtocxdQNNVfD5PFRWBKmo8OP1etAUBVM3SHVFSbR2EY/EMA0zO2e9aAC1/d6Zv+PxJCRSnH/WYdz007PpXrKQWX+4jWRXJ5ovsMHXm//cwMRKQ8cbDBKsbwDwIqnEKgQL9RP3uE8FXTqi73WKx4O/ssoqsFgf1XRTaKpbA+scJt7LSZ2Z57RAgO4li1j2wSymTduVPXYdg9ltT9gVIj9dKCl630zNfTJlkEimSSRSJOJJEvEU8XiKZCpNKq1jGGYumFhArMnP9OV/rshYEMk05516EN866SC+evVllk9/DdUfyF+cDaaLygGJtdKgHgL2zHnLfEeQ6560TQu6UxV6FY8Xf5VV9dVbqmkuVrLhNNUti3W2mu7lpM7sN6LQvnghejTCPntMQKsKkUyms+chRBG4IECU/1z2sc2KhUQsiRLwccGpBzO4vpJ5/32SdDSMoqpsPF1UDFAsSGngr6qym3qYjbaAb5bJLANd0EPkOnFITCNbkdVrqqkd9dwomuoWw+b8vA2nQFovCa9egV9TGDuqEXQj18AhmwwQVqon85h0xPvt55yv3yJYAWYkzpRJYzhw351ZM+dzupcvRfP72Np00f6AlYZJoKYWb7ACoM4WdNFfIu99KeheezUrgZC/uhrV67F3ytzUylx6Q5TQPA5KambB+xyb8dGdamE9kzpl/pTPZHc3ipBUV4ZyzSNkXngwyyt3Zu1knraReYSrLYE1dBPFo7LT9iMwk3HCa9egaN4Nvt5NWav+gpXSxF9Vg+YPZJSYUibct0366KZABIGAv7oW1a6Ks3ZS8ihYedNUC/dJ5zTVPseSa0UtHb5cT5M6s1Roq6gm1NCIbsLa5g5QlNzbyIJ8fPatRXaKrFMTO4PFuVPPaaJeY8t8bmaTM6UE06p5typ0enu9heUFAxcrpdUjwLJoqLWqlpD9xXTv6zx6pgG3lKbhiGiW2Ai3IE1182NlPnYDKZBVI0aR0E2+WLgaFKvtoSlzzTSkyE/ZOwdYOPcgVVXweq0qORSl2MUwTIy0Tlo3igpBMqcqCy4DR/hCVRXMlM78RatRvD5CjYMw0+mCUcRbhy7a51gp8QZDqF4vWCQtxXGPb/OCXqTiZZ65vHVpqlsCu6EUSDOdpn7CRGqGj+TVNz/mypVHUz+ollhXtCDFm4/NnIYqBB6fBxHyg2GSCsdY3dzJijUdxJMpDN3A69UYMaSOwQ3VVFUFUatDEE+SSqTsmhdJ0RR6x+dmhF+pDPLBe/OYPvMzBk2cQu247dHjiT6hi/Y1ViLxVVWherwAlQgUJKptxse2ZUEvKfmi2DHMBcBKTlPtLU11K2Pzxmv3ngKpx+NUjRjJTscdzxu338Q9/36Lqy/7OgGfh0QinS1oyXsrKQn4vRD0gSkJt3bxyQfzmfXZEt79+Es+n78Mjy+IRCEWjZHWk3hVhaGDapm623j222MH9tp1DMNHDQJVxYjESKX03HQSu847e9amxF8dJN0d4457XmRte5RjvnEynlAFye4u8ktI+z/VdHNgpWmiah58FZUAQSQ1WHMFvdu6RnfKtpR5fbvyi1ByuWPhlDw2jKa6NbFOTbthFEhpmqQTMcZ/7ZvMf+ZJ7vjLE4wb1cQ3TjuYQCSBjKdygUBVBZ8GXg9mR5jZHy3ghRmzefXtz/nwswV0J+KM324Htp84hTlzv2DFiqV8+9RT2G233fn4o49ZuHARf3n0dX5//7PsOn4Mxx26B988ak8m7zqWQG0lROKkk2lMM5dWUwR46ypBN7jxD0/xn+ems/PXvsHoQ49ET8Rz9f29vN58URrAWNNiG/qtXLoXZCD/hnA1usMflD0+1zc01Q3F5pfFbgwFMhUJUz16LAf+5AaevfRCLr7mLyxf1crJx+xFY10lqiJIp9N0hGN8uWgN73yykDffm8e7H80lmkoxetR2nHTyqZx40onss8/eNDY1sdseU1i+fAlnnX0WRx55BADpdJpPPv6EZ595lv8+8xw3/uVxfvf3ZzjhyL359vH7MG3XsTQMrQevZtWxKwpoCmsXrObGPz3N3Y88z5ip+7LXD3+M6guS6u7c5miq2SIjrNbPqtcH4AdRUXJ0q2u6l3ODSlBNC3ohFc1P73NsuZumDAWSfAqkkIJkdycjDjqMo275Pe/8/jf89KYH+dv9z7PThJHUD2qgO5Lgg8/m09zWTTxpMGzYMI494USOOfoojjn2GBqbmrKf2dzcTHdnZy5FaB8ej4epe01l6l5Tufqaq3jqP0/y78ef4OnXZvDK21+ww6gmDthjOybuOJKKoNVldtHyZv711Nt8Mn8xE/Y9iAOu/zWVw0eRDncVEHx6f72bslb9BSsNier1EqqttQVdhrAKZhR6bAG0jQl6cdlxL+iiogTVFNEPsLlSUlFk7vWOpmqmdZJdXYw5+gTqd9qZr55+glWffcyH65rp/OxT4uEuDjhgP75tC+qeU/dkyJAhJde2vb2dsD1soa6uruRrKiorOePsszjj7LP43e9u54orLmdZfSN/ePw90t0vEAz60HWDSCrBsLETOOyqn7HDyWcSqG+wyCzOZdrQ692UtepPWJmnCTTXdC9jnvdmIur/HE3VUXiRR4EUAmnoJDo7CA0dwR7fu4LJiQTRdWt47OJzEIkuHnr4gSLhLjVGqrOzk+5wGNXjpaKyouzrM27IpEk7ATDq8CP52nFfZ83sT0nF4wCEaqponDSZmnHjMXWdZEdb9ssTchOul4GNtbrb+vDX1mdu5xppEVtc072csVuWploYNCnMZ/ZENd3q2F7SVEWZAJAjtJ6OhEEIq4tJbR0d7W1MHDOmpAYv5UqEIxFS8Th1jQ3UFgxUKNWe2qtZlckpw2DIPvtTP2kyRjoFCBRNxUylSIa77aaOSnnfa2Oud8BiJUJV8fiDmftYpR+VwPYHQbeWVlFKm+1ZLZr5VZbxg0X/wUpR/kaSBfOQxAY8JyXhdWvRm9cydPLORZq5XLygtaUVkISCQYKhYAm3KR8bCAZREERbW4k1r8PUrcktlubKjLYXxb3u5Ga83oGGzdIksjR0lfKt9Lf60V/YaxjpdK7GuiRdlE2gmm5lrHAmDgs2AVFqE5Cln5PFm0+Gr6+q6no1eaF5XlVVRXVVdVFQrhBbVVVNKBAg1tmOqaezaT+rKUjBAqzvnDflegcQVpommtdLyOKkg0VV7Teme18KugmoUprdQCTa2oKeTCIU9X+Mpup05DZtyqewBa4nwS41xTWdttpPaVrvxnYHAgECAT+JSARD1/N46ltqMulAx2bGemk+n1OjF95E26SgR+0dTwfSRjpd3Bhym6Op9kyfNA0dXzCEEqqirbW1x7nszo1grT0VRnW4Rz2NMm5obKCuro6u5rWYqSRCVdgWqKabis20+7YP3eEea9uyoKdsQReWi65aTQtMtnmaajmsntbxV9cSHDKUlcuWEY1GSmr3zDjnjBCbpiyp+XsqFMpU08s8O/V/m2q6qVjTNFE0T2ZNq2wB92G1f95mBT2zFRpAytB10rE4QhXbME21wPcrwJrpJMG6OhpHjGT5unWsWLGyh3RlrgWWx+MpCjX2NKs8u6Fla903/pzFNoSVhk6wusbZfMLXXwJyfc1HF7av3mmkkkTbWhGqmt1Bi9NWDvNYOlJbji+pf2EFZckyFGwIRc8VY03dwBMI0jh6LABzPp+z3gAc5IpkpJQlny9+rIc00gae8zaFlVb2SLFcJNlDGmmb0+i5hJST6pndJfMpoVniS343BFvQ+hO2oPZdFEpNOQpkiaRuwY2lJ+KM2H0qAK+88vJ6tTlAvS3o6XS6xyh95jFVVVFVFdM08sv1NuacN+V6BxrWLjqSORNIkMunb/OmuwQS1rDBLivqnjEdC/KUObpoQVlq3u/9BJvXFbpg+mHJZSjxXAlsKh5j+O5T8VTV8OzTT7PODrTJHvgTbe1t1r9tbUTsUthy2h8gHosRj8fw+PwWkUWySee8LWGlaWQyI2Z+WmbbFXThiE52GHa1laIojlQVuWhnXsWSKChaKJEC61MseTRVNoECWYg1kkmqh49g4te+wZqWFv7x2GM9ptsWLV7Mr274pRV9X72Kx5/4T1lNnhX0eIJ1LS1UNw1C8/mtbMgmnPM2g5US1evLdJmpJtMXsR8c/cV0NyXCTk2Up4sWmU6OkTnlNNrWxxbEqovIEk5DpgdNUQZr6jqmrjP1tHMRXh+//sUvWLBwYcnz//Cjjzj+mGNYsmQpk048BW91HZde/F1mf/55j1/GAw8+SDSRYPC47fFWhDB1fZPOeVvBGuk0gdpafFU1GUH3uIKekwoDITqkNIk0r0XRNMpHggopbr2hmvYFtvxNI0tuCBYFUpaM3xRgBSS6Oxm80yQOuvRqWjo6OOmEr7Fo8eK8T/7HY49xxMEHMW/+fPa7+ApO/usDHH7N9YRjMY489FDefHN60dm2tLTws5/+lJ/85Fr8NbVMOvbr1g1s6Jt2ztsS1p5sQz8qf4X+MXsNJHHLvykTqNzWaKrrw5qSVDTKPhdcQsfKFXz62P3sPnEi3zzlFBoaGnnrrRm8O2sWCIVDr76ead/5AalolD3PvoBkdyev3nw9Bx98EOedcw7fPuMMTNPgqf88yT8feYT2cJjKYSM44aY7GLHn3sS7OvOHDf6vU003GduPJiv2I0HH0uiEkRDraEPRVAcNlG2XptoTFkgnYniDFRz1018xaPx4pv/tL9z7wAO2neZh9P6Hsv93fsDoffYjHY+TjkXwBENM+79LqRkxmtfvvJV777+fe++/P3czNAxmn9POY/eTT6d+3ATine1gmjn75X+carrJWGT/lPI+FnQDSNtLFQFIRsIWi01sQ9NUN5I+KRCkYlE8/gBTz/kO4w89mub589BTSaqGDKNp/I54QyGS4W5MXUeoGulEAlM32OnYExgxZS8WzXiDxe/OQE/E2f6AQxi1zwHUjhiJNAxibS35wcfNcM7/+1il8DHXdLcFPQ5UCohJSKeiUU8qYs3vMrN+IeSVHLIJVNOthZViq3zFQgj0ZBwjnaJy0BBqRoyylIppoqeSxDNjjB3176aeJtbejr+6msnfOo1Jx38d09DxBEM2zzycZay5x4Y6onmNQYUr6I5ou/1vCkimYzFPOpm0tLpeoDWFo/o6rwzR2aG1sMKpr7AZM85ZNykKJiMUDIGQBVojjwffM1YaBqloBGK9wNo3ZDoaJRWNomqaNWO9o528iB9b9pz/J7H92EnvDwUzikTGgGiiu5N0NGZF3vNy1oWVZpnnhGN4Qgm6aF9hM6yyvNLZ/IIMaVMbi0iMWwtr35qmrtvTVQbAOfd3rIOiTD+apNpfgnEgSQBRPRFHTyXxhkK5lEZmRnn2b+FQTM5gWI55Jvoam43YZ7aBAgacw88u9P8zhJIMU8rFDiCslAihZF7rt+XLzaPbh4rFTQ/HO7tIRcOOXLpVsy3KNf8QIn+oi3OaSB9jC6MxMktjFvZgw3wLMa+poxAudgBiDT1NoKYOv1UwU0c/qozrD3l0BWs2VSwVDZOOxy0GW2HsUpaegSV66v3VV1jpzK070zIOHzAb6MtMM8uZhHkRfhc7cLBSoqiqlSLuR4G4/uKjC1vQw4lwF+l4HEXVSgud6GH2RXEnoL7H0ttZHaIkyMUONKzNXjOLCO3bvEaPY+XSdSAsTZNkJAy5Tpr520GBb1z4AkmJfHdfYfNM/jK7gbPJhXSxAx5b/IJ+o9X7WqNnhFwVQnRLINHVadH8nCZUhk0mHCo270vJGMrOWeZ9iLWDNNmgjpQl6I2yrNaXNq/ZxQ5gbD87+kMwLqM3uwDine3ITNmlyN8pcwJVovUuBZtqH2NF2U2eouiuKKcGXOyAwvbnEqP+M6lFEgZIhrvtxc1pSZkJhpScW13gDhURDPoAm3l9ifRa1rdzzB4vwpKzClzswMHKflxNqPSbMxGiEyDe0W6b7rbZLGVef4ciC0kWM8YyQthXWBxuXcHI9aIITa59fI4iKaVwsQMU62r08ma7teEIupAYsc4ONTfWRuSKz2z1WLRpivwRts6gWV9hydRU2TlZ5y4hHBuFLOHfC4fJ6GIHGrb/Snp/afesSCk7gHS8o6OYLeZc5xL+k203lWYJ9gE210syv7Amb8qLEPnmYt71Shc7QLFWBsYV9MLDxMqhg5RxIJqOx0lFIvlDF7N2sCyoVivYDESpWYhbH5tPX5dFNfAijwwhi30DFztgsdkJPq6gFx0pWzrSQHcqFiEVjSBUrYB1JXNDUsrlPJzfUF9ihbMirtw45KI/8jWHix2YWNd0Lx+Gw6o6SQHd6ViUVDRijWcqsIGKilJ6spH6GptHZXfkWQsCfuU8Oxc7QLGuoPfop0sgCYTT8TipWNQSdErtrD29RYnX9QW2lInn3AiEIKsLRIFOEMLFDmBsv+oI2Y+i7k6tngS6kpEwyXDYFnQnXTSTttoYqulWxtrRnJ5pqgLKUSBtK8LFDjCsEOUqZV1Bdwh6CujWU0n0ZMKa2OJMc5Xony+EyBO6fBO7b7H5XYUccT1ns0Gc8R+ZHaVUlMd1sQMC6+bR1x95zzSK7Egn4tbEFmd/d5em6mIHAjZzQ7jptZJHwhZysBpQkAiHrekgJdJYLk3VxfZvrHB7xpVZvQyDTcPR9tnQ0yiFTfiktAYqlOzISulihb7COuM2BTna/HunvAZwsQMMK6wOvPaQRekKegkD2anRU5EwpqHnimaydFHBxlNNtyJWCKtgrtcUyPznNow+6WL7DdaUqD4fms/XX2Sr3wh6YZPkCEA6Fsk33fOoguXoouVa8vYN1qVtbntYU9fxV1Xhq6wCq2ecj1xLczfq7th04kAyEQ77TMNAEUp29+wdXZRiqmlfYF2a6raJFVYXWHsb8GE1PnU1egmJCQPxZMQOxili/XRRNoFquoWw2XsDl7a5bWGtG8W2AkxE/6mf6U8aXYBIgkynohGkriP8fkdOswxdlE2gmm4hrEtT3bZpqg4Gs9JfgnL9SaOrQtAJRBPdXcXBOJem6mIHAFb206qZ/lLrHgEMKdEzwQvTMPPSWy5N1cUOFJpqCVmXrqBbR8qxIO3pWJRoe5tDo7s0VRc7cGiquQ5JmPYbaK6g5+96JpCWprQWy6WputiBhgUU1ZPZITJR92BfB+X6VVIfpAEkjXSKdCxakKt0aaoutn9jJSBUlVBjI4BXCKUee25BXwt6f2KvZfrHtaUTCZLdXVZ6DTkwaaq4NNVtD2v9pno82MLtddzb0hX0wv1UKCiKmlu6gUpTFS7lc5vCZt4gv9ZdQN/T1PuLoJuOfw1pGhh62iFluDRVFzsAsNbvNqklcz+bgAcYBnQ7As+prSn8fSHoqiMSGSo4DwPoSMeixDo78jvBiuKgdqlIacnn+wrr0BK981zIezMXO/CwUihogYAd/5IC6HAE4yrtuJhKjp6dxCZz/S8Iuh+r9tdjX7QzEKjbAh62/+2SpmmVwDoLjv6np6mKTZjy6WL7E1ZRFEL1jZlnDxBCtCKIIWkD2SUhipRdQACoITc2PIbF9UgNNEFXbQEP2ppbsXeuLjtIoQohQggxCESVtQlIQ5rmkExVWb7WtKaaFpEPRK7iOFeqKPKIJX2BlXbKRYgyXSscJoDM61Biz/BysQMPmx2wmcGYpwLHI4nbQrwSlIWKqs4B5piGMQ9k2JaTBlvpRYD2zW3WbylBrwaqbIFOAZ2ALoQyRsIOSKaAOV5KOQQp64AKh6qsyAp6ARcwv/WeKD/VVNDDRNStg81+/+uhQApKUyAlLnagYtNpq2HSiYdP9Ywa0lCzcGVLzZqWTlY3d4xdu671ANMwsYRZfCJU7Vmk+Zo0zcW2aV9nC34HmeEm/VDQfUCtLeQJoBmoV1T1aFOKE6WpTwOGA3j9AQbVVzG4sYahTTUEfF4UReGL+cuY/dVyTNN01Jm701Rd7MDACkXBX9cAwNH778JFV5wCa9oxdINlq1r4aulaPpqzhGemf1r30ezFh+p66lBglap5HjFN81FpGkttYR8GrLVd2n4l6AFgiP17i1BENainS1M/2zSMvQHGjhrKwXvtyJRJY5m0/XB2GDuEgN+L36uhqirUVvKvh1/mlB/eSbS1FaHYTDAp8nq35ctcMV1UZCex2l/CVsaWDM7JAsXvNAQyqiGTtpHCxQ5ArBWrUfAFrBhzW0cYkmn0VBpFURg7ZghjJ47mqGP34coLj+Ojzxdx3xNv8fjLHwzr7Oy6Gviaomq3m6bxb6QMAIPs0+juL4IeBAbbPkZY9XiONNLmD0DfO1RZwaF778RZX9uXg/aeSP2YIdbKJZKQ0sEwMU0TaVr+TlWFFatLp1K2ryPyUh0uTdXF9l9sfm2MbphgmKR1AzAQKR0ZiaMqCj6vxrQDJjPtwN24evYibn/wJe77z/QdErH4XYrq2VdK45fSNLuBJvsNw30t6BkhTwihCEVTrzbS6csQmv+Ew/biivOOZv89JkB1CBIpkmvbMQwTRRH5iwX4kykStn+jKErO/RHFu20hNpPvlqLAn+oDbM5dL0i/2DeFtJ8TZTvL5ob1udgBhLVuXCqbrKj72tZO0NSiQI4hTRKJFGYiiUfV2H7iGP5844WcdPgUrv3dv/jgs6/OEpqnScD3pWlGbWE3NyUNt6mCHrCFPCmEoqOqNxrp9AXDhzTyi0u/wbknHYioCmJ2R0mu67CFIz8VlR9dF/mCJQujnw4znlKReRsjSkVOtx5WFNwQhakb4XxOlsrRkqXHutiBhRWKgsfnt4NyOo5KGksnSPv9hECRoBsG6bYufB6Vw46ays47juLsK/7MS299cpSiem6WyB+CTNtR+aRtNW/wsSmkFhVozNgqQlV/KfX0BbtP2p7XHvwJ5513DEJTiLd0kkzpjpRDIScgf8tU7SKZYhKBS1N1sf0fKw0DRfMA0BmOQSyJpgrbAcil36TjPhFAKm2QaO5k0MhB/PPOS9lnj50wjfQ3VE29BEHSSj9TvbHCuimCXmGnz7pVj/cUU0//34hhg/jnHd9j/K7bkWzpIh5N5tV7F2lDh+mbWctEyjLdpWmWLzvN2wDKmVYuTdXFbn2sNAy8wRDgIRKOQjyFqip579VTKi/R3EH1oDr+9otzqK6uwtD1CxVF3c3Or9v1JltP0FWsqp6YoqgTTUO/0uP18vBv/o/tdt2OVEsHpimzZoss0IJ55E4nacQ0aW7ttPz16iqkKUvsrJRZ8oFHU838vTH0SRfbP7EZqioeH/FkGlM3corCJsTk3SaOuouM55pq72bS1B254rxjAOok4uv2Dea1U9hbTdD99o8hhThRmubQi087ggMOnUKquQPDMO1ghaMnepbxI+2otFNMZNYU6gpb8QZfRSUSE5nxbexX58mQzBc0KZ2OgLWD9gk2k4O3BznkJnnYr7UjOHkmXMHzLnZgYo10Gl9FJd6GRlpaO4hE4whVtQN7Mg8rhM14k+D1ePDXVREI+DBME+IpzjhuH8aOHoY0jH2FoowgN7psqwm6AuhCiMHSMPYdPKiB8795IKQNDN0g4PMSqK7E69HsUlDhKCEUVmDLEcvIRi4Nk9aOSC6ynfmvTPv0wuZ8Im/nFUVR062JpcQ0VWTmtQ4Gs8hYfg5WVMEQCBc7gLCAomoomoZpGFbhV7ZCWuTXxtsPa16Nta2dPPPce7S2dxOorwIpGTOiiR1GDwFkDVbVnNzagm41iRCiHuSQSduPYMKYIZBMEaiuIBxL8PbMz2lp70bTVHuzs8gfhVWhGUJIZlkjsYQd25IF6TWR78/n+c89DLbrC6yUOVqj829Bfl2s3Qs8ayRm6uNLvZeLHRBYU0/jDQapqK2hubWLrnAcNNW686UjsGt/hhACT2WQNz/4kq9ddAvf+MGdfPnFUqgI8OXiNXy1bA0gYkiMjfXPNzUY57FyeyK9Ym0bzW1d0FhDR0snF//yAfb/9vW8/t4XeKpCeXIjCiQj47N4/F7we1i5rsN6XFWLhc6dpupi+znWlBLV68UbDBGP61RW+KEyaPvfBfP5Mn8mU+y18zgO2XcXZrw3h32+eR1XXfs3LrnhARYuWY2iqe9LaXbY/vlGafVNyaP7pGl2KKrn3fkLV479/q8eYr/dx/PHR15i6Yp17Lj9SHaeMBJS6WwwLteZRVr7owSfV0OpsqrhZn8wn1mfLQLVR7C2Pkfgd9JFSy68gy5KD1TTrYnNM/nXR4FkE+iTLrY/YaVpovkDhKqrWQvc+8R0vnfmkfjrqkh3RUnrhrPWEyklyWiCcWOG8OQffsjf//0Gv3/wBW7729OWJtY8b0tD/ze5acOJranRk1jccU1K43FVU9996uX3uPLmB2ltD3Px6Ufy3F1XMmnHUSSjiVyVmMPfURVBoL4SRVN49ZUP+e5Vf+HE799BW1eYQEUI1aOVmGpKHj205FRTUW4i6lbEiuJMQ0+qvmiIpxAudoBipa7jC4WorKnGBK66+VGOOu8WXnnlQzy1lQRrK1EUYfvuufGd8Wicquogl//wW7x8z4+oq6sFWC0N/W9SyjZb0DtsudtqGj2NxSuvlabZbEr5Z2B0qKJiyGv3/5ip+06CRIpEJG5pO5kTciEE/qAfqkN8MWseN/z5SR5/+QOMVApgFeBRVaUJSZ9TTTcHTVX0wINcHwXSxQ5MrDRMVK/XfkKumv7+nOHvfrqIy845kh+ceSRDJ46CrijpaBLDNLP96GKROMHqCtJpg3giCbBSSrnSVsitWHRvtqagg0WODwKD7ZNZZpjmEL9PA7+XWEtnNmAlhXWmPr8XaiqIr+ng7/c/zy/++B/aOroB5oN4AcEnSPldTzDYFKity5ruLk3VxQ4krGGkCTU02TeG/JdQlEgqGb/gN3c9NfSRp9/mktMP56wT9mPYuGF4NBXiSdANqAyAovDrvz1DPBZDKMoH0jTD9o3WxkaWv26qoCeBdXbYX0NRP0nEYnvffv+L3LffrgTrqyGZshZIU0EVpDoi/OfhV/j9Ay/w/qdfAcQUTXta6vrzErkaScB+LxSPJ5vP7guqqUtTdbEbi5USlFwwWZOm+ZoQYqWiaieuWtt64LW//UfoD4+8ygmH7s7h+0xiwpjB1FSFaJ7TzQNPzuCxZ2YiVM8qTP1FciPL4mzCrPVNEXSJ1T0mAQSFNJ8Tqnb8/U9MHz5iUB1nfeMAvJpKKqmzpq2L19+byxMvf8Dn8xbbylJ9VxHyCVPX59qmiWa/X4Xm9eINBB2tesClqbrYgYKVukFFQ1Mm+FxpxbLkckNP/0kRyksm4rA1a1v2+OsjLw396yMvUVtbQ2VFgNXrOtBTCVC0xQLzt6aUa7GqUDtsxUpfCDq2YHYBVVLKZiHl7SCuuuHPTwx+4OmZ1NdWEE+mWb6mjVgkguVjKHMVVUw3DeMTUxK2LyQCJARClUiv6vXiq6pyNNJn4NFU7T5zJSmQ9nOicIqn43pd7ADGIlF8HtvxkxkueSWgmdJcACxBiBdUVZ1g6ObYjo7OQR0dnZW2hbsQw3jZNOUSrF6La2wZoy8FXdq+ehUwyDSNjxRFuVGiHbd81drhy1eh2FHCDqGoi5HyCynNxaZB3BZw3Q7A6YAioR7war4AQlEdJIMBSFPtiQLpfC5rNcgSPr6LHYhYaRr4K2tQvT7MZLzK1sZp2/SuAWqQcrWh64uxqN6VWHUpSVPXO+3XacBq+yfNJg6B2ByNJ1L2yXgtYTe/AvMvCFFjm+QSKaPSNOL2yZr2ia+1ffwuLAH3g6wAAv7qahRNzZFaHHRRUVIQnbtuYSfXPsI6u8CWshJk7rrKUiBd7IDEStPEEwihaBok0TIZNPt+X4fVEy7TQDVpu7/S8ckRrH6La2yc2BT/fHMJeqYv9UpbezcCPqTsKHidYV9AxI4gdjsCDJlJqgHA5w0GURS1iNY34GiqGbOuJJtN5tVhiDLZOhc78LDSNPGGgpmAXGZog2kLdcyWAb9tmnsL3lq3XxO2lajY2Nz55hb0zPWG7Z2pzb441f7JDE+M2xeYcpgxzlFMEovjHgzW1KJ6vUjDzHd6ezwFCmKl9B3W6bjJ0huBdERxhSzDnnGxAxIrTYNgbT2q14d9T0tb1jSHckvb8qCQK1yTDrlwyofsD4JuOu72tO2zd9kn77R7TIfQOy8q+7uASglC9fkRioI0dMek0v+9aapiE6Z8utj+i7WJzZl7xGP/6LbFmplIZJbWLnl+gslmOjbXfHTnDmTYAp8q+EnbF+t8rfOiDGn5LMJfXYvi8WY7w7o0VRc7kLDSkHj8fiqamgAqhVCqC4pdnMrPKPgxC5TgZjk2Z1/3jLYWhenIgosrjB4q2aCd3T3DV1GBqqmkMqQWd5qqix1AWGHTTxXN67yTlDJ+31Y5lC3wnrKMryHLXGBmAKNh+/b4KqvQNG9+MM6lqbrYAYKVSBTNgy9UAbnZgya9Gdo6gAR9Y6wK1Rb2GlXz4A2GMA2jeO+zKa7Fe4XMLrAQZfbNrY11mvzZhmAlKJCUn9nrYgcmVpommteLv7rGUmTCFXSnBeAFKjz+gCXoplGaLsp66KL0QDXdWtgNpqkWsJ82iD7pYvsj1vLpza1uovdnQXea8LWeUBBvyNboZemisjhCVqiF+xibjcdJ8lsJ590MsmQwI29Sp4sdcFhpmmg+H8G6RisYh6hkM+TCB7qgZ85BBYKeQBBPMIR0mO4yT5OuJyNRgmq61bGO9Ix0GgMiXyMIR3ENhWOiXezAxUoQmoY3GATwIDauRfP/okY3bI1e5wtW4KuotH10m6bqDILKsqq0wNrqO6z1t3D0oRDZJpOFXeAzlMfMZiJd7IDHSgBTYhp6mUhe3wTC+oOPDgIvkgrNH8ATCCJNK1PXV1RTl6bqYjcaa5vuofqGjDKtYjPnxQeiRvfZ8uIBaj3BIN6KijzTvZAuWjJAIoU9o7qcM7X1sDl3Pb+wxtkjDCHKNpRESBc7oLESRdPwBitwuKWyLwNzfS3oClaeUQohQoDmq6hC83hzHWCzkWx7cQsq0vKE0tGjsS+xRdNUC9IveZM6S1XcSBc7kLGZFxi67nRNLX+9j2Suv6TXTBC1gCdQU41QCtJT7jRVFzvAsNKUeAL+jAWYYbD5sNLI26SgZ1aqElB8lVU4OjwUrK07TdXFDgysaeiZghmkadY4BFzZlgVdImUVgL+qBqEoJZxed5qqix0g2GwAt6gxWZ9F37V+IOTYYeoaJHhDobyuHn1GNd1Umqp0aarbLDbLj8juAmZfC3tfC7qTd1sBEKipQ1GUPE63MxZSTBeVjhnrIm8P6UusLEFTzUysQRa5emQG7glRIo/rYgcWFlFK2/dpKWx/iLor1kYoqwQCf2UlQij55q87TdXFDjCsqRv4q6rRPF6wesR5t2VBD9oLYGt0ia+yClSltNANFJqqozGBLJWcL+oiK3IYJwvKxQ5QrNUJ1hsKofkDgD2YpA+1el+b7pnPDwEhb6gCzR/IL5aBgTdN1enjlZrUmWv8nt81tmQA38UOPKzIRNszfvpm6/02UDV6pkGFHwj6ghV4Av6coG8z01Rdyuf/HLafHX2t0e2NRgRA+jW/H9XjzfB43WmqLnZAY11Bzz8MkAGgwl9TizdUianrBTI0gKepyuL+YhmNsN5JnS524GLzw7HQxwy2/lIC6wE8UlqVSP2BarrpNNUSxoGkDAXSeYMUUiBd7EDDOt37/qLs+4VGF0JUSCmrg7X1+KuqkVker0tTdbEDECspLqToHz5ynx6ZpVA0rxdFVTFLNehzaaoudoBg+1WDtn4k6JmZa37F40HxeMA0i6OfLk3VxQ4Umqp0Bb2koEurcMYTqK7GF3K0et5WaaouduBjXUHPO/w4pkVKQHHORd9WaaqOWmoXO1CxrqA7A4F+QBU2ocXjC2CaZrEguTRVFzuQsP1Qwfdl1D1XcyCpBQjVN2LoaYdH5NJUXewAxGbbQAunQhXbqqBnFiC3Jyr5UyxdmqqLHag0VUXVSIa7SSdiYM1BT7ONNp4QhZGOIjJLnu53p6m62AGCFaCoCslIONMgstsWdKUvNWpfHpkV9QEompYzm8tsCwNmmur63rPwgVJllC524GIlKGpWj6q4JbAoIOuFEFQ0DcLQjZ6nmrIJE1H7AFtyUmee3edsWFAiruNiByw2S87qB3G5/lIZpwoEiubJj2RvDF20P2Bdmuo2j1U0jXhHh3V/KErXtuyjl1CNZq5WuB9QTV2aqovdWKxQFMx0OuPPR2TOR9e3ZUEvMJf6AdUUl6bqYjcOK4TANE0MI11oPSeA1LZsupcJYLk0VRc7ALFCQU8miLa2gsXlCNsBOZM+qp3rD33dRckAVsZo7jVdtP9gy9NUxSZQIF3sQMEKAZgmRjKZuavTsG23ey4V4N5IuiibQDXdvNjyNFXH8xtMgXSxAwWLoqCnksS7OgCiUspIX8tav/HR8zrqlmKL2SpWSOGoVhNFi9wfsEU01QKfJI8CKQt2lLzAnosdkFghMFMpEl2dAEnbN9/m02t5ciWzwoFLU3WxAxIrhIKeTmc1OjLrowtX0AGh9MASwqWputiBgRVCYKbTJLq6AGISGe5rWesvgq70FOhyaaoudiBhFUUhHY8T78xodBmxX5ncVn10idV0otOUJtHWVoSqujRVXMrngMZqGpHW5kzUvZ3coJL4thyMkyC6QZKORRCK4tJUcbEDGasoKtHWZtKJOEAbVjWcSW400zYbdfeAzV4rGeiiF3TRMtVrfYHN5Fpl7i4pokBm3YIyFEjHvC8XO7CwqsdDeO0aDKtteUbQ5bYs6BlRSkogFYsjFKW03K1HJp3TS/scmzXpcjt9fli2IEXjSN3lXAPhYgckFlSvl3Dz2syG0Cyl1KFkyfw2IegGNqNHCtqREO9oQ1E1RGE3hwE4TTWzw2/MpE6Rt4e42AGFFQpS14nYgi6hpT9odKWPBT1h/24CGHrKavWsFCy6O03VxQ4QrOrxEOvqzNS5xwV02XIWo4+Ya/0hvWZgiXUUSCa6uknFoqiZzhxl6aKl20HnpTv6GJuN52TIECVuCllYheX0Z1zsgMSqXi/xjvaM6d4iJR12DMroS0HrD+k1BSu/mEzH4z49mUAoSsGLXJqqix0IWInq9RFrb6V79QqAZpCtWFVx2zypRUgpY0AkEe4iFY0isr22eqaLygJhk/SearpFsfRMU3VGIDZqUqeL7Z9YBIoiCK9bSyLcDbAGy3SnrzV6P+GjixgQSUcj6Ik4iqpmn8rtliJbhEKBh5yjhhZSTfsImwnRSZmvAXB0K7FHRJeiQAqnT+hiBwxWCIGp67QvXZiJuK9wWKzRbV3QNZARoCvW3kYiHEZoWhmHaFuZpupiByQWgWmYdC5flnmvZbbZbvRlxL0/CHrGQgoD3bGOdlLhbtRCQd/mpqlKFzsAsUIR6Mk4bUsWAaSQcpktY2Yfy1mfC3rCTjmkBaLdNA2ibS0gzfy8pUtTdbEDAGsVyqwj0tIMsFJK2W6/QXxb99GTtqCrCNECEGlZh2kYuZJCymjScmmuMs+5NFUXu6WxnkCQzpXL6Vq5DGAR1oQWYSu0bT7qbgIKgrUAnStXYBpmcQGaS1N1sf0ZKxSEUGhd9BWJSBhggSPi3ufDlPtDrTt2kHoVILtXrxDWhAurBfaApani0lS3Jazq8ZCKRWlb+FXmxl4urZs4Tq4CdJvV6Kbtu6hSmuuArkhLM8lIGEVVyKS5hCy9mRZGPYUonMTad1hK0FQz3UecsdxMKMJ582Sr61zsgMEqmkYi3EXLV/MAOqVgPuC13dM+ndLSHwTdwBopC1aecVW0tYXwmtVoPl++3pciRxkt8p9FeeOoL7DZWW0FfwvH3ZS1/C2rQTh8PVHqvVxs/8Vi1bh3LFlMx4plAEuRrLPRCfqwn3t/8tEzFL4IsCK8bg2RlnVovkCx0A2UaapCWKSHku9ZUC6b1/7W9g3LTup0sf0SKyWK5qFl4XxibS0IxAKsiSySPuwq0598dOdSdgNLktEI7cuW5PyjTDWKS1N1sf0UqygqejLB2rmfY+g6QlHmYMqk/TKjPwhYf9DoSXv3E8KqDaZ9ySJS8WiuQs6lqbrYfoxVvT6i7e2s/WI2QDOSBeSoqWlX0C1JSdo/fgkLgVj7kkXosZijQs6lqbrYforN+OdLF9K6YD7AV1KaK7BKXyMO13Sb1+iZoJwCYhWwumPFMiKtrSiaasuQU5OW6shTXgj7BJt5fUazO3w7p0YQwtF5Mu956WIHCFYoCiiC1Z9+RDIaRgjxhe2Xpx2B5m1eo2ckJWYJu4wBi6LNzbQunI+ieSz/N48uWmhOOeii0sEYK0k13UpYXJrqtoJVPB6S4QirZ38CkEKIObYW1x1mu9zWBT1zZEoEk0IonyciXayb97nd+rmQLiqKU1wZuqjIp5cWU023EhaXprotYJESj89Py1dzWf7BewDzpJSLbbM9Sh+2juqvgq7bfroEuQhINM+dQ7yzE9XrLZpvVzJAIsvktPsA69JUtwWstBSRqrHqs4+JtK4DmIOUrbZcRegHrLX+JOjCjrrHAE3CUmDJmrmz6V67Klc4k5lcuR66KD1QTbcW1qWpbgtYy2zXkwmWvj0dwBCK8pFtrsfsH1xBL2e+Wzvil+E1q1k3bw5CURFCoTd0UYncaKrpZsW6NNX/fawQeANBmr+cy4qPZwEskFLOs5+N2cpLuIJebOlmfBpDKMpsU5qs/uQjpKEjVKVYk5aIkud9YRtINd3sWJem+j+NFUIgNI1l771FItyFomofImUzuSpPST86+pNGT5IrF5wPrF35ySw6V69C8/p7GbwHl6bqYrc4FovEEmtvY+5zT1lKSsp3rcxRXn846Qp6sbFkYpXBqtI0VwKzm+fPo3nu56g+L9mCc1loQpdp1Wq3aZbCIZBbC2vHboUQuao6pw9o+/5587scz2fH/bjYfomVUhKorWf5B++xbu5sEOIT0zS+xCop76QPxyP3d0GXDt8mCUSEEO/qqSQLXnsRTGkNYCysWSkTMXWEVPP7wG1FbDmaaqaU1kFnz6NA0gN90sX2D6zi8SKlZO6zT2IYBoqivGkLuG4rK9MV9J61etw2ewRCfA6sWfzOW7QvX4IWCJQ0hHJ0UVn+XddLNd3MWJvy6MzRFlEgpR3kK0OBdLH9F+uvrGLVJx+w8I2XEbBKmuYsrNx5vwvC9UdBz0hMBBDSNFcpivpR95qVLHn7TTxeP0IoPdBFy9FC6QXVdDNjbZpqcTtgh8bP+H1lKJAuth9i7e9W8/mY9/zTJMJdCEV9U0q52n5BBzl6qivo6xH2KFYuMo4QbwGpL/77BPGuDoSmZuailNwjJMUNAbIvzTaD2ApYKRHZbiQU5GhlPjtOOrRIQVMDF9vPsICvopKWBfOY8/S/AbpMab5gvyqK1ba83wl5fxR0sPLpXYAmDWM2iNkrPp7Fio/eJ1jfSF45g0tTdbFbESsUBdXrY+7zT9O1ZhVCiBlIOZ9cJZxOPz36o6AbtqBLiWxWFOUV09D5/InHEEg0rweXpupitzYWKfGGKuhauZx5zz2NZXWK5x3KqcO+d4Ur6Bum1a2SWGnOFEKsmP/qCyx66w381bUlvo/+SFMlvyCjAJ5PgSz8bOli+xlW0TRUn5/Pn/oXa+fORiBeldKcg9UAspN+mDvv74IuHDukkFKuEUJ5IZ2I89HD9yJNE1XzOHbb/kpTdVAghchG70tTIEWeye9i+x/WV1FJx9JFfPLPh5BSphA8Ta7Iq7M/ptT6u6BnJKYLKyepmKbxDLBi/ovPsPitNwjU1uanuDK+8kZTTTczFoq6wOKILmTqcHqkQLrYfoPNdDr6+B/307FiKYqiviil/ByrQKaNftRgYqCZ7pkWU11Y+cm1QlGe0PU0Hz1yP4muLjx+fwFdtFDTFjpi+VZVcSHc5sPKki8kG7CT9u89USBdbD/BCoGvoopVn33E7Mf/AdAm4VnbH0/ZlqfpCvqmafVOe7f0Smm+Any14NXnmff803grq1AUxeFPOTVtwZtlH3ZqZbYYVmTbPeemuORYLnZnWGlH6vPeO2MLuNj+gQXN70dPJ5l1z18ItzajKMoT0jTm2Qqo1b4/RX/1zfu7oDuDcm2AgaRNKMojup5m1gN30bVyBb5QRVabimwPIFmkTUXBkHOZrXraUthcek44wULk32vO+yNbc51zEF1sX2MFvopKPv/PP5n34n8RivhSSpmJtHcDzf01yj6QBD0jbe22eaRJ05ypKOrba+d+zkeP3IuieVA9HgqkqkQEXRT8I4p97c2KFQWRe1HYjSL/d0HJ9I+L7TuslBCoraNj2RLe+uNtmKZpIpTHpEVFBWghN1NNuoK+6Ufa3jnTQFwiHwBaZ913F4veeh1/dQ1O8rd0lDQWutfSoXBltjkEmxUriwI8Ze4EuZ7bw8X2HVZKPP4A0jR55Vc/oWv1ShRVfVIaxgzbZG/JZIUGgn8+EATdJEfkb8WisH6lKOqDyWiY6bffTGTdWvxVNY4Zpnm9H4qUsijcvEWJ5zcBK/JjOvkWZC/vQIGL7TOstJiSFY1NvHf3n5j30rMoivKlNM1/2AG4OLDOVjySAXIMBI0ubYFfYwfnFNM0nlcU9fWVn37A67/5BUJT8fh82eommdctROZ47LZazo/WO5/fjFjhDORlXp7vv0shSnsrLrZvsHZQLtTQxLwXn+H1W34OEJWIO6WUa2xBX+MIwOEK+uYV9Ey6bbXtFyUl8n4hxJJPH3+UD++/C39VDYpmlcc6x9rmq2m76b6zxjnLZnI0GtgMWIsHkZdNL4jO503kztMtLrYPsLaQB+vqWfXphzz/08sxpYmian+XpvEpVgVcqx0cNnvhFLiCvpEmPLZGX2eb8MtQ1HuA5Ou33cBXb7xMRWMTQlEhLxLuiKnKbN1akX+W55RvErZ0XbXjTfLvj1LpeyFd7FbFWv/6q2uJtDTz6q+vo2P5UhRVfcY09GdtIe9wmOwMJCEfSILu/Jpa7OCcIg39baGof0lGIjxzzfcthltdg+1Iy7zoeabMUTgjrEKUiJZvKtbuHGunb4RjMACyRE7Bkf7JBQKFi92KWKTEV1FJoquT539yOYtnvokilPdN07wbi5EWAZZj0VAZKAG4gSjozq8sAay0tbsqTeNZRdWeDK9dzTPXXErrwi8JNTTm57Z7ercyEdhenUlZrCgI1jkbHlAQ0csVczi9BBe75bFIicTEX1mFKU1m3HkLX778LEIwXwr+hJQZfvnagSzkA03QsYMhJhZTaLUdATVNw7hbEerra+fO5rmfXE73mlUE6xs2wbbafHEWKUW+WV+0mYii56RwsVsDC+CrqELRvLx648+Ydf9dAEuEUO6wG5RKW6m0DDSfvOiOlnLDz12IPg04ZvZvDRgCjAQ8QohqIZQrTNPYd8y0Azjx9ruoaBpCvKMtvxkETh6yzLuWPMZSied6g82+h+0jSnu9imZ9yPLcdpnpZ+ZitxhW2r3fFI+Hl2+4lvfv/QvAHCHEb6WUy+23WWab7JnRx0a/MG03QmaVAbg5ZXZW3dbqywFDStllmubvFEV9e8k7M3jikvNoXfAllU2DEapaxFgSJTYsUbiZOainvcVmmw9m8vr2+whHCyNKpugcLY6EcLFbGBusq8PUdZ6+8pKMkKNo3lVSssQOvHU7ZMQcqCb7QNboTtnKbFTDgFGAByGqBeIiKc3DG8aNV0/47V8YvtuexDvbMXU9b1xSUROCQnHPU9MOXdELbOYl+RpG9sotcLFbCCslKCqB6hqiret45keXseD1F9lzpzFIzcOHs78CRZ2lCG4wDeNjoMqOCa3GYqr1D023jWh057dpYJUkZobOJ5FymVDFcyhauHXRVzx47qnMf+V5gnUNeAKB0nTU8tvg5smkZD+yTAuq9QUNXexmwEpUr5dQQwNrPv+ERy46iwWvv8hRB+zGsw/9jCf/dBknHbk3mMZU0zBuVzXPAXYQTgEG266iq9H76FDtL6EKu/WUomrfMg39fBBjd9lxtDJn3hJMBEdedxNTz74Q0zRJhrvyNHBPumN9eqXc81kjgPyhi/mevMyb4Jk9H+FiNzfWG6pA8/mZ99KzPP2TK0i1reOsE/fnrl9diL++CgyJjCb48e/+xS13/RcwoqrmuczQ008ANbaruJZcHn1AafSBLOghoA7wAe2KogxGUS43df1Mj9fnvfb/vsbFZx/FW+/N5YKr/0BnLMWU089j34svp3bkKGLtbRi67rDAHaN3ihoJFRiFUlr9xArHMjmaSmbbHWTbDBekepzvbz+XvS2zp+FiNwlrC3ywvoF4ZwezHriL6bffApj8/Acnc/2l3wRNIdEZQQpBoCoICP7y4Etc/uuHSCQSCdXjvc5Mp+6WUGsL+Vr6uNvrtiTolcAge+FbFVU70DTMa8Hcd8K4Edxy5amccPReoCrg0Xh3xmdceO1f+WLhKhon7cbxv7iFkXtNIxUJk4pGe/Db1+MY9vCYdCigDV0uF7vpWClNNJ+fUEMTzV/O4bnrf8SS6a9QE/Lx95sv4RtfmwZpg3gskbeP+H1eREWAf/zzNU67/I+AlKrH+10jnXrEvucSWBVyuivoW/aoshc8AiKlatp5hp7+ORA895uHcsuVp9A4ehCyK0YimUTTNDy1lXSubuPSG+7joafeAlQOvOwq9j7/YgI1VtkjtpamMLhj/5K1Dp1Kw6nQHa8VTs1vF2gUp31KhPqdNy8uduOwVlPPYH0DCMHHj97Pizf9Er27jSP2mcQffnkB43cZi+yMkEikcnPWRE6I/D4PoqGaRx98iXOu+SvpVCqhap4LDT39LNCIVazV4gr6lhXyRqBTCKVKqOqPTT19YSgY4KYrTuX7Fx0PEhJdkQKTTuCvDIKU3PuP17n8l3fTldAZuue+HP2TXzJiyl6k43GSkTCY5oarlXLOu+MGLHmHWou53pvXxfYGa92X3lAF3lCIdfO+4I07fsOXzz4BwI2Xf5srLzwOb2WAZEcUMzMfL+Pj51ljEo/Hg9ZYxd13PcNFP7kLEGsUVT3DNPRPbZdxHblqOVfQN7OQNwGdiqoOkSi/l0b6kLGjhvDwbZewz+F7QHMnsUTKUf0osr6bKSHo90JDNQs+XsCPbnmY/7zyAQB7XfA9pl14CVVDhpEMh9GTifwbDKfv7bh+mV9Gk9VEGQYb+Y0JrSIc5+sL2xY6iTQutrdYkGg+P96KSuLtrXz02EO8fttNYCTZf4/x3HT1Gex7+BTojBCPxO3JOusJpkqJz+dBqankuhse4IY/Po5Qtc+EaX7blGYE8GPVcCRdQd8CmlxV1QkG4vcY+p4H77MLd//qAsbtMpZkcyeGYdhlzvk57gx5QSJRFYGvrhoZjXPv42/yi98+worWMMHhYznk4h8w4chjCdbWoydipONxhx2/OfLovYvdu9jeYiWqx4e3ooJkOMyC117kg4f+zsqPZ9FQ4eWyi07iqguOw9tQTaqlC0M3EIoo+sYKPze7ZUtJoDKI1A1O+cEf+PfzM1FU7c/S0G+UELTcR9a6gr55jgo7hdatqGqTlOJBaeq7nXDEXtz764uoG1JPsr3bLluSDj/ZoQnsYK0zBxvwe6GmkmVzl/Lbe5/jDw++AMDgKdM44IKLGbvfgfgqq0lGI+iJBEizhG/uFHznfSjyfHvhzLflbMU8E7944xAuthRWSlCErcErMNNpFr39Bh89fC9fvWp9hycePpXbrz2T0TuPhY4w8XjSvhsyrkHBe+ftNNL+0664k+CrqWD+3KUcdeFvWLpibVTRtAtMXX8NqAZWbG2t/r8o6D5gKJAWQnhQ1LuloR/69SP35uHbLiZYW0miI1zGsOuhn7e9WKqq4K0KghC8884X/O7u//KEbc6P2Ocg9j7rfMZMOwB/TQ3pWIx0PEbPBl/Breu8qZ1mvpAFaaDMDSbyDQgXi2OXBsATCOANVRBta2XVZx8x5z//Yt5Lz6CnkgYQFygV+0yZwE0/PIUDDtoVM5ogGU/ZdfAy22gikxqVeRagzBXcCJk9L1VR8NRX8eCDL3P2j/+KgLekNM9GSgWrfmONK+ibdjTaZnubonp+bBrpqw/caxL/uvNSmoY1kGgPlwjSOIolpMjeX0XmmT29w0Ti82iolUFSnRFemjmHPz/4PC/O/BwUD9sfcDATv/YNtjvwUEKNTRjpFKlwOOsmlDPn89tWbGDJTWHIfxvGZialeEOVaH4fkea1LJk5gy+eeYKl780k0d0J8KWqai9JKVuFohxg6OnDKyuC/Oryk7n0ohMgkSIeS2TjJ7kcvIOYZLt2IhO49WoYXVFSaSuLFggFiMcSHHXhrcx473MpFOV0aZpvYNVzLGcrFtL8rwm6DxgBhIWi7iJN45nGhlrf249ex/hdxpFo6cSUJpry/+ydeZQdVZ3HP/dWvbWX9B6SdBYDIYkOGIaAiMCgMKCCzuhxPQPjAOPRYRyRGRwUNY4ix6OCCw7qgCsjgxHQiYggAmFLUEJCAokmnc5C0kmn0/vy+m1V9zd/1K3uysuLQA4TmlDfc+r063qv3nLv/d7fWr+fQ7I+i+RL5AsllObPSvJqEj98nE4noL4WXIdnV2/k8s/dzOPrOwFoP+kUFp73dhad/w5aFyxCRCgMDWJ8b7JWXLW72SZOS5VurVRIksqF+Oq9VqFQrkumoQmlNX2dW9jywL1s/s0KutatCYuBbtZK/05E/iDIiH0brRz3XPG9S4HMFz/xfj539QcxYwUK44WgfVb4LZSKCAFBa43jONx535N09w7xiUveRtn38YpllIJ0WyM/+fF9XPbZ7+OXy3eCXEVQfWY/QVehKUv0qZy/m7XfT0BdBqQ++09/y/EnL6TY3Y+I4LourqN56qktzGidxvTmaXi+OYjM1WSMmujQEXxCMulAbRZGcqxau4Xfrd7EwLiHdhKI79H19Bq6nl7D2p/+iPlnvYWF513AnJPfQE1LG8YrUxgdxXjlCSmh5ECXz0GhowNCRqpS3Tjgm75arlVK4SSSJGtrcVyX/NAg2x99kM333U3nww8w2PVcOKjrlNYrxcizRkwfQSq0mTAKfO9u7bgDxveuXPbN5bW+Ef7jsxeTQSjkS5OtrSVSO1gpkgkX3wjfW/4QDz/xDIJw5cfejRoYpez7MF7grWecyGuPa+fZP20/Qyk1Q0R6rR9peApzacpKdIfgXnOltD5WjFmx+Ph59U/d8QWy07LkR8ZRQHp6I489uI5zP/Ql/vnit/L1r11OYW9fVVXxoPCNtb+0ViSn1YAI996/hm/deh+/fewZEAOoATeR2CEiz4mY/SLSLsacDjQprZm1ZCmLzruA+We9hZb5C0hks/ilEl6xiF8uI8avQoIXNMAHpnwdpdcqrVDawUkkcZJJtJugnB+nr7ODHasepuOBe+l6+imM7wEMae2sFjFPiMifrG2ctCrzIJO1/2cRxLnz2nHeaHxZBib5wy9/lEsuvQBvYIRy2ZsIsYUJNqBQGpI1WR5b/Szn/+NXKeTz/OGOL3HqmSeS7xkkmXRxUkk+cs0t3Pyz+wXUxSCP2p/TxREqTHE0SXTXqu5joJYA9e8692Syc9sodQUJSelsmkLfMJ/6+nJKZY83nDAfiuWDnXATRrpCwoZ71h5LJhM49Vm2bNzBtTf9kttWhHPGeqX1oyLyrFcu9VhpoQGjlFqBUn8pxpzWte7JRV3rnsyk/vN62pecwrzTz2T2KafROOc11La2YYyP8XxMuYTveS84GSf0+h4Qs39Rt21O3WuVUuhEEieRQDsOKMVY734GdnSy5+mn2PboSro3Ph0kLwVk7lRaPyEia43xd9l5CCV4jz0GCFJTFUH1odcAzcb3H9XaudYY/v3Sa26pq8mmed97z0aGxvA8M2EiBOsimJ5Sbpyz3nYaP7ruw3zwX2/kyi//lMdOvpZUJoXveTiO4tg5baFzpj3yI6d0/7WpSvRw0DJizFxQLFk0BzwfzxiSbgJq0tz0g3tY/dSfePubl/L+d52FPzxWTWdBInMQNtTL1mQgleDOux7lk1+9jZ27ewDVqV33HuN5T4oxA0DCHkUrLdIi0oPIr4FHlNYLtHaWFMdGX7/t8Ydmb3v8oVRNcytti17HzBNPYvbJp9KyYCHZhiYy9Q2gBFP2MX4Z3/OC++P/TNYX1UJ5Bz0nU/DaYO0rR6OdBNp10I6LdhOI8SkMDzPSvZf9HZvYt3EDe9avo2fTBvIjw1jC7nLcxAZj/GfEmO1izLAleMqSv5+g9PKQ/T+s/Q9BwYgd9lyrMf4qpZ2bxfhXfvy6n+r2Gc2cfuaJmP4RTEVClAKMCH7/MB94z9ncdPuDPL5mEysfWc85bz0VMzgaefWEH0nxCqjxPpVtdAHSIE3KSdA4rQZKHhqFW59l3e//yLIb7yKZSvHNT/0duC6lcq6KWaEms9Xs2kw11lIeHufzX/sZX/7uLwAM2v1fJf6vjFfuthOo7UIaIUh1LNsIQJP1tObFmHW+MeuUUi0oNR+Rxbn+3oU7Vj187I5VD9cmUhmmzWpn+mtPoG3hYtoWvo6WYxdQ09JKIluDm0phPA+vUMD3Sogftuw1Nq/+hdy2yQGlqSeeOoLXKqXAUWhLbjeVxkkGDTXKhTzl/Dgj+7rp37aVns0b2b95E30dmxnu7go0nWCMOxSqE80mDM/5XrnffqBDUHdg1BJ8wJK7ECF4tMiAtvbyNnuuRYz/G+W4TT37+y657Jqbuee/rmL+wtkUB8cw0UarKlDjS+NFMg21XPmh83l8zSZuvvMRzvmrE3FdBzxD566ecHH1WkHgTXWyT2WJ7lhDbkx8j329Q5BKkkwnKY/kuPqG5Yznclz/6b9nwevnU+obmfT2hja5TNphCGitSTXXs3fbXq647r+5897VAPu0495qfO8xmSxk0ReRGAUma4UNWVuwjiBZoh6oEZF+RIaAdaAatNYzEZlXLuYX9m3fOrtv+9a5m36Nm5nWSG1rG41z5jJ98Qk0zT+O+mNmUj9zFrUtbSRq0iit0a4LAn65hPGi0p+KflCTd9EcFKGaqG+uqkjew7xWQLsuOuGinaDBpdIOYnyM7yO+T3FslIGdOxjt2ctQ1y76tm1lYHsnw3t2M9bbQzE3Fqrke4EdWultotgmxuwTZChSsClUw0etDT5mrytHpLeJED0KbV+/3T6uF+PdpbTburlz94UfXvZDbr/hctraWykMjjI5CGrSTzg8xnlvOoFZM6dz90Pr6Ojo4vgzTmT77//Iyic3A/Sh1HOIZOxnxRL9MKW5JkiU6RIxrN20k4u0QtdmuGP5Sh54fD1nLH0t/3Lx+ZAr4IugIip6NJ8ZgYTr4LZMY+sz27n4qpv4w/oOUM5WpeTbxve2WMdOEdjDZKdMv0ItVAQlhcJecFkr3Rst+WtARozxB4EtwAMo1aSUmofQnh8enJ8fHpzT27mlueOh+7NKKWqa2wKit06ncc5cprXPoWnufGrb2kjXN5Cun0aqtp5UXV0g6z0vIJUx9vARE7SDEjETySXGmAPbAVcqnVYyK60jxRW1TRFVaMe1zjI9sflox6U0nqMwPMT46ADF3Cj5gX5G9nUzvHsnA7t2MrJvL2M9PYx0d4WkDiV2L7BTa71DkD0Ie0VkwIgpI/iRtRiSe9hel7cS04tI7ijRK2EiDt0RO59ZhAL4P1HaaX5o1YY3XvqZ7/OLb19BurGe/MCwXTGTmk25WKZ2RjMXvfN0vvK9X7J6wzaOP2sJX//xfWzdvhuUXomYHivRC0zxmnJT1euurfd0mlL6OBH54exZ0xs77v0K6boMS//mM6x9ZiuP3PZ5znrzSRT7RzCRogQTyVRW9UymEjgtDdz/q1V8ZNkP2Ll7H2j3MSX+LbanVhgL3WMXmHcItVBFvl9Ys07b61MRSV8XmB0k7YLzJl+naoBjQGbZ39huIwyt9hq01iSztdRNn0FNSyuZxiZqm1vJNDWRbWoh0xjY/Mm6OjINDSTSGbTj4iSTiNh4cCqNdvREldSDiK4U4nuUC/ngNdqhXMiD71MuFhkf6Kc8niM/PEhxZJjcwAC5/t7gce9+coP9jPftZ3xoCPHKob3rW6J2W4ltSyWr3cH4StkSNxw7YzfXXITUI5Y4HpPlvaVCcssLXEPh58y0DjqU0m2C/gLiLbrwnKX8/MYryDTVU+gdOijsl55Ww8ZntrP0PZ/jhONnc/bShVx/6/3g+3sU5uMisjt0GHIE02CPtoSZZjs5Htr9Esa74IZPX8y5b/wLXv/Oq3nHuafyy+9ciTJCsexxiDZ6ZGozkEnxP7c/wEeX/YDR0RyOm1jh+95tiIzZxdRDUNo3V6ESVltUUbJLZEG5kb8pezREpH7Wkj6s01e2/9cBNUrrWoSZIuYY+9ubmcwMrI9qX24yhZNI4SRc3FQKpTXp+gZS9fWI7+O4CWpa29COG0j5qnOo8UpFcn37EWPQrkuuv5fSWC4oxlfI43sefrmEXypWDsKIPQaBIQX9gtqvFHsF+hHJWQKM2d/rRsY07Eg6FpHeeUuUsJiDXyG1D6d4X6R9Dg5B8tWcMGSrtP4343kLLzznFH7yjY/RNKMZBkcplibrSaQySWiq470XXced96yys+72KiXXi+/bEzxnNzR9pKT60Ub0JHAckEHrhVrrmxw30TDnmCa27eph+Tc/xvve92YK+4cnizjaEBoCjqtJNtQho+Ncff1yvnbLCoCidt1bjef93E5+yTpteiOLzHsRi6qyCjQRIjsRiZ8FMvaos78tbf/Xkc8LC16W7XMN9vW19miyGkOt/Ru+nxvRIIxVJzPPE/IJe3vnIhtWMWKyDNvxGbJkHAU1CBLayqF6PRrZ4HSFfeDZ9/fsNaG2VLDk9is2Vb9iLF6KcJWOmKntwDzAaK3bDfoajLd48XGz+dayf+CvzzwBkkkoe5B0oVjiV/ev5aqv3MbW7XtAOxuU+N8Rkc12fnush7/IEWzwcLQRXQUqLnMBpRz3LeKby8DMU9pV37jmIq64/F2YkRzFUnkiUUM7ilRNFhzN+nUdXPXV23lw1QZA9WjH+a7xvd/b9x4HdtrJ8qtI8hf7XatJksrDtYdjiZmNkLLWnncjKr+pMB+cSBzZiUgrAWqUUukJoitV+zyeYAV4Ea3GEZF8hVYjESnsR7zLOkJqsRtTqGqXrLT3Imp5+Hy5QlOqtLVforK7Vckeahaz7ZoSpVSbdpzLfM87J5lK8+7zlnLh2SfR2lRH9/4h7l75NHf9dg2I5zmJxN2+5/0Mkb4IyXdGHHFHzEY/mogefkDGqlsz7UQdox33NON7l8ya0ZZdfsPlvOn8UyBXAM8PdmFH0/tcD7fc8Qg33vpbenr7UdpdA+bHYkyHVamHrMrVGyGTeQkXmKoiUVSF3RguaLeC3Doi/d3IAs1Ewn6V7+lw8C3W/vPEeKObRyjddYVWYyqkq283yHzk+SiZw02hGJHWqmJs/Srf4f+D3NWiOCpC9jnhhqtd9zzj+W8DmYdyVDqTojBeIChXojdrR91tAlU93Lz2E9zIkouMCzHRD39yQrV3LkF1GSewsdx3i/E+MmtGG5+87O1cePYSsukUO/f2sWrtFm779ROs37QNoFc77gpj/PsQCZMueiNON1NhDx4JJ2M1SRPNrtJVHjuW5G7FZhE+l7EbRaXf4IXAryBaqUKtriR6KULq6HmpQlxziM2lMs53ZEO2gRY10xI+baX7DFHqOIxZYLWrEbTuVCKbbT67Y8dlp424FF4Okh+NRCeyC2esY2oWUKtQjnbdD/he+T3gpBYvaKe+NsOu7n669/UBMqaUsxotD4pvNkacX3vsMR6RSC9XPy31PLZ+pdovFdqArjJO8OIztSolaqUjUg5BUnMIiWyqEHiqpIZGN8gEQVi0HWiJnA+1ptDUCNdOn1XXe6tEA2Kiv4QT41iyvyZ0PAW3r5rTQI63E9QPaqtSrBeRDit9NEE21W77txSZoKka+1SH+F9VOScVpNcvklzqEIRWFe+j/oyq/UrqMqoqHKZhHkRjJLoRNTNyVlUftBJdXmYBcdSWkqqcmDarcjXYQc8EHmjlgoRxWN9eM24naZ89H/XuvtJa4KpDkEodYnM47HX0PORVvILbB1eMVTQykraHE3ldaJNHfQ4vu4A4motDqgrHU1hHrs3uyFEPsLEE72UyjdWrUEtf6Qs1xku3pqJrq9K3UZk0NSW0wKO93LOqYmOF8eUEk97dMGY7ah8bqme5xYhRzaehD6HZTJm182rp1KIrdl8dUbcqPcCVu3GMGC/GNzIlfRBHWympQ6HaDQ3qEJMSS/AYh+OfOPp2sMPZHWLEiPHKgo6HIEaMmOgxYsSIiR4jRoyY6DFixIiJHiNGjJjoMWLEiIkeI0aMmOgxYsSIiR4jRkz0GDFixESPESNGTPQYMWLERI8RI0ZM9BgxYsREjxEjRkz0GDFixESPEePVif8bAILEcKnXFF2GAAAAAElFTkSuQmCC','https://gitee.com/winc-link/hummingbird-sdk-go','Go语言sdk包,提供设备接入物联网能力',10); +/*!40000 ALTER TABLE `language_sdk` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `metrics` +-- + +DROP TABLE IF EXISTS `metrics`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `metrics` ( + `key` longtext, + `timestamp` bigint DEFAULT NULL, + `cpu_used_percent` double DEFAULT NULL, + `memory_used` bigint DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `metrics` +-- + +LOCK TABLES `metrics` WRITE; +/*!40000 ALTER TABLE `metrics` DISABLE KEYS */; +/*!40000 ALTER TABLE `metrics` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mqtt_auth` +-- + +DROP TABLE IF EXISTS `mqtt_auth`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mqtt_auth` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `resource_id` varchar(255) DEFAULT NULL COMMENT '资源ID', + `resource_type` varchar(255) DEFAULT NULL COMMENT '资源类型', + `client_id` varchar(255) DEFAULT NULL COMMENT '客户端ID', + `user_name` varchar(255) DEFAULT NULL COMMENT '用户名', + `password` varchar(255) DEFAULT NULL COMMENT '密码', + PRIMARY KEY (`id`), + UNIQUE KEY `idx_mqtt_auth_client_id` (`client_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mqtt_auth` +-- + +LOCK TABLES `mqtt_auth` WRITE; +/*!40000 ALTER TABLE `mqtt_auth` DISABLE KEYS */; +/*!40000 ALTER TABLE `mqtt_auth` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `msg_gather` +-- + +DROP TABLE IF EXISTS `msg_gather`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `msg_gather` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `date` varchar(255) DEFAULT NULL COMMENT '日期', + `count` bigint DEFAULT NULL COMMENT '数量', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `msg_gather` +-- + +LOCK TABLES `msg_gather` WRITE; +/*!40000 ALTER TABLE `msg_gather` DISABLE KEYS */; +/*!40000 ALTER TABLE `msg_gather` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `product` +-- + +DROP TABLE IF EXISTS `product`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `product` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `key` varchar(255) DEFAULT NULL COMMENT '产品标识', + `cloud_product_id` varchar(255) DEFAULT NULL COMMENT '云产品ID', + `cloud_instance_id` varchar(255) DEFAULT NULL COMMENT '云实例ID', + `platform` varchar(255) DEFAULT NULL COMMENT '平台', + `protocol` varchar(255) DEFAULT NULL COMMENT '协议', + `node_type` varchar(255) DEFAULT NULL COMMENT '节点类型', + `net_type` varchar(255) DEFAULT NULL COMMENT '网络类型', + `data_format` varchar(255) DEFAULT NULL COMMENT '数据类型', + `last_sync_time` bigint DEFAULT NULL COMMENT '最后一次同步时间', + `factory` varchar(255) DEFAULT NULL COMMENT '工厂名称', + `description` text COMMENT '描述', + `status` varchar(255) DEFAULT NULL COMMENT '产品状态', + `extra` varchar(255) DEFAULT NULL COMMENT '扩展字段', + PRIMARY KEY (`id`), + KEY `idx_product_cloud_instance_id` (`cloud_instance_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `product` +-- + +LOCK TABLES `product` WRITE; +/*!40000 ALTER TABLE `product` DISABLE KEYS */; +/*!40000 ALTER TABLE `product` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `properties` +-- + +DROP TABLE IF EXISTS `properties`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `properties` ( + `id` varchar(255) NOT NULL COMMENT '主键', + `product_id` varchar(255) DEFAULT NULL COMMENT '产品ID', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `code` varchar(255) DEFAULT NULL COMMENT '标识符', + `access_mode` varchar(50) DEFAULT NULL COMMENT '读写模型', + `require` tinyint(1) DEFAULT NULL COMMENT '是否必须', + `type_spec` text COMMENT '属性物模型详情', + `description` text COMMENT '描述', + `tag` varchar(50) DEFAULT NULL COMMENT '标签', + `system` tinyint(1) DEFAULT NULL COMMENT '系统内置', + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `fk_product_properties` (`product_id`), + CONSTRAINT `fk_product_properties` FOREIGN KEY (`product_id`) REFERENCES `product` (`id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `properties` +-- + +LOCK TABLES `properties` WRITE; +/*!40000 ALTER TABLE `properties` DISABLE KEYS */; +/*!40000 ALTER TABLE `properties` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quick_navigation` +-- + +DROP TABLE IF EXISTS `quick_navigation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quick_navigation` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(191) NOT NULL, + `name` longtext, + `icon` longtext, + `sort` bigint DEFAULT NULL, + `jump_link` longtext, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quick_navigation` +-- + +LOCK TABLES `quick_navigation` WRITE; +/*!40000 ALTER TABLE `quick_navigation` DISABLE KEYS */; +INSERT INTO `quick_navigation` VALUES (0,0,'44112172','规则引擎','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAFZElEQVRYR8WYZchlVRSGn7EDW7ELFLsbHRMLFVsM8IcdoIKB+sMCHRMsrFF/CHZiKyomOnYHCo6Oid0dPMPal+2Ze87e937zOevPd79z1lr7PXuveNcew+jJnMBiwKLAIsDiwMLZs1mAbYFJg0AYM4hy6E4PLBgLC2CJBpAEbvaC712A2wddf1DAVwD7AYIeiVwGHDqMg0EA7wVcN8AiP8dxfw1skNm9AawD/DKAr55qLeClgZcB41L5CvgQ+Aj4GPgkwH2aPfs2dC8AjojfglwXeD0DOx2wL3BX+O38jhrAMwJPAOuFp3eBNYEfK3Zoe+BOIK1zGHBpZqdP/18DuCj7sFbXNYDHAceHh9+BDYHnK8CakK8C84fuHcDODbvdgZvi2Z8BPN/9KZYpAd4CeBDw2JRjgXMrwJqU2m0eupau1QHjuSmPARvHQ2227vLfBXgB4JUoWfp4IOrmPxWATwDOCL2/AvjjLXZ+yAvZpuwYYdRXvQ2wz02C7cLqc2A1wL8lWT9ifoZQPA04uWA0HjggdMyRVYDf+tm0AT4SOD8M3FE7kjtckrmimiwVik8CmwLucpd4mu9lVag19PoBNmOfBmaOFYxZHdTI9cCeofhNJNEHNYbA0Vl+fA8sB3zWtG0Ctp1aAZYPRX9bFawOJbEDXpUp7QbcWjLK3ls+bSrLxrMrgQNLgF3QhZUfgLUAYyrJfBmRkTNIbCQ4lrDNgNlC8XLgkAHAJlXrtrmj/B1NxoTsSb7DHqVHmsQKYU3MyY0MqyRvRuu1NQ8j5spWYWjD2gToVaYE2CR5CZh7mBUym19jV14bgZ8VouGkKuNG3pj8CdgX1sicoLSt911wBzmEvMGGkP7KJ0ywL0cANpnm/EPO4kdMPjEBnw6cGJrvAG8FEAFIbHJy89NUAFPjYp7IHXNGsY5bzycDfiYjNv36fc0Co6EjX74kHLu7Vq5JArZsGdwpnuUPj4wGggF9Gqrm1cphJxffJ4G8Ftg7XlgZbB6yp2ktbt5DAcJKsVECbOkydlMdbfLWaQncuW+nADAhr8MG9inxwonCjmN7/T/EDutUnZpRPmlbIWzTyrgcsLvrLrvbyoWAJGikIoFfsjHqN0d+SVNJLA5jm1wi73bG8KrxESVnbe+lic8CNR2yaw3rv7x5YhOw/zsBjA3r4gTQsYon9hywYsXX2iFT3bcpGQYCTOLEfoP/9KOXawMTsglgB+DuikWbKt49HBwPnZYtlflU7W+7mH/z7rgM8CIwR9heDeyfnLcReKldUpKtrQT8MQDoXYFbMn19uXBJZgKeAtw05e343euwbYAXAmzT6R7iGOC80mrx3gSz4NteFY/SI62Rs7NhwRFJfqOvnnQNoccBZ4WmE4BH9UVhVaflRy3woTcxYtGkKYmU8v4sTI8CJEH/kS7AjkjSxM4JoOHvVOCkeGaVMXktRyXxctGbJU9WuQcwd6aY0Ev3EnaYdMPoBOAEouN+4t2CiZUuCmWAXsKURAz3AtuEoknohN73NEuA9WFp2zKcSZLSpUcOZN74EBuCInCPuDQtq2t+nBN2bop2D7d9ZQ1g2ZKBnyaAPYCbGw7zfm+JcoesqyWxGlgVrA7KmYCXMK1SA1jji4HDA7jEKI/LnLcac97cpEGya23rrANmyhFrvzHfWT5rAcv8TYJrYppNQNx9W++s8SC/gXQ+zKfqnNw4actZ0kRhFbKzvV86klrA/fwI0tZrU0niBYzxLLhEVUsYfC8Xzyf2EYdEPwfe6w5z95D7MintgAfVfJU6w+6w97y3FRaxnTpV56Qm5w+SHC8XaypJb6lhAHvc9wGJYTVHfadswRiXU13+BY0uGsRNeoquAAAAAElFTkSuQmCC',0,''),(0,0,'69189049','添加设备','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAFZElEQVRYR8WYZchlVRSGn7EDW7ELFLsbHRMLFVsM8IcdoIKB+sMCHRMsrFF/CHZiKyomOnYHCo6Oid0dPMPal+2Ze87e937zOevPd79z1lr7PXuveNcew+jJnMBiwKLAIsDiwMLZs1mAbYFJg0AYM4hy6E4PLBgLC2CJBpAEbvaC712A2wddf1DAVwD7AYIeiVwGHDqMg0EA7wVcN8AiP8dxfw1skNm9AawD/DKAr55qLeClgZcB41L5CvgQ+Aj4GPgkwH2aPfs2dC8AjojfglwXeD0DOx2wL3BX+O38jhrAMwJPAOuFp3eBNYEfK3Zoe+BOIK1zGHBpZqdP/18DuCj7sFbXNYDHAceHh9+BDYHnK8CakK8C84fuHcDODbvdgZvi2Z8BPN/9KZYpAd4CeBDw2JRjgXMrwJqU2m0eupau1QHjuSmPARvHQ2227vLfBXgB4JUoWfp4IOrmPxWATwDOCL2/AvjjLXZ+yAvZpuwYYdRXvQ2wz02C7cLqc2A1wL8lWT9ifoZQPA04uWA0HjggdMyRVYDf+tm0AT4SOD8M3FE7kjtckrmimiwVik8CmwLucpd4mu9lVag19PoBNmOfBmaOFYxZHdTI9cCeofhNJNEHNYbA0Vl+fA8sB3zWtG0Ctp1aAZYPRX9bFawOJbEDXpUp7QbcWjLK3ls+bSrLxrMrgQNLgF3QhZUfgLUAYyrJfBmRkTNIbCQ4lrDNgNlC8XLgkAHAJlXrtrmj/B1NxoTsSb7DHqVHmsQKYU3MyY0MqyRvRuu1NQ8j5spWYWjD2gToVaYE2CR5CZh7mBUym19jV14bgZ8VouGkKuNG3pj8CdgX1sicoLSt911wBzmEvMGGkP7KJ0ywL0cANpnm/EPO4kdMPjEBnw6cGJrvAG8FEAFIbHJy89NUAFPjYp7IHXNGsY5bzycDfiYjNv36fc0Co6EjX74kHLu7Vq5JArZsGdwpnuUPj4wGggF9Gqrm1cphJxffJ4G8Ftg7XlgZbB6yp2ktbt5DAcJKsVECbOkydlMdbfLWaQncuW+nADAhr8MG9inxwonCjmN7/T/EDutUnZpRPmlbIWzTyrgcsLvrLrvbyoWAJGikIoFfsjHqN0d+SVNJLA5jm1wi73bG8KrxESVnbe+lic8CNR2yaw3rv7x5YhOw/zsBjA3r4gTQsYon9hywYsXX2iFT3bcpGQYCTOLEfoP/9KOXawMTsglgB+DuikWbKt49HBwPnZYtlflU7W+7mH/z7rgM8CIwR9heDeyfnLcReKldUpKtrQT8MQDoXYFbMn19uXBJZgKeAtw05e343euwbYAXAmzT6R7iGOC80mrx3gSz4NteFY/SI62Rs7NhwRFJfqOvnnQNoccBZ4WmE4BH9UVhVaflRy3woTcxYtGkKYmU8v4sTI8CJEH/kS7AjkjSxM4JoOHvVOCkeGaVMXktRyXxctGbJU9WuQcwd6aY0Ev3EnaYdMPoBOAEouN+4t2CiZUuCmWAXsKURAz3AtuEoknohN73NEuA9WFp2zKcSZLSpUcOZN74EBuCInCPuDQtq2t+nBN2bop2D7d9ZQ1g2ZKBnyaAPYCbGw7zfm+JcoesqyWxGlgVrA7KmYCXMK1SA1jji4HDA7jEKI/LnLcac97cpEGya23rrANmyhFrvzHfWT5rAcv8TYJrYppNQNx9W++s8SC/gXQ+zKfqnNw4actZ0kRhFbKzvV86klrA/fwI0tZrU0niBYzxLLhEVUsYfC8Xzyf2EYdEPwfe6w5z95D7MintgAfVfJU6w+6w97y3FRaxnTpV56Qm5w+SHC8XaypJb6lhAHvc9wGJYTVHfadswRiXU13+BY0uGsRNeoquAAAAAElFTkSuQmCC',2,''),(0,0,'73124045','服务监控','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAFZElEQVRYR8WYZchlVRSGn7EDW7ELFLsbHRMLFVsM8IcdoIKB+sMCHRMsrFF/CHZiKyomOnYHCo6Oid0dPMPal+2Ze87e937zOevPd79z1lr7PXuveNcew+jJnMBiwKLAIsDiwMLZs1mAbYFJg0AYM4hy6E4PLBgLC2CJBpAEbvaC712A2wddf1DAVwD7AYIeiVwGHDqMg0EA7wVcN8AiP8dxfw1skNm9AawD/DKAr55qLeClgZcB41L5CvgQ+Aj4GPgkwH2aPfs2dC8AjojfglwXeD0DOx2wL3BX+O38jhrAMwJPAOuFp3eBNYEfK3Zoe+BOIK1zGHBpZqdP/18DuCj7sFbXNYDHAceHh9+BDYHnK8CakK8C84fuHcDODbvdgZvi2Z8BPN/9KZYpAd4CeBDw2JRjgXMrwJqU2m0eupau1QHjuSmPARvHQ2227vLfBXgB4JUoWfp4IOrmPxWATwDOCL2/AvjjLXZ+yAvZpuwYYdRXvQ2wz02C7cLqc2A1wL8lWT9ifoZQPA04uWA0HjggdMyRVYDf+tm0AT4SOD8M3FE7kjtckrmimiwVik8CmwLucpd4mu9lVag19PoBNmOfBmaOFYxZHdTI9cCeofhNJNEHNYbA0Vl+fA8sB3zWtG0Ctp1aAZYPRX9bFawOJbEDXpUp7QbcWjLK3ls+bSrLxrMrgQNLgF3QhZUfgLUAYyrJfBmRkTNIbCQ4lrDNgNlC8XLgkAHAJlXrtrmj/B1NxoTsSb7DHqVHmsQKYU3MyY0MqyRvRuu1NQ8j5spWYWjD2gToVaYE2CR5CZh7mBUym19jV14bgZ8VouGkKuNG3pj8CdgX1sicoLSt911wBzmEvMGGkP7KJ0ywL0cANpnm/EPO4kdMPjEBnw6cGJrvAG8FEAFIbHJy89NUAFPjYp7IHXNGsY5bzycDfiYjNv36fc0Co6EjX74kHLu7Vq5JArZsGdwpnuUPj4wGggF9Gqrm1cphJxffJ4G8Ftg7XlgZbB6yp2ktbt5DAcJKsVECbOkydlMdbfLWaQncuW+nADAhr8MG9inxwonCjmN7/T/EDutUnZpRPmlbIWzTyrgcsLvrLrvbyoWAJGikIoFfsjHqN0d+SVNJLA5jm1wi73bG8KrxESVnbe+lic8CNR2yaw3rv7x5YhOw/zsBjA3r4gTQsYon9hywYsXX2iFT3bcpGQYCTOLEfoP/9KOXawMTsglgB+DuikWbKt49HBwPnZYtlflU7W+7mH/z7rgM8CIwR9heDeyfnLcReKldUpKtrQT8MQDoXYFbMn19uXBJZgKeAtw05e343euwbYAXAmzT6R7iGOC80mrx3gSz4NteFY/SI62Rs7NhwRFJfqOvnnQNoccBZ4WmE4BH9UVhVaflRy3woTcxYtGkKYmU8v4sTI8CJEH/kS7AjkjSxM4JoOHvVOCkeGaVMXktRyXxctGbJU9WuQcwd6aY0Ev3EnaYdMPoBOAEouN+4t2CiZUuCmWAXsKURAz3AtuEoknohN73NEuA9WFp2zKcSZLSpUcOZN74EBuCInCPuDQtq2t+nBN2bop2D7d9ZQ1g2ZKBnyaAPYCbGw7zfm+JcoesqyWxGlgVrA7KmYCXMK1SA1jji4HDA7jEKI/LnLcac97cpEGya23rrANmyhFrvzHfWT5rAcv8TYJrYppNQNx9W++s8SC/gXQ+zKfqnNw4actZ0kRhFbKzvV86klrA/fwI0tZrU0niBYzxLLhEVUsYfC8Xzyf2EYdEPwfe6w5z95D7MintgAfVfJU6w+6w97y3FRaxnTpV56Qm5w+SHC8XaypJb6lhAHvc9wGJYTVHfadswRiXU13+BY0uGsRNeoquAAAAAElFTkSuQmCC',4,''),(0,0,'98135661','添加产品','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAFZElEQVRYR8WYZchlVRSGn7EDW7ELFLsbHRMLFVsM8IcdoIKB+sMCHRMsrFF/CHZiKyomOnYHCo6Oid0dPMPal+2Ze87e937zOevPd79z1lr7PXuveNcew+jJnMBiwKLAIsDiwMLZs1mAbYFJg0AYM4hy6E4PLBgLC2CJBpAEbvaC712A2wddf1DAVwD7AYIeiVwGHDqMg0EA7wVcN8AiP8dxfw1skNm9AawD/DKAr55qLeClgZcB41L5CvgQ+Aj4GPgkwH2aPfs2dC8AjojfglwXeD0DOx2wL3BX+O38jhrAMwJPAOuFp3eBNYEfK3Zoe+BOIK1zGHBpZqdP/18DuCj7sFbXNYDHAceHh9+BDYHnK8CakK8C84fuHcDODbvdgZvi2Z8BPN/9KZYpAd4CeBDw2JRjgXMrwJqU2m0eupau1QHjuSmPARvHQ2227vLfBXgB4JUoWfp4IOrmPxWATwDOCL2/AvjjLXZ+yAvZpuwYYdRXvQ2wz02C7cLqc2A1wL8lWT9ifoZQPA04uWA0HjggdMyRVYDf+tm0AT4SOD8M3FE7kjtckrmimiwVik8CmwLucpd4mu9lVag19PoBNmOfBmaOFYxZHdTI9cCeofhNJNEHNYbA0Vl+fA8sB3zWtG0Ctp1aAZYPRX9bFawOJbEDXpUp7QbcWjLK3ls+bSrLxrMrgQNLgF3QhZUfgLUAYyrJfBmRkTNIbCQ4lrDNgNlC8XLgkAHAJlXrtrmj/B1NxoTsSb7DHqVHmsQKYU3MyY0MqyRvRuu1NQ8j5spWYWjD2gToVaYE2CR5CZh7mBUym19jV14bgZ8VouGkKuNG3pj8CdgX1sicoLSt911wBzmEvMGGkP7KJ0ywL0cANpnm/EPO4kdMPjEBnw6cGJrvAG8FEAFIbHJy89NUAFPjYp7IHXNGsY5bzycDfiYjNv36fc0Co6EjX74kHLu7Vq5JArZsGdwpnuUPj4wGggF9Gqrm1cphJxffJ4G8Ftg7XlgZbB6yp2ktbt5DAcJKsVECbOkydlMdbfLWaQncuW+nADAhr8MG9inxwonCjmN7/T/EDutUnZpRPmlbIWzTyrgcsLvrLrvbyoWAJGikIoFfsjHqN0d+SVNJLA5jm1wi73bG8KrxESVnbe+lic8CNR2yaw3rv7x5YhOw/zsBjA3r4gTQsYon9hywYsXX2iFT3bcpGQYCTOLEfoP/9KOXawMTsglgB+DuikWbKt49HBwPnZYtlflU7W+7mH/z7rgM8CIwR9heDeyfnLcReKldUpKtrQT8MQDoXYFbMn19uXBJZgKeAtw05e343euwbYAXAmzT6R7iGOC80mrx3gSz4NteFY/SI62Rs7NhwRFJfqOvnnQNoccBZ4WmE4BH9UVhVaflRy3woTcxYtGkKYmU8v4sTI8CJEH/kS7AjkjSxM4JoOHvVOCkeGaVMXktRyXxctGbJU9WuQcwd6aY0Ev3EnaYdMPoBOAEouN+4t2CiZUuCmWAXsKURAz3AtuEoknohN73NEuA9WFp2zKcSZLSpUcOZN74EBuCInCPuDQtq2t+nBN2bop2D7d9ZQ1g2ZKBnyaAPYCbGw7zfm+JcoesqyWxGlgVrA7KmYCXMK1SA1jji4HDA7jEKI/LnLcac97cpEGya23rrANmyhFrvzHfWT5rAcv8TYJrYppNQNx9W++s8SC/gXQ+zKfqnNw4actZ0kRhFbKzvV86klrA/fwI0tZrU0niBYzxLLhEVUsYfC8Xzyf2EYdEPwfe6w5z95D7MintgAfVfJU6w+6w97y3FRaxnTpV56Qm5w+SHC8XaypJb6lhAHvc9wGJYTVHfadswRiXU13+BY0uGsRNeoquAAAAAElFTkSuQmCC',1,''); +/*!40000 ALTER TABLE `quick_navigation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rule_engine` +-- + +DROP TABLE IF EXISTS `rule_engine`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rule_engine` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `description` text COMMENT '描述', + `status` varchar(50) DEFAULT NULL COMMENT '状态', + `filter` longtext, + `data_resource_id` varchar(255) DEFAULT NULL COMMENT '资源ID', + PRIMARY KEY (`id`), + KEY `fk_rule_engine_data_resource` (`data_resource_id`), + CONSTRAINT `fk_rule_engine_data_resource` FOREIGN KEY (`data_resource_id`) REFERENCES `data_resource` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rule_engine` +-- + +LOCK TABLES `rule_engine` WRITE; +/*!40000 ALTER TABLE `rule_engine` DISABLE KEYS */; +/*!40000 ALTER TABLE `rule_engine` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scene` +-- + +DROP TABLE IF EXISTS `scene`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scene` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `description` text COMMENT '描述', + `status` varchar(50) DEFAULT NULL COMMENT '状态', + `conditions` text COMMENT '条件', + `actions` text COMMENT '动作', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scene` +-- + +LOCK TABLES `scene` WRITE; +/*!40000 ALTER TABLE `scene` DISABLE KEYS */; +/*!40000 ALTER TABLE `scene` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scene_log` +-- + +DROP TABLE IF EXISTS `scene_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scene_log` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `scene_id` varchar(255) DEFAULT NULL COMMENT '场景ID', + `name` varchar(255) DEFAULT NULL COMMENT '名字', + `exec_res` text COMMENT '执行结果', + PRIMARY KEY (`id`), + KEY `idx_scene_log_scene_id` (`scene_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scene_log` +-- + +LOCK TABLES `scene_log` WRITE; +/*!40000 ALTER TABLE `scene_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `scene_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_metrics` +-- + +DROP TABLE IF EXISTS `system_metrics`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `system_metrics` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `data` longtext, + `timestamp` bigint DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_metrics` +-- + +LOCK TABLES `system_metrics` WRITE; +/*!40000 ALTER TABLE `system_metrics` DISABLE KEYS */; +INSERT INTO `system_metrics` VALUES (1,'{\"timestamp\":1738742097869,\"cpu_used_percent\":15.04717382363619,\"cpu_avg\":2.29150390625,\"memory\":{\"total\":17179869184,\"used\":13083951104,\"used_percent\":76.15861892700195},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216798257152,\"used_percent\":43.852128758902914},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1730286419,\"bytes_recv\":20067421449,\"bytes_sent_pre\":0,\"bytes_recv_pre\":0}},\"openfiles\":0}',1738742097869),(2,'{\"timestamp\":1738742157869,\"cpu_used_percent\":10.853764737413544,\"cpu_avg\":1.65869140625,\"memory\":{\"total\":17179869184,\"used\":13205307392,\"used_percent\":76.86500549316406},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216800919552,\"used_percent\":43.852667286791196},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1730717902,\"bytes_recv\":20072440307,\"bytes_sent_pre\":431483,\"bytes_recv_pre\":5018858}},\"openfiles\":0}',1738742157869),(3,'{\"timestamp\":1738742217869,\"cpu_used_percent\":10.718687218270677,\"cpu_avg\":2.6181640625,\"memory\":{\"total\":17179869184,\"used\":13302874112,\"used_percent\":77.43291854858398},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216801488896,\"used_percent\":43.85278244890885},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1731172141,\"bytes_recv\":20077490963,\"bytes_sent_pre\":454239,\"bytes_recv_pre\":5050656}},\"openfiles\":0}',1738742217869),(4,'{\"timestamp\":1738742277868,\"cpu_used_percent\":10.452288104525364,\"cpu_avg\":2.16357421875,\"memory\":{\"total\":17179869184,\"used\":13055754240,\"used_percent\":75.99449157714844},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216812294144,\"used_percent\":43.854968043630834},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1731638625,\"bytes_recv\":20082516406,\"bytes_sent_pre\":466484,\"bytes_recv_pre\":5025443}},\"openfiles\":0}',1738742277868),(5,'{\"timestamp\":1738742337868,\"cpu_used_percent\":10.000837030205876,\"cpu_avg\":1.65087890625,\"memory\":{\"total\":17179869184,\"used\":13340229632,\"used_percent\":77.65035629272461},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216813977600,\"used_percent\":43.85530855895712},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1732158726,\"bytes_recv\":20087394785,\"bytes_sent_pre\":520101,\"bytes_recv_pre\":4878379}},\"openfiles\":0}',1738742337868),(6,'{\"timestamp\":1738742397868,\"cpu_used_percent\":12.72278219077857,\"cpu_avg\":1.7490234375,\"memory\":{\"total\":17179869184,\"used\":13483196416,\"used_percent\":78.4825325012207},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216811745280,\"used_percent\":43.854857024035404},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1733791867,\"bytes_recv\":20098779540,\"bytes_sent_pre\":1633141,\"bytes_recv_pre\":11384755}},\"openfiles\":0}',1738742397868),(7,'{\"timestamp\":1738742457868,\"cpu_used_percent\":13.050759466123926,\"cpu_avg\":3.23046875,\"memory\":{\"total\":17179869184,\"used\":13635141632,\"used_percent\":79.36697006225586},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216812969984,\"used_percent\":43.855104746864015},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1735356370,\"bytes_recv\":20105766632,\"bytes_sent_pre\":1564503,\"bytes_recv_pre\":6987092}},\"openfiles\":0}',1738742457868),(8,'{\"timestamp\":1738742517867,\"cpu_used_percent\":13.646426579690491,\"cpu_avg\":2.751953125,\"memory\":{\"total\":17179869184,\"used\":13734952960,\"used_percent\":79.94794845581055},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216821751808,\"used_percent\":43.856881060390904},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1737023495,\"bytes_recv\":20111795390,\"bytes_sent_pre\":1667125,\"bytes_recv_pre\":6028758}},\"openfiles\":0}',1738742517867),(9,'{\"timestamp\":1738742577867,\"cpu_used_percent\":13.062564927436046,\"cpu_avg\":2.87646484375,\"memory\":{\"total\":17179869184,\"used\":13603078144,\"used_percent\":79.18033599853516},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216821694464,\"used_percent\":43.8568694613287},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1737866092,\"bytes_recv\":20116936405,\"bytes_sent_pre\":842597,\"bytes_recv_pre\":5141015}},\"openfiles\":0}',1738742577867),(10,'{\"timestamp\":1738742637867,\"cpu_used_percent\":13.214452059349584,\"cpu_avg\":2.61376953125,\"memory\":{\"total\":17179869184,\"used\":13532725248,\"used_percent\":78.77082824707031},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216825225216,\"used_percent\":43.857583632159006},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1738406143,\"bytes_recv\":20121608777,\"bytes_sent_pre\":540051,\"bytes_recv_pre\":4672372}},\"openfiles\":0}',1738742637867),(11,'{\"timestamp\":1738742697866,\"cpu_used_percent\":10.315114473234331,\"cpu_avg\":2.13818359375,\"memory\":{\"total\":17179869184,\"used\":13563920384,\"used_percent\":78.95240783691406},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216825495552,\"used_percent\":43.85763831345228},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1738898543,\"bytes_recv\":20126198796,\"bytes_sent_pre\":492400,\"bytes_recv_pre\":4590019}},\"openfiles\":0}',1738742697866),(12,'{\"timestamp\":1738742757866,\"cpu_used_percent\":12.66744809109184,\"cpu_avg\":2.1103515625,\"memory\":{\"total\":17179869184,\"used\":13902069760,\"used_percent\":80.92069625854492},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216826408960,\"used_percent\":43.85782306994318},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1740263952,\"bytes_recv\":20133936846,\"bytes_sent_pre\":1365409,\"bytes_recv_pre\":7738050}},\"openfiles\":0}',1738742757866),(13,'{\"timestamp\":1738742817866,\"cpu_used_percent\":11.636862902681333,\"cpu_avg\":2.353515625,\"memory\":{\"total\":17179869184,\"used\":13732872192,\"used_percent\":79.93583679199219},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216830930944,\"used_percent\":43.858737738848816},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1740745632,\"bytes_recv\":20138462294,\"bytes_sent_pre\":481680,\"bytes_recv_pre\":4525448}},\"openfiles\":0}',1738742817866),(14,'{\"timestamp\":1738742877866,\"cpu_used_percent\":11.60109574307139,\"cpu_avg\":2.11083984375,\"memory\":{\"total\":17179869184,\"used\":13552025600,\"used_percent\":78.88317108154297},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216847134720,\"used_percent\":43.86201530242736},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1741283236,\"bytes_recv\":20142502902,\"bytes_sent_pre\":537604,\"bytes_recv_pre\":4040608}},\"openfiles\":0}',1738742877866),(15,'{\"timestamp\":1738742937865,\"cpu_used_percent\":12.774762096236142,\"cpu_avg\":1.93408203125,\"memory\":{\"total\":17179869184,\"used\":13809713152,\"used_percent\":80.38311004638672},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216852193280,\"used_percent\":43.863038505415105},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1741776463,\"bytes_recv\":20146127673,\"bytes_sent_pre\":493227,\"bytes_recv_pre\":3624771}},\"openfiles\":0}',1738742937865),(16,'{\"timestamp\":1738742997865,\"cpu_used_percent\":13.803701476580283,\"cpu_avg\":2.1171875,\"memory\":{\"total\":17179869184,\"used\":13841055744,\"used_percent\":80.56554794311523},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216861904896,\"used_percent\":43.86500288945067},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1742374481,\"bytes_recv\":20150406453,\"bytes_sent_pre\":598018,\"bytes_recv_pre\":4278780}},\"openfiles\":0}',1738742997865),(17,'{\"timestamp\":1738743057865,\"cpu_used_percent\":13.224385914981735,\"cpu_avg\":2.341796875,\"memory\":{\"total\":17179869184,\"used\":13991755776,\"used_percent\":81.4427375793457},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216862527488,\"used_percent\":43.86512882212609},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1742884007,\"bytes_recv\":20153987142,\"bytes_sent_pre\":509526,\"bytes_recv_pre\":3580689}},\"openfiles\":0}',1738743057865),(18,'{\"timestamp\":1738743272037,\"cpu_used_percent\":15.043221035307672,\"cpu_avg\":2.8994140625,\"memory\":{\"total\":17179869184,\"used\":13501579264,\"used_percent\":78.58953475952148},\"disk\":{\"path\":\"/\",\"total\":494384795648,\"used\":216873963520,\"used_percent\":43.86744200653238},\"network\":{\"en0\":{\"name\":\"en0\",\"bytes_sent\":1745105340,\"bytes_recv\":20173840092,\"bytes_sent_pre\":0,\"bytes_recv_pre\":0}},\"openfiles\":0}',1738743272037); +/*!40000 ALTER TABLE `system_metrics` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `thing_model_template` +-- + +DROP TABLE IF EXISTS `thing_model_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `thing_model_template` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `category_key` varchar(255) DEFAULT NULL COMMENT '品类key', + `category_name` varchar(255) DEFAULT NULL COMMENT '品类名字', + `thing_model_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '物模型信息', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `thing_model_template` +-- + +LOCK TABLES `thing_model_template` WRITE; +/*!40000 ALTER TABLE `thing_model_template` DISABLE KEYS */; +INSERT INTO `thing_model_template` VALUES (1698826367,0,'1008835029','SmartCity','智能城市','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1009885025','DoorSensor','门磁','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"127\",\"min\":\"-127\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"lqi\",\"name\":\"信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"zsta\",\"name\":\"设备状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"batpt\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1011491662','PHDetector','酸碱度检测计','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PH\",\"name\":\"PH\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1015898024','SmartAgriculture','智能农业','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1023314383','FeatureCamera','特征摄像头','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Feature\",\"name\":\"人脸特征数据\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1037092894','ParkMagnetism','地磁车位监测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"E7\",\"identifier\":\"Ifcar\",\"name\":\"车位状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"9\",\"identifier\":\"Remain_capacity\",\"name\":\"设备剩余电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"设备故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error_alarm\",\"outputData\":[],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1045337539','ECGCard','心电卡','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Reset\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"复位\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mV\",\"unitName\":\"毫伏\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ECGSignal\",\"name\":\"心电信号\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1051151377','Stockbreeding','畜牧','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"猪的ID\",\"identifier\":\"PigID\",\"name\":\"猪的ID\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AnimalTemperature\",\"name\":\"当前体温\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1067819400','ElectricVehicleChargingStation','电动汽车充电站','{\"services\":[],\"properties\":[],\"events\":[{\"custom\":false,\"eventName\":\"离线告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'1082388978','emergency_button','紧急按钮','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"lqi\",\"name\":\"信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"zsta\",\"name\":\"设备状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"batpt\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1096887230','EnvSensor','九合一环境传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"ppm\",\"unitName\":\"ppm\"},\"dataType\":\"INT\",\"description\":\"co2Value\",\"identifier\":\"CO2\",\"name\":\"二氧化碳\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"pm2Value\",\"identifier\":\"PM25\",\"name\":\"PM25浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"pm10Value\",\"identifier\":\"PM10\",\"name\":\"PM10浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"ppm\"},\"dataType\":\"DOUBLE\",\"description\":\"HCHOValue\",\"identifier\":\"HCHO\",\"name\":\"甲醛浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"50\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"ppm\"},\"dataType\":\"DOUBLE\",\"description\":\"TVOCValue\",\"identifier\":\"Tvoc\",\"name\":\"有机挥发物浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"tempValue\",\"identifier\":\"Temperature\",\"name\":\"温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"Power\",\"identifier\":\"Battery\",\"name\":\"电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"150000\",\"min\":\"0\",\"precise\":1,\"step\":\"0.01\",\"unit\":\"Lux\",\"unitName\":\"照度\"},\"dataType\":\"DOUBLE\",\"description\":\"lightValue\",\"identifier\":\"Env_lux\",\"name\":\"环境光照度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":1,\"step\":\"0.1\",\"unit\":\"%RH\",\"unitName\":\"相对湿度\"},\"dataType\":\"FLOAT\",\"description\":\"humidityValue\",\"identifier\":\"Humidity\",\"name\":\"湿度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'109863448','LaserScanner','激光探测仪','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'110267177','PasswordAccess','密码门禁','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"remoteOpen\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"远程开门\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"setPassword\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"设置密码\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"删除密码\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"operateType\",\"name\":\"操作类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"password\",\"name\":\"密码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"number\",\"name\":\"密码编号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"userId\",\"name\":\"用户Id\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"设置密码\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"报警事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"alarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"防拆报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"防拆报警解除\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"挟持报警\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"挟持报警解除\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"三次密码错误报警\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"三次密码错误报警解除\",\"value\":5}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"alarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"通行事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"passEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"number\",\"name\":\"密码编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"userId\",\"name\":\"用户Id\",\"paraOrder\":1}],\"required\":true}]}'),(1698826367,0,'1104116459','ActiveVehMaintenance','车辆主动维护','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"ReCenterOpMessage\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"10000\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"10001\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"10002\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"10003\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"10004\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"10005\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"10007\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"10009\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"10010\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"10011\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"10012\",\"value\":12}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ReCenterMessageType\",\"name\":\"消息类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"救援消息推送\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"是\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"否\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"CollideStatus\",\"name\":\"碰撞状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无事故\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"一般事故\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"较大事故\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"重大事故\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"特别重大事故\",\"value\":4}],\"dataType\":\"ENUM\",\"identifier\":\"CollideLevels\",\"name\":\"碰撞等级\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"Invalid\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"Preview\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"Record\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"Off\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"FcRecordState\",\"name\":\"前置摄像头录制状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"False\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"Ture\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"IcRecordAudio\",\"name\":\"内置是否开启录音\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"Off\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"Low\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"Mid\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"High\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"FcwSensibility\",\"name\":\"前车预警灵敏度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"Off\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"Low\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"Mid\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"High\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"Ldw\",\"name\":\"车道偏离\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"AdasSwitch\",\"name\":\"adas开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"BtSwitch\",\"name\":\"车载蓝牙开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"DriveModeSwitch\",\"name\":\"行车模式开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WatchDogSwitch\",\"name\":\"电子狗开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"水平碰撞\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"CrashEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CrashAccP\",\"name\":\"加速度峰值\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CrashAccE\",\"name\":\"加速度原始值\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"eventName\":\"翻车\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"RolloverEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RolloverAccP\",\"name\":\"加速度峰值\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RolloverAccE\",\"name\":\"加速度原始值\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"eventName\":\"车辆稳定性\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"StabilityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StabilityAccP\",\"name\":\"加速度峰值\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StabilityAccE\",\"name\":\"加速度原始值\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'1108174085','ManholesCoverShiftDetection','井盖移位检测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"BatteryLevel\",\"name\":\"电池电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"井盖打开\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CoverState\",\"name\":\"井盖状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"180\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SafetyAngleThreshold\",\"name\":\"安全角度阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"180\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TiltValue\",\"name\":\"井盖倾斜度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1128914367','EmerBroadcasting','应急广播','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1144312330','SmartTox','智能车机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"VehAlertService\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Vin\",\"name\":\"车架号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventID\",\"name\":\"事件ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TboxID\",\"name\":\"tboxID\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OwnerID\",\"name\":\"用户ID\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StartTime\",\"name\":\"时间段起始\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"时间段末尾\",\"paraOrder\":5}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"告警结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"车辆告警服务\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"VehDtcService\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备码\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"故障码\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"ECO故障码\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"identifier\":\"GnssTime\",\"name\":\"GPS时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-128\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"identifier\":\"VehInsideTemp\",\"name\":\"车内温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"40000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"km/h\",\"unitName\":\"千米每小时\"},\"dataType\":\"DOUBLE\",\"identifier\":\"VehSpeed\",\"name\":\"速度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"Face\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"Face_Foot\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"Foot\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"Foot_Defrost\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"Defrost\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"Face_Foot_Defrost\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"Face_Defrost\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"NoMode\",\"value\":7}],\"dataType\":\"ENUM\",\"identifier\":\"VehACCircDirection\",\"name\":\"空调循环模式\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"BetweenRanges\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"ParkRange\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"ReverseRange\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"NeutralRange\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"ForwardRangeA\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"ForwardRangeB\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"ForwardRangeC\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"ForwardRangeD\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"ForwardRangeE\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"ForwardRangeF\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"ForwardRangeG\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"ForwardRangeH\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"Reserved1\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"Reserved2\",\"value\":13},{\"dataType\":\"ENUM\",\"name\":\"LeverPositionUnknown\",\"value\":15}],\"dataType\":\"ENUM\",\"identifier\":\"VehGearPos\",\"name\":\"档位\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataType\":\"DOUBLE\",\"identifier\":\"Altitude\",\"name\":\"海拔\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"False\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"Ture\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"VehACSwitch\",\"name\":\"空调开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"identifier\":\"Longitude\",\"name\":\"经度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"identifier\":\"Latitude\",\"name\":\"纬度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"360\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"DOUBLE\",\"identifier\":\"DirectionAngle\",\"name\":\"方向角度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"碰撞事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"CrashDetectedEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"12750\",\"min\":\"0\",\"precise\":16,\"step\":\"0.01\",\"unit\":\"r/min(rpm)\",\"unitName\":\"转每分\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"vehRPM\",\"name\":\"发送机转速\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"False\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"Ture\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VehSeatBeltDrv\",\"name\":\"主驾安全带\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"eventName\":\"胎压事件\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"TyrePressureEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"False\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"Ture\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VehTyrePressFault\",\"name\":\"胎压故障\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'1157390959','Forestry','林业','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1165034453','WaterSoftener','软水机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"24\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"},\"dataType\":\"INT\",\"identifier\":\"CurrentTime_h\",\"name\":\"当前小时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1440\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"identifier\":\"CurrentTime_m\",\"name\":\"当前分钟\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"identifier\":\"CurrentTime_s\",\"name\":\"当前秒\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"365\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"d\",\"unitName\":\"天\"},\"dataType\":\"INT\",\"identifier\":\"RegenerateDays\",\"name\":\"再生间隔天数\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"24\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"},\"dataType\":\"INT\",\"identifier\":\"RegenerateTime_h\",\"name\":\"再生引发小时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1440\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"identifier\":\"RegenerateTime_m\",\"name\":\"再生引发分钟\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"INT\",\"identifier\":\"RawHardness\",\"name\":\"原水硬度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"OneKeyRegenerate\",\"name\":\"一键再生\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9999.00\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"DOUBLE\",\"identifier\":\"waterUsed\",\"name\":\"已用总水量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"99.00\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"FLOAT\",\"identifier\":\"RemainingWater\",\"name\":\"再生剩余水量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"NoSaltFlag\",\"name\":\"缺盐报警\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m³/h\",\"unitName\":\"立方米每小时\"},\"dataType\":\"DOUBLE\",\"identifier\":\"InstantaneousFlow\",\"name\":\"瞬时流量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"ENUM\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"手动默认\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"阅读\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"影院\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"夜灯\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"生活\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"柔和\",\"value\":5}],\"dataType\":\"ENUM\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Faultreport\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"水超温\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"传感器故障\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"加热器缺水\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"error\",\"name\":\"故障\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'1168367275','ContactOxidationPool','接触氧化池','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1171555224','InnerInsulationCurtain','内保温帘幕','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1172037797','EnergyMangement','能源管理','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1173627404','FaceIdentification','客群识别设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Identity\",\"name\":\"人员特征数据\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1196050991','ParkWNC','超声车位检测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Ifcar\",\"name\":\"车位状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1221249300','CoSee','大屏投放终端','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RemoteControl\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"message\",\"name\":\"遥控信息\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"远程遥控\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"设备地理位置\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"遥控处理结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ControlResult\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"function\",\"name\":\"功能名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"error\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"success\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"success\",\"name\":\"处理结果\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"errorMessage\",\"name\":\"错误消息\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"显示内容更新\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"RefreshSchedule\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"更新失败\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"更新成功\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"更新结果\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"设备异常告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"errorCode\",\"name\":\"异常类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"error\",\"name\":\"异常详情\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'1242194897','InductionCooker','电磁炉','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"7\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PowerLevel\",\"name\":\"功率档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"300\",\"min\":\"30\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未识别出\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"煮\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"煎\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"炸\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CookingState\",\"name\":\"烹饪状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"350\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1251622886','SecondSedimentationPool','二沉池','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1254926827','Dryer','干衣机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"BacteriostatSwitch\",\"name\":\"蓝光抑菌开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"1\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"NTC短路\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"NTC开路\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"超温保护\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1261912850','DrinkingFoundation','饮水机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"低液位\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"高液位\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WaterLevel\",\"name\":\"饮水机液位\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WirelessModelStatus\",\"name\":\"无线转接模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1291445362','MicrowaveDetector','微波人体探测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"INT\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1303239667','Bathtub','浴缸','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FillerOn\",\"name\":\"开启注水\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FillerOff\",\"name\":\"停止注水\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"DrainOn\",\"name\":\"开启排水\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"DrainOff\",\"name\":\"关闭排水\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"WaterLevel\",\"name\":\"设置水位\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1335602211','NoodleMaker','面条机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"和面\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"醒面\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"出面\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"报警\",\"value\":7}],\"dataType\":\"ENUM\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"identifier\":\"RemainWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"盒盖\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开盖\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"CoverState\",\"name\":\"盖子状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"水量值无意义\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"自动加水\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"手动加水\",\"value\":2}],\"dataType\":\"ENUM\",\"identifier\":\"AddWaterModel\",\"name\":\"加水模式\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"INT\",\"identifier\":\"WaterRequire\",\"name\":\"水量值\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"INT\",\"identifier\":\"FlourValue\",\"name\":\"面粉量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"快速面\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"劲道面\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"宝宝面\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"饺子皮\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"和面团\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"荞麦面\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"果蔬面\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"鸡蛋面\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"搅拌\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"挤面\",\"value\":10}],\"dataType\":\"ENUM\",\"identifier\":\"LocalRecipes\",\"name\":\"本地食谱\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"Workingswitch\",\"name\":\"工作开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1352704339','FireButton','消防手报','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1353421502','Sterilizer','消毒柜','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"FullAutoModeSwitch\",\"name\":\"全自动模式开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DryingUpperSwitch\",\"name\":\"上层烘干开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"HumidityUpper\",\"name\":\"上室湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IonsSwitch\",\"name\":\"负离子开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"OzoneUpperSwitch\",\"name\":\"上室臭氧开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PreserveUpperSwitch\",\"name\":\"上层保鲜开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SmartMouldproofSwitch\",\"name\":\"智能防霉开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"300\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TemperatureLower\",\"name\":\"下室温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"TempLowerSwitch\",\"name\":\"下室高温开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"300\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TemperatureUpper\",\"name\":\"上室温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"TimerSwitch\",\"name\":\"预约开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"VigorousDisinfectionUpperSwitch\",\"name\":\"上层强消毒开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WarmplateLowerSwitch\",\"name\":\"下室暖盘开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WarmplateUpperSwitch\",\"name\":\"上室暖盘开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"启动\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"取消\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"取消预约\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Disinfection_Status\",\"name\":\"消毒柜工作状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"空闲\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"消毒\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"烘干\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"暖碟\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"延时解锁\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"快洁\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"智能消毒\",\"value\":6}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Disinfection_Mode\",\"name\":\"消毒柜工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"work_left_time\",\"name\":\"工作剩余时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"86399\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Start_Timer\",\"name\":\"定时启动\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在进行固件升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在进行固件升级\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":254},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"UnableToWorkTimeSlot\",\"name\":\"碗碟使用时间段\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"传感器故障\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"消毒故障\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"加热故障\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"通讯故障\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Disinfection_Error_Code\",\"name\":\"消毒柜故障号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"current_temperature\",\"name\":\"腔体当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"腔体当前湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"O3\",\"name\":\"腔体当前臭氧浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"固件升级\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ota_status\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在进行固件升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在进行固件升级\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'1361070456','FoodDehydrator','食物烘干机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-20\",\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"NTC短路\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"NTC开路\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"超温保护\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1370981554','KitchenAppliance','厨房电器','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'137530368','FireDoor','防火门','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"完好\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"轻微受损\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"严重受损\",\"value\":2}],\"dataType\":\"ENUM\",\"identifier\":\"ExtentOfDamage\",\"name\":\"受损程度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"高度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1400008318','SmartDustbin','智能垃圾桶','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'141880555','SmartPillow','智能枕','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"清醒\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"浅睡\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"深睡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"离床\",\"value\":4}],\"dataType\":\"ENUM\",\"identifier\":\"SleepStatus\",\"name\":\"睡眠状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"identifier\":\"BedTime\",\"name\":\"上床时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"identifier\":\"WakeupTime\",\"name\":\"起床时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"WakeupTimes\",\"name\":\"离枕次数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正位\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"左侧位\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"右侧位\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"SleepPosition\",\"name\":\"睡眠体位\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无汗或微汗\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"出汗\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"大汗\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"Sweat\",\"name\":\"夜汗\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"1\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"HeartRate\",\"name\":\"心率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"1\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"RespiratoryRate\",\"name\":\"呼吸率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"43\",\"min\":\"35\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"identifier\":\"BodyTemp\",\"name\":\"体温\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"50\",\"min\":\"-20\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"identifier\":\"RoomTemp\",\"name\":\"卧室温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"identifier\":\"RoomHumidity\",\"name\":\"卧室湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1424263091','PetFeeder','宠物喂食机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"description\":\"\",\"identifier\":\"Time\",\"name\":\"设备时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LEDSwitch\",\"name\":\"LED开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"RewardButtonSwitch\",\"name\":\"打赏按钮开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"电源\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"电池\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PowerSupplyMode\",\"name\":\"供电模式\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1431848303','Charging pile','充电桩','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"单个库存查询\",\"identifier\":\"getInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"单个库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"批量库存查询\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'1440400364','SOCSmartLife','智能生活SOC','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1447148059','WaterAndFertilizerMachine','水肥一体机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"14\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"绿立方\",\"identifier\":\"TargetPH\",\"name\":\"目标PH\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"绿立方\",\"identifier\":\"TargetEC\",\"name\":\"目标EC\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1470611399','PunchingMachine','冲压机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"触发设备的工艺参数报警\",\"identifier\":\"SCraftAlarm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"E_CraftAlarm\",\"name\":\"参数报警标识\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"工艺参数报警\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"-1000000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"kPa\",\"unitName\":\"千帕\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_PT_Punch\",\"name\":\"冲压压力\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"-1000000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"cm\",\"unitName\":\"厘米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_Stroke_Punch\",\"name\":\"冲压行程\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"-1000000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"r/s(rps)\",\"unitName\":\"转每秒\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_Speed_Motor_Punch\",\"name\":\"电机转速\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"-1000000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"cm\",\"unitName\":\"厘米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_LT_Oil_Punch\",\"name\":\"润滑油液位\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"-100000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"kPa\",\"unitName\":\"千帕\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_PT_Oil_Punch\",\"name\":\"润滑油压力\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_C1_Oiling_Punch\",\"name\":\"齿轮分配阀润滑次数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_C2_Oiling_Punch\",\"name\":\"顶置分配阀压润滑次数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_C3_Oiling_Punch\",\"name\":\"滑块分配阀压润滑次数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"设备理想生产周期\",\"identifier\":\"E_Craft_Ideal_Cycle_Time\",\"name\":\"设备理想生产周期\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备合格率\",\"identifier\":\"E_Q\",\"name\":\"设备合格率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备性能稼动率\",\"identifier\":\"E_P\",\"name\":\"设备性能稼动率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备时间稼动率\",\"identifier\":\"E_A\",\"name\":\"设备时间稼动率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备最新的OEE\",\"identifier\":\"E_OEE\",\"name\":\"设备综合效率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例:\\n0 -- 正常运行\\n1 -- 缺料\\n2 -- 无生产任务\\n3 -- 休息\",\"identifier\":\"E_Stop_Reason\",\"name\":\"停机原因\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"设备运行总时间\",\"identifier\":\"E_TotalRunTime\",\"name\":\"设备运行总时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备次品的累加器\",\"identifier\":\"E_Defect_UP\",\"name\":\"设备不良品\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备产量的累加器\",\"identifier\":\"E_OutPut_UP\",\"name\":\"设备产量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"E_Status_UP == 0 初始状态(开机)\\nE_Status_UP == 1 运行\\nE_Status_UP == 2 停止\\nE_Status_UP == 3 故障\",\"identifier\":\"E_Status_UP\",\"name\":\"设备运行状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'147242329','LocalControlCenter','中控屏','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1500818130','Breaker','通断器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PowerSwitch_1\",\"name\":\"开关1\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1514170535','VibrationSensor','震动传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"1级灵敏度\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"2级灵敏度\",\"value\":2}],\"dataType\":\"ENUM\",\"identifier\":\"SensitivitySettings\",\"name\":\"灵敏度设置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未报警状态\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"报警状态\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"AlarmState\",\"name\":\"报警状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1518676635','SmartDoorIntercoms','门禁对讲机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopPushStreaming\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止直播流\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"辅码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PreTime\",\"name\":\"提前推流时间\",\"paraOrder\":5}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"设备不支持\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备资源不足\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"推流连接成功\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"推流结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"开启直播流\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopVoiceIntercom\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止语音对讲\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"VoiceMessageDownstream\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"MessageData\",\"name\":\"语音消息\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"语音消息下发\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVoiceIntercom\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"IntercomUrl\",\"name\":\"对讲地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Key\",\"name\":\"加解密秘钥\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加解密类型\",\"paraOrder\":2}],\"outputParams\":[],\"required\":true,\"serviceName\":\"开始语音对讲\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常状态\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"翻转状态\",\"value\":1}],\"dataType\":\"ENUM\",\"identifier\":\"ImageFlipState\",\"name\":\"画面翻转状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"ENUM\",\"identifier\":\"AlarmSwitch\",\"name\":\"报警开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LockState\",\"name\":\"门锁状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"DoorNumber\",\"name\":\"呼叫门牌号\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"空闲\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"呼叫中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"通话中\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"IntercomState\",\"name\":\"对讲机状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StreamVideoQuality\",\"name\":\"主码流视频质量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SubStreamVideoQuality\",\"name\":\"辅码流视频质量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MotionDetectSensitivity\",\"name\":\"移动侦测灵敏度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"NTC短路\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"NTC开路\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"超温保护\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1519979404','ZigbeeTemplate','Zigbee功能模板','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"868M\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"915M\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"2_4G\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ZB_Band\",\"name\":\"ZB带宽\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"NETWORK_KEY\",\"name\":\"网络秘钥\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ZB_CO_MAC\",\"name\":\"ZB设备MAC地址\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"EXT_PAN_ID\",\"name\":\"扩展网路标识\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"26\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ZB_Channel\",\"name\":\"ZB通道\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ZB_PAN_ID\",\"name\":\"网路标识\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1523909028','ElevatorCollectingBox','电梯集采盒','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1537623169','Locator','定位器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1547348904','BodyFatScale','体脂秤','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"FactoryReset\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"恢复出厂设置\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"MeasureBodyFat\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserAge\",\"name\":\"用户年龄\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"男\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"女\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserGender\",\"name\":\"用户性别\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"300\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"cm\",\"unitName\":\"厘米\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserHeight\",\"name\":\"用户身高\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"500\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"BMI\",\"name\":\"BMI\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FatRate\",\"name\":\"脂肪率\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"MoistureRate\",\"name\":\"水分率\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"MuscleRate\",\"name\":\"肌肉率\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"cal\",\"unitName\":\"卡路里\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"BMR\",\"name\":\"基础代谢率\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"20000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"cal\",\"unitName\":\"卡路里\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AMR\",\"name\":\"活动代谢率\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"Ω\",\"unitName\":\"欧姆\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Impedance\",\"name\":\"阻抗\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"400\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"MuscleMass\",\"name\":\"肌肉重量\",\"paraOrder\":7},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"MeasurementCurrentTime\",\"name\":\"测量当前时间\",\"paraOrder\":8},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"200\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SkeletalMuscle\",\"name\":\"骨骼肌\",\"paraOrder\":9},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"300\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kg\",\"unitName\":\"千克\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Weight\",\"name\":\"体重\",\"paraOrder\":10},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"BoneMass\",\"name\":\"骨骼率\",\"paraOrder\":11},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModyScore\",\"name\":\"健康评分\",\"paraOrder\":12},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"BodyAge\",\"name\":\"身体年龄\",\"paraOrder\":13},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"200\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VisceralFat\",\"name\":\"内脏脂肪\",\"paraOrder\":14},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"200\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SubcutaneousFat\",\"name\":\"皮下脂肪\",\"paraOrder\":15},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"200\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Protein\",\"name\":\"蛋白质\",\"paraOrder\":16},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":17}],\"required\":false,\"serviceName\":\"测量体脂\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"千克\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"磅\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"英石\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"斤\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"公斤\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MeasurementUnit\",\"name\":\"测量单位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1557255132','WaterloggingSensor','水浸检测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"BatteryLevel\",\"name\":\"电池电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"水浸\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterLeachState\",\"name\":\"水浸状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1576959251','ChargingPile','非机动车充电桩','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1587619206','LiftTable','升降桌','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"cm\",\"unitName\":\"厘米\"},\"dataType\":\"INT\",\"identifier\":\"Height\",\"name\":\"高度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"位置一\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"位置二\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"位置三\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"位置四\",\"value\":4}],\"dataType\":\"ENUM\",\"identifier\":\"Position\",\"name\":\"预设位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"ChildLock\",\"name\":\"童锁\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"厘米\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"英尺\",\"value\":1}],\"dataType\":\"ENUM\",\"identifier\":\"HeightUnit\",\"name\":\"高度单位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PositionSet\",\"name\":\"位置记忆\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1593444984','VREquipment','智能VR类设备','{\"services\":[],\"properties\":[],\"events\":[{\"custom\":false,\"eventName\":\"离线告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[],\"required\":true}]}'),(1698826367,0,'160015396','CuttingMachine','裁床','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopJob\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止任务\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"LoadFile\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AbsoluteDirectoryAndFileName\",\"name\":\"文件目录和文件名\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"下载文件\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ReadMaxCutSpeed\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"MaxCutSpeed\",\"name\":\"最大速度\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"读取最大速度\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ReadMachineState\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"standby\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"locked\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"active\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"jogg\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"pause\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"MachineState\",\"name\":\"机器状态\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"读取机器状态\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"机器状态变更事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"MachineStateChangedEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"Standby\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"Locked\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"Active\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"Jogg\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"Pause\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"MachineState\",\"name\":\"机器状态\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1602881749','Logisticsmonitoring','仓储运输环境检测设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"85\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Temperature\",\"name\":\"环境温度监测\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Humidity\",\"name\":\"湿度监测\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"300\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"Pa\",\"unitName\":\"帕\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Airpressure\",\"name\":\"气压监测\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"150\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Vibrationtilt\",\"name\":\"震动倾斜监测\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"65534\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"J\",\"unitName\":\"焦耳\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Eenergy\",\"name\":\"震动能量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Intervals\",\"name\":\"监测时间\"},{\"childDataType\":\"INT\",\"childName\":\"开始延迟\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"startDelay\",\"name\":\"监测时间\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"Monitoringtime\",\"name\":\"监测时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"获取状态\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"GetState\",\"outputData\":[],\"required\":true}]}'),(1698826367,0,'1608871286','GovernmentLed','路政设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未查询\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"查询\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"query\",\"name\":\"查询车位余量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"remain\",\"name\":\"车位余量信息\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1618808803','GlueSprayingMachine','涂胶机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"触发设备的工艺参数报警\",\"identifier\":\"SCraftAlarm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"E_CraftAlarm\",\"name\":\"参数报警标识\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"工艺参数报警\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100000\",\"min\":\"-100000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"Pa\",\"unitName\":\"帕\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_PT_Gum\",\"name\":\"出胶压力\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"-1000000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_Speed_Gum\",\"name\":\"运行速度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"设备理想生产周期\",\"identifier\":\"E_Craft_Ideal_Cycle_Time\",\"name\":\"设备理想生产周期\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备合格率\",\"identifier\":\"E_Q\",\"name\":\"设备合格率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备性能稼动率\",\"identifier\":\"E_P\",\"name\":\"设备性能稼动率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备时间稼动率\",\"identifier\":\"E_A\",\"name\":\"设备时间稼动率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备最新的OEE\",\"identifier\":\"E_OEE\",\"name\":\"设备综合效率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例:\\n0 -- 正常运行\\n1 -- 缺料\\n2 -- 无生产任务\\n3 -- 休息\",\"identifier\":\"E_Stop_Reason\",\"name\":\"停机原因\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"设备运行总时间\",\"identifier\":\"E_TotalRunTime\",\"name\":\"设备运行总时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备次品的累加器\",\"identifier\":\"E_Defect_UP\",\"name\":\"设备不良品\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备产量的累加器\",\"identifier\":\"E_OutPut_UP\",\"name\":\"设备产量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"E_Status_UP == 0 初始状态(开机)\\nE_Status_UP == 1 运行\\nE_Status_UP == 2 停止\\nE_Status_UP == 3 故障\",\"identifier\":\"E_Status_UP\",\"name\":\"设备运行状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1623440002','RainGauge','雨量计','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1623452877','ElevatorController','梯控','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"ReleaseFloors\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"targetFloorsList\",\"name\":\"要释放的楼层\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"释放受控楼层\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"ConfigQrCodePermission\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"identityId\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"qrCode\",\"name\":\"二维码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"effectiveTime\",\"name\":\"生效时间\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"expireTime\",\"name\":\"过期时间\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"permission\",\"name\":\"楼层权限\",\"paraOrder\":4}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"retCode\",\"name\":\"返回码\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"配置二维码权限\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"DelQrCodePermission\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"identityId\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"qrCode\",\"name\":\"二维码\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"删除二维码权限\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryQrCodePermission\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"identityId\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"qrCode\",\"name\":\"二维码\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"effectiveTime\",\"name\":\"生效时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"expireTime\",\"name\":\"过期时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"permission\",\"name\":\"楼层权限\",\"paraOrder\":2}],\"required\":true,\"serviceName\":\"查询二维码权限\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CallElevator\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"targetFloor\",\"name\":\"目标楼层\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"startFloor\",\"name\":\"起始楼层\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"identityId\",\"name\":\"用户ID\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"起始楼层电梯A门\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"起始楼层电梯B门\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"startFloorDoor\",\"name\":\"起始楼层电梯门\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"目标楼层电梯A门\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"目标楼层电梯B门\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"targetFloorDoor\",\"name\":\"目标楼层电梯门\",\"paraOrder\":4}],\"outputParams\":[],\"required\":true,\"serviceName\":\"呼梯\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryStatus\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Params\",\"name\":\"输入参数\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"127\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Status\",\"name\":\"电梯状态\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CurrentFloor\",\"name\":\"当前楼层\",\"paraOrder\":1}],\"required\":false,\"serviceName\":\"查询电梯状态\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"二维码刷梯释放楼层事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ScanQrCodeForElevatorEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"identityId\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"qrCode\",\"name\":\"二维码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"releaseFloors\",\"name\":\"已释放的楼层\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"呼梯事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"CallElevatorEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"identityId\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"startFloor\",\"name\":\"起始楼层\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"targetFloor\",\"name\":\"目标楼层\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"目标楼层电梯A门\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"目标楼层电梯B门\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"targetFloorDoor\",\"name\":\"目标楼层电梯门\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"起始楼层电梯A门\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"起始楼层电梯B门\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"startFloorDoor\",\"name\":\"起始楼层电梯门\",\"paraOrder\":4}],\"required\":true}]}'),(1698826367,0,'1625474142','ParkingSpace','停车车位','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StateParked\",\"name\":\"驻车状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ParkedNumber\",\"name\":\"驻车车牌\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"车位状态变化\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"UpdateParkSpaceStatus\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StateParked\",\"name\":\"驻车状态\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkedNumber\",\"name\":\"驻车车牌\",\"paraOrder\":1}],\"required\":true}]}'),(1698826367,0,'16443857','MechanicalControlValve','机械控制阀','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"Switch\",\"name\":\"阀门开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1660784707','WindSensor','风速传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Speed\",\"name\":\"速度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1682684124','Doorbell','门铃','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"静音\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低音\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中音\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高音\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"VolumeLevel\",\"name\":\"音量档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无人\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有人\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"MotionAlarmState\",\"name\":\"红外检测状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"VolumePercentage\",\"name\":\"音量百分比\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1700030138','GrainMill','谷物碾磨机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"把本地时间同步到NVR上\",\"identifier\":\"SyncTime\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LocalTime\",\"name\":\"本地时间\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"失败\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"成功\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncTimeStatus\",\"name\":\"状态\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"同步时间\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"50\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Temperature\",\"name\":\"储仓温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"故障上报\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[],\"required\":false}]}'),(1698826367,0,'1722739723','Metering_socket','带计量功能插座','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"energy\",\"name\":\"总电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"actp\",\"name\":\"有功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"reactp\",\"name\":\"无功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"INT\",\"description\":\"插座电流值\",\"identifier\":\"curr\",\"name\":\"当前电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"INT\",\"description\":\"当前电压\",\"identifier\":\"volt\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ON\",\"name\":\"开关控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1728402995','AirConditioning','空调机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_1\",\"name\":\"当前温度_1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_2\",\"name\":\"当前温度_2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_3\",\"name\":\"当前温度_3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_4\",\"name\":\"当前温度_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_5\",\"name\":\"当前温度_5\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_6\",\"name\":\"当前温度_6\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_7\",\"name\":\"当前温度_7\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_8\",\"name\":\"当前温度_8\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_9\",\"name\":\"当前温度_9\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_10\",\"name\":\"当前温度_10\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_11\",\"name\":\"当前温度_11\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_12\",\"name\":\"当前温度_12\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_13\",\"name\":\"当前温度_13\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_14\",\"name\":\"当前温度_14\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_15\",\"name\":\"当前温度_15\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_16\",\"name\":\"当前温度_16\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_17\",\"name\":\"当前温度_17\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_18\",\"name\":\"当前温度_18\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_19\",\"name\":\"当前温度_19\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature_20\",\"name\":\"当前温度_20\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_1\",\"name\":\"目标温度_1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_2\",\"name\":\"目标温度_2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_3\",\"name\":\"目标温度_3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_4\",\"name\":\"目标温度_4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_5\",\"name\":\"目标温度_5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_6\",\"name\":\"目标温度_6\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_7\",\"name\":\"目标温度_7\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_8\",\"name\":\"目标温度_8\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_9\",\"name\":\"目标温度_9\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_10\",\"name\":\"目标温度_10\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_11\",\"name\":\"目标温度_11\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_12\",\"name\":\"目标温度_12\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_13\",\"name\":\"目标温度_13\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_14\",\"name\":\"目标温度_14\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_15\",\"name\":\"目标温度_15\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_16\",\"name\":\"目标温度_16\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_17\",\"name\":\"目标温度_17\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_18\",\"name\":\"目标温度_18\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_19\",\"name\":\"目标温度_19\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"23\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature_20\",\"name\":\"目标温度_20\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ChannelCount\",\"name\":\"中央空调通道数量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ECO\",\"name\":\"ECO\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_1\",\"name\":\"电源开关_1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_2\",\"name\":\"电源开关_2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_3\",\"name\":\"电源开关_3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_4\",\"name\":\"电源开关_4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_5\",\"name\":\"电源开关_5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_6\",\"name\":\"电源开关_6\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_7\",\"name\":\"电源开关_7\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_8\",\"name\":\"电源开关_8\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_9\",\"name\":\"电源开关_9\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_10\",\"name\":\"电源开关_10\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_11\",\"name\":\"电源开关_11\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_12\",\"name\":\"电源开关_12\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_13\",\"name\":\"电源开关_13\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_14\",\"name\":\"电源开关_14\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_15\",\"name\":\"电源开关_15\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_16\",\"name\":\"电源开关_16\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_17\",\"name\":\"电源开关_17\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_18\",\"name\":\"电源开关_18\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_19\",\"name\":\"电源开关_19\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_20\",\"name\":\"电源开关_20\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_1\",\"name\":\"风速_1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_2\",\"name\":\"风速_2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_3\",\"name\":\"风速_3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_4\",\"name\":\"风速_4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_5\",\"name\":\"风速_5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_6\",\"name\":\"风速_6\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_7\",\"name\":\"风速_7\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_8\",\"name\":\"风速_8\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_9\",\"name\":\"风速_9\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_10\",\"name\":\"风速_10\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_11\",\"name\":\"风速_11\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_12\",\"name\":\"风速_12\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_13\",\"name\":\"风速_13\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_14\",\"name\":\"风速_14\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_15\",\"name\":\"风速_15\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_16\",\"name\":\"风速_16\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_17\",\"name\":\"风速_17\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_18\",\"name\":\"风速_18\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_19\",\"name\":\"风速_19\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed_20\",\"name\":\"风速_20\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_1\",\"name\":\"工作模式_1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_2\",\"name\":\"工作模式_2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_3\",\"name\":\"工作模式_3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_4\",\"name\":\"工作模式_4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_5\",\"name\":\"工作模式_5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_6\",\"name\":\"工作模式_6\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_7\",\"name\":\"工作模式_7\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_8\",\"name\":\"工作模式_8\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_9\",\"name\":\"工作模式_9\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_10\",\"name\":\"工作模式_10\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_11\",\"name\":\"工作模式_11\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_12\",\"name\":\"工作模式_12\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_13\",\"name\":\"工作模式_13\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_14\",\"name\":\"工作模式_14\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_15\",\"name\":\"工作模式_15\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_16\",\"name\":\"工作模式_16\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_17\",\"name\":\"工作模式_17\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_18\",\"name\":\"工作模式_18\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_19\",\"name\":\"工作模式_19\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode_20\",\"name\":\"工作模式_20\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Blo\",\"name\":\"干燥\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Ions\",\"name\":\"健康_负离子\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PTC\",\"name\":\"电辅_辅热\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Quiet\",\"name\":\"静音\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Screen\",\"name\":\"背景灯_屏显\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Sleep\",\"name\":\"睡眠\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Turbo\",\"name\":\"强力\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Buzzer\",\"name\":\"蜂鸣器\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"VerticalSwitch\",\"name\":\"上下摆风开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HorizontalSwitch\",\"name\":\"水平摆风开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"30\",\"min\":\"16\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"风速\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"4000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentPower\",\"name\":\"当前功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PowerConsumption\",\"name\":\"功耗\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[119].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1765947815','Airfryer','空气炸锅','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"Start\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"默认菜单\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"冻薯条\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"牛排\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"鸡腿\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"蛋糕\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"虾\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"披萨\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"鱼\",\"value\":7}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Menu\",\"name\":\"菜单\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"precise\":16,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"460\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"℉\",\"unitName\":\"华氏度\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ToastTemperature\",\"name\":\"烘烤温度\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"precise\":16,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"NotificationTime\",\"name\":\"提醒时间点\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"开始\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"暂停\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PauseSwtich\",\"name\":\"暂停开关\",\"paraOrder\":4}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"失败\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"成功\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"设置结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"启动\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"AppointmentStart\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"默认菜单\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"冻薯条\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"牛排\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"鸡腿\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"蛋糕\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"虾\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"披萨\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"鱼\",\"value\":7}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Menu\",\"name\":\"菜单\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"precise\":16,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"460\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"℉\",\"unitName\":\"华氏度\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ToastTemperature\",\"name\":\"烘烤温度\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"precise\":16,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"NotificationTime\",\"name\":\"提醒时间点\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"开始\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"暂停\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PauseSwtich\",\"name\":\"暂停开关\",\"paraOrder\":5}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"失败\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"成功\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"设置结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"预约启动\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"开始\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"暂停\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PauseSwtich\",\"name\":\"暂停开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"默认菜单\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"冻薯条\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"牛排\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"鸡腿\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"蛋糕\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"虾\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"披萨\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"鱼\",\"value\":7}],\"dataType\":\"ENUM\",\"identifier\":\"Menu\",\"name\":\"菜单\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"460\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"℉\",\"unitName\":\"华氏度\"},\"dataType\":\"INT\",\"identifier\":\"ToastTemperature\",\"name\":\"烘烤温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"460\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"℉\",\"unitName\":\"华氏度\"},\"dataType\":\"DOUBLE\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"默认菜单\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"冻薯条\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"牛排\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"鸡腿\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"蛋糕\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"虾\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"披萨\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"鱼\",\"value\":7}],\"dataType\":\"ENUM\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余时间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"identifier\":\"NotificationTime\",\"name\":\"提醒时间点\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"华氏度\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"摄氏度\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"TemperatureUnit\",\"name\":\"温度单位\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WotkSwitch\",\"name\":\"工作开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"NTC短路\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"NTC开路\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"超温保护\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"eventName\":\"时间点提醒\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TimeNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"precise\":16,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Time\",\"name\":\"提醒时间点\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'1767235158','SmartSprinklerTerminal','喷灌智能终端','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"TerminalStatus\",\"name\":\"智能终端状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IrrigationPumpStatus\",\"name\":\"灌溉水泵状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SprayPumpStatus\",\"name\":\"喷淋水泵状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PlantGrowthLight\",\"name\":\"植物生长灯状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不到高水位\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"达到高水位\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HighWaterLevel\",\"name\":\"高水位状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不到中水位\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"达到中水位\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"MiddleWaterLevel\",\"name\":\"中水位状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"低水位\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"低于低水位\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LowWaterLevel\",\"name\":\"低水位状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1776116678','Scene','场景面板','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteScene\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SceneID\",\"name\":\"场景ID\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"删除场景\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"场景无触发\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"场景触发\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SceneTrigger\",\"name\":\"场景触发\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SceneName\",\"name\":\"场景名称\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"场景无触发\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"场景触发\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SceneTrigger_1\",\"name\":\"场景触发_1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"场景无触发\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"场景触发\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SceneTrigger_2\",\"name\":\"场景触发_2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"场景无触发\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"场景触发\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SceneTrigger_3\",\"name\":\"场景触发_3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"场景无触发\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"场景触发\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SceneTrigger_4\",\"name\":\"场景触发_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SceneName_1\",\"name\":\"场景名称_1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SceneName_2\",\"name\":\"场景名称_2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SceneName_3\",\"name\":\"场景名称_3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SceneName_4\",\"name\":\"场景名称_4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ScreenLevel\",\"name\":\"场景面板亮度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1791914836','FireSafety','消防安全','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1794666019','epd_table','电子纸桌签','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2},\"dataType\":\"TEXT\",\"identifier\":\"Test001\",\"name\":\"测试001\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1805672886','Soilsensor','土壤传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"airTemp\",\"name\":\"大棚空气温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"airHumidity\",\"name\":\"大棚空气湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"soilTemperature\",\"name\":\"土壤温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"soilHumidity\",\"name\":\"土壤湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"lightLuxValue\",\"name\":\"光照度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"655350\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"co2\",\"name\":\"二氧化碳浓度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"20000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"soilEC\",\"name\":\"大棚土壤EC值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"voltage\",\"name\":\"电源电压\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"soilPH\",\"name\":\"土壤PH值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1831371304','campus','智能园区','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1840404149','PublicService','公共服务','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1843363397','WetCurtain','湿帘','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1847287217','WaterPurifier','净水器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要更换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_1\",\"name\":\"滤芯寿命状态_1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要更换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_2\",\"name\":\"滤芯寿命状态_2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要更换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_3\",\"name\":\"滤芯寿命状态_3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要更换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_4\",\"name\":\"滤芯寿命状态_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要更换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_5\",\"name\":\"滤芯寿命状态_5\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"ppm\",\"unitName\":\"百万分率\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FinishedWaterTDS\",\"name\":\"出水TDS\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_1\",\"name\":\"滤芯寿命百分比_1\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_2\",\"name\":\"滤芯寿命百分比_2\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_3\",\"name\":\"滤芯寿命百分比_3\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_4\",\"name\":\"滤芯寿命百分比_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_5\",\"name\":\"滤芯寿命百分比_5\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_1\",\"name\":\"滤芯寿命天数_1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_2\",\"name\":\"滤芯寿命天数_2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_3\",\"name\":\"滤芯寿命天数_3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_4\",\"name\":\"滤芯寿命天数_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_5\",\"name\":\"滤芯寿命天数_5\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PurePercent\",\"name\":\"制水进度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"制水中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PureState\",\"name\":\"制水状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PureSwitch\",\"name\":\"制水开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"ppm\",\"unitName\":\"百万分率\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RawWaterTDS\",\"name\":\"原水TDS\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TotalInput\",\"name\":\"总进水量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TotalPureWater\",\"name\":\"总制水量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"WashingPercent\",\"name\":\"冲洗进度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"冲洗中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WashingState\",\"name\":\"冲洗状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WashingSwitch\",\"name\":\"冲洗开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"满水\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterStatus\",\"name\":\"满水状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WaterTemperature\",\"name\":\"水温\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制水\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"冲洗\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"缺水\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"满水\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1848462901','ActiveInfraredIntrusionDetectors','红外对射探测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1858382471','IlluminationSensor','光照度传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"65535\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"Lux\",\"unitName\":\"照度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"MeasuredIlluminance\",\"name\":\"光照度检测值\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1863176363','Sphygmomanometer','电子血压计','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":16},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"NumberModel\",\"name\":\"型号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":12},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"NumberSerial\",\"name\":\"设备号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1864612847','CurrentTemperature','室内温度传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"120\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1865972890','TemperatureHumidityDetector','温湿度检测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"120\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"当前湿度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1884942997','FaceRecognizeDevice','人脸识别机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryDataCheckCode\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"CheckTime\",\"name\":\"校验截止时间戳\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询设备数据校验码\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryUserData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventTime\",\"name\":\"用户信息事件时间戳\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FacePicList\",\"name\":\"图片列表\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"图片Md5\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[1].outputParams[3].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"FaceMd5\",\"name\":\"特征列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法Id\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.services[1].outputParams[3].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"特征列表\"}],\"dataType\":\"ARRAY\",\"size\":100},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FeatureList\",\"name\":\"特征列表\",\"paraOrder\":3}],\"required\":true,\"serviceName\":\"查询用户是否存在\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncFaceData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FaceDataUrl\",\"name\":\"人脸数据URL地址\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"同步人脸数据\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"高度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"人脸库同步确认\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnSync\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncTime\",\"name\":\"同步时间戳\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Payload\",\"name\":\"透传参数\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"同步成功\",\"value\":200},{\"dataType\":\"ENUM\",\"name\":\"同步失败重试\",\"value\":201},{\"dataType\":\"ENUM\",\"name\":\"同步失败不重试\",\"value\":202}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"状态码\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"上报设备数据校验码\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"PublishDataCheckCode\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"获取校验码成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"获取校验码失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"取消获取校验码\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"状态码\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserInfoCheckCode\",\"name\":\"用户消息校验码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PicCheckCode\",\"name\":\"人脸图片校验码\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FeatureCheckCode\",\"name\":\"特征值校验码\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CheckTime\",\"name\":\"校验截止时间戳\",\"paraOrder\":4}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"智能告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"IntelligentAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001}],\"childName\":\"告警类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001}],\"dataType\":\"STRUCT\",\"identifier\":\"AlarmType\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"图片ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[2].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicID\",\"name\":\"事件列表\"},{\"childDataType\":\"INT\",\"childName\":\"图片大小\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"1\",\"step\":\"1\",\"unit\":\"Byte\",\"unitName\":\"字节\"},\"dataSpecs\":{\"$ref\":\"$.events[2].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicSize\",\"name\":\"事件列表\"},{\"childDataType\":\"DATE\",\"childName\":\"告警时间\",\"childSpecsDTO\":{\"dataType\":\"DATE\"},\"dataSpecs\":{\"$ref\":\"$.events[2].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EventTime\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"告警内容\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.events[2].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Data\",\"name\":\"事件列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventList\",\"name\":\"事件列表\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"同步人脸图片失败\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"OnFacePicError\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncTime\",\"name\":\"同步时间戳\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"16200\",\"min\":\"16001\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"错误码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FaceMd5\",\"name\":\"图片MD5值\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法ID\",\"paraOrder\":4}],\"required\":true}]}'),(1698826367,0,'1888158449','Spraying','喷涂处理','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"触发设备的工艺参数报警\",\"identifier\":\"SCraftAlarm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"E_CraftAlarm\",\"name\":\"参数报警标识\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"工艺参数报警\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100000\",\"min\":\"-100000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_Speed_China_Spray\",\"name\":\"链条速度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"-10000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_TT_Drying_Spray\",\"name\":\"烘干室温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"-10000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_TT_Solidify_Spray\",\"name\":\"固化室温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_S_Sgun_Spray\",\"name\":\"喷枪运动速度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_R_FE_Spray\",\"name\":\"出粉率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_V_Elect_Spray\",\"name\":\"静电电压\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_A_Elect_Spray\",\"name\":\"静电电流\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"设备理想生产周期\",\"identifier\":\"E_Craft_Ideal_Cycle_Time\",\"name\":\"设备理想生产周期\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备合格率\",\"identifier\":\"E_Q\",\"name\":\"设备合格率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备性能稼动率\",\"identifier\":\"E_P\",\"name\":\"设备性能稼动率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备时间稼动率\",\"identifier\":\"E_A\",\"name\":\"设备时间稼动率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备最新的OEE\",\"identifier\":\"E_OEE\",\"name\":\"设备综合效率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例:\\n0 -- 正常运行\\n1 -- 缺料\\n2 -- 无生产任务\\n3 -- 休息\",\"identifier\":\"E_Stop_Reason\",\"name\":\"停机原因\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"设备运行总时间\",\"identifier\":\"E_TotalRunTime\",\"name\":\"设备运行总时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备次品的累加器\",\"identifier\":\"E_Defect_UP\",\"name\":\"设备不良品\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备产量的累加器\",\"identifier\":\"E_OutPut_UP\",\"name\":\"设备产量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"E_Status_UP == 0 初始状态(开机)\\nE_Status_UP == 1 运行\\nE_Status_UP == 2 停止\\nE_Status_UP == 3 故障\",\"identifier\":\"E_Status_UP\",\"name\":\"设备运行状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'190894180','IceCreamMaker','冰激凌机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"保鲜\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"清洗\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"解冻\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"杀菌\",\"value\":4}],\"dataType\":\"ENUM\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"INT\",\"identifier\":\"Voltage\",\"name\":\"实际电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"INT\",\"identifier\":\"Electricity\",\"name\":\"实际电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200\",\"min\":\"-100\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"identifier\":\"FreezeCylindersTemperature\",\"name\":\"冷冻缸温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"identifier\":\"FormingRate\",\"name\":\"成型比\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"r/min(rpm)\",\"unitName\":\"转每分\"},\"dataType\":\"INT\",\"identifier\":\"RotateSpeed\",\"name\":\"实际转速\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200\",\"min\":\"-100\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"identifier\":\"EnvironmentTemperature\",\"name\":\"环境温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200\",\"min\":\"-100\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"identifier\":\"KeepFreshTemperature\",\"name\":\"保鲜温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"HitFeedCupCounts\",\"name\":\"打料杯数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"电流过载\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"CurrentOverload\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"电流过载\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CurrentOverload\",\"name\":\"电流过载\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"电压过高告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"HighVoltageAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"电压过高告警\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"电压过高告警\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"电压过低告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"LowVoltageAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"电压过低告警\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"电压过低告警\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"制冷不良\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"RefrigeratingExceptional\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"制冷不良\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"制冷不良\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"转速传感器异常\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"RotateSpeedSensorExceptional\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"转速传感器异常\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"转速传感器异常\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"皮带打滑\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"BeltSlip\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"皮带打滑\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"皮带打滑\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"低温报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"LowTemperatureWarning\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"低温报警\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"低温报警\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"缺料报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"StarvingWarning\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"缺料报警\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"缺料报警\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"通讯故障\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"CommunicationFault\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"通讯故障\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"通讯故障\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"环境温度过高告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"HighEnvironmentTempWarning\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"环境温度过高告警\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"环境温度过高告警\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"进气温度传感器异常\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"EnterAirTempSensorExceptional\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"进气温度传感器异常\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"进气温度传感器异常\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"保鲜温度异常\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"KeepFreshTempExceptional\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"保鲜温度异常\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"保鲜温度异常\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"冷冻缸温度异常\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"FreezeCylindersTempExceptional\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"冷冻缸温度异常\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"冷冻缸温度异常\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"环境温度传感器异常\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"TemperatureSensorExceptional\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"环境温度传感器异常\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error\",\"name\":\"环境温度传感器异常\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'191144811','AerobicPool','好氧池','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1917151496','Tracker','定位终端','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"36\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"630000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mA\",\"unitName\":\"毫安\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Current\",\"name\":\"当前电流\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1962903908','CustomCategory','自定义品类','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1970742516','Inverter','变频器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"INT\",\"identifier\":\"DC_V\",\"name\":\"母线电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"},\"dataType\":\"INT\",\"identifier\":\"PwOnTime\",\"name\":\"通电时间累积\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"},\"dataType\":\"INT\",\"identifier\":\"InverterRunTime\",\"name\":\"运行时间累积\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"},\"dataType\":\"INT\",\"identifier\":\"FanRunTime\",\"name\":\"风扇运行时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"30000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"identifier\":\"RadiatorTemperature\",\"name\":\"散热器温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"-32768\",\"step\":\"10\",\"unit\":\"Hz\",\"unitName\":\"赫兹\"},\"dataType\":\"INT\",\"identifier\":\"OutputFrequency\",\"name\":\"输出频率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"3000\",\"min\":\"0\",\"step\":\"10\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"INT\",\"identifier\":\"OutputVoltage\",\"name\":\"输出电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"10\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"InvertStatus_1\",\"name\":\"变频器运行状态1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"10\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"InvertStatus_2\",\"name\":\"变频器运行状态2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"10\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"InvertStatus_3\",\"name\":\"变频器运行状态3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"-32768\",\"step\":\"10\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"INT\",\"identifier\":\"OutputCurrent\",\"name\":\"输出电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1975475852','Television','电视机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"音量减\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"音量加\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Volume\",\"name\":\"音量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"频道减\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"频道加\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Channel\",\"name\":\"频道\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Mute\",\"name\":\"静音\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'1984300215','SignalCollector','游乐设备信号采集器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'1995697421','Watch','手表','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'1999931949','ElectricMotorcycle','电动摩托车','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ReBootTerminal\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TerminalID\",\"name\":\"设备ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SerialNumber\",\"name\":\"指令编号\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SerialNumber\",\"name\":\"指令编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"错误\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ExecutingState\",\"name\":\"执行状态\",\"paraOrder\":1}],\"required\":false,\"serviceName\":\"传输模块复位\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CallCycle\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TerminalID\",\"name\":\"设备ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SerialNumber\",\"name\":\"指令编号\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SerialNumber\",\"name\":\"指令编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"错误\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ExecutingState\",\"name\":\"执行状态\",\"paraOrder\":1}],\"required\":false,\"serviceName\":\"寻车\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Position\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TerminalID\",\"name\":\"设备ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SerialNumber\",\"name\":\"指令编号\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SerialNumber\",\"name\":\"指令编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"错误\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ExecutingState\",\"name\":\"执行状态\",\"paraOrder\":1}],\"required\":false,\"serviceName\":\"定位\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"100\",\"precise\":0,\"step\":\"1\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ElectronicFence\",\"name\":\"电子围栏\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"次数\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"10\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Count\",\"name\":\"震动报警灵敏度\"},{\"childDataType\":\"INT\",\"childName\":\"级别\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"16\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Level\",\"name\":\"震动报警灵敏度\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"VibrateSensitivity\",\"name\":\"震动报警灵敏度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1677721500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Mileage\",\"name\":\"里程\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DefendState\",\"name\":\"设防状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"静音\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低音量\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高音量\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AlarmVolume\",\"name\":\"报警器音量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"km/h\",\"unitName\":\"千米每小时\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Speed\",\"name\":\"骑行速度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ELock\",\"name\":\"电门锁\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"EABSLevel\",\"name\":\"电刹强度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"childName\":\"使能开关\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"EnabledSwitch\",\"name\":\"移车助力\"},{\"childDataType\":\"INT\",\"childName\":\"陡缓级别\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SteepSlowLevel\",\"name\":\"移车助力\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"MoveHelp\",\"name\":\"移车助力\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"StartStrength\",\"name\":\"启动强度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"childName\":\"使能开关\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"EnabledSwitch\",\"name\":\"安全启动\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"进入时间\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"120\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"WakeUpTime\",\"name\":\"安全启动\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"StartSecure\",\"name\":\"安全启动\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AutoCruise\",\"name\":\"自动巡航\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SaveElectricityMode\",\"name\":\"省电骑行\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerOutSwitch\",\"name\":\"放电线路开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerInSwitch\",\"name\":\"充电线路开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SaddleLockSwitch\",\"name\":\"鞍座锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"BatteryFactoryMode\",\"name\":\"电池工厂模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"非法移动告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"IllegalMoveWarning\",\"outputData\":[],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"车辆断电告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"VehiclePowerWarning\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"翻倒告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TurnoverWarning\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2003300587','Gatewaycampus','网关-园区','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"868M\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"915M\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"2_4G\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ZB_Band\",\"name\":\"ZB带宽\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"NETWORK_KEY\",\"name\":\"网络秘钥\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ZB_CO_MAC\",\"name\":\"ZB设备MAC地址\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"EXT_PAN_ID\",\"name\":\"扩展网路标识\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"26\",\"min\":\"11\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ZB_Channel\",\"name\":\"ZB通道\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ZB_PAN_ID\",\"name\":\"网路标识\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'2009249432','Teatable','茶台','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"开启全自动\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭全自动\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AutomaticSwitch\",\"name\":\"全自动\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"警告错误\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"茶台状态\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"茶几状态\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StatusSwitching\",\"name\":\"状态切换\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无物体\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有物体\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SecurityCheck\",\"name\":\"安全检测\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未满\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"水满\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DetectingWaterlLevel\",\"name\":\"水位检测\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"停止加水\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启加水\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AddWater\",\"name\":\"加水\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLock\",\"name\":\"童锁\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"description\":\"\",\"identifier\":\"TimingChange\",\"name\":\"定时切换\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"description\":\"\",\"identifier\":\"TimingRecoverChange\",\"name\":\"定时恢复切换\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"description\":\"\",\"identifier\":\"TimingBoilWater\",\"name\":\"定时烧水\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"保温温度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"HoldingTemperature\",\"name\":\"状态上报\"},{\"childDataType\":\"INT\",\"childName\":\"当前温度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"CurrentTemperature\",\"name\":\"状态上报\"},{\"childDataType\":\"INT\",\"childName\":\"加水倒计时\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AddWaterCountdown\",\"name\":\"状态上报\"},{\"childDataType\":\"INT\",\"childName\":\"加热倒计时\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"HeatingCountdown\",\"name\":\"状态上报\"},{\"childDataType\":\"INT\",\"childName\":\"消毒倒计时\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EliminateCountdown\",\"name\":\"状态上报\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"手动加水工作中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"待机工作中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"全自动工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"保温工作中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"消毒工作中\",\"value\":3}],\"childName\":\"工作状态\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"手动加水工作中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"待机工作中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"全自动工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"保温工作中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"消毒工作中\",\"value\":3}],\"dataType\":\"STRUCT\",\"identifier\":\"WorkState\",\"name\":\"状态上报\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"水壶无水\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"水壶有水\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"无水壶\",\"value\":0}],\"childName\":\"水壶状态\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"水壶无水\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"水壶有水\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"无水壶\",\"value\":0}],\"dataType\":\"STRUCT\",\"identifier\":\"KettleState\",\"name\":\"状态上报\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"开机\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关机\",\"value\":0}],\"childName\":\"开关机状态\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"开机\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关机\",\"value\":0}],\"dataType\":\"STRUCT\",\"identifier\":\"IsOpen\",\"name\":\"状态上报\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"StatusReport\",\"name\":\"状态上报\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"BinarySwitch\",\"name\":\"二进制开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低电量\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"异常\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ModuleState\",\"name\":\"模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低液位\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"高液位\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterLevel\",\"name\":\"水位\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Version\",\"name\":\"固件版本号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"停止\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"上升\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下降\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LiftingControl\",\"name\":\"升降控制\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":12},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"NumberSerial\",\"name\":\"设备号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"MachineInfo\",\"name\":\"设备信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"300\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TemperatureThreshold\",\"name\":\"温度阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"节能模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"整体加热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"单独加热\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"无加热器\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HeatMode\",\"name\":\"加热模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"进入时间\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"120\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[21].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"WakeUpTime\",\"name\":\"安全启动\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"childName\":\"使能开关\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"EnabledSwitch\",\"name\":\"安全启动\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"StartSecure\",\"name\":\"安全启动\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"茶台开关\",\"identifier\":\"PowerSwitchAll\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"茶炉开关机\",\"identifier\":\"Switch_control\",\"name\":\"开关控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"description\":\"定时切换状态\",\"identifier\":\"TargetTime\",\"name\":\"目标时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2012287666','MilkModulator','调奶器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"240\",\"min\":\"30\",\"precise\":0,\"step\":\"1\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetWaterVolume\",\"name\":\"目标水量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"55\",\"min\":\"40\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标水温\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"50\",\"min\":\"0.1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetMilkPowderVolume\",\"name\":\"目标奶粉量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"冲奶\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"出水\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"清洗\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"UV杀菌\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"风干\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2013528420','Smoke_sensor','烟感传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"127\",\"min\":\"-127\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"lqi\",\"name\":\"信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"zsta\",\"name\":\"设备状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"batpt\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2022035922','Farming','种植养殖','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2024642485','SingleSlotOutlet','SoC单孔插座','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_5\",\"name\":\"插孔开关5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_4\",\"name\":\"插孔开关4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"16\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"RMSCurrent\",\"name\":\"有效电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_7\",\"name\":\"插孔开关7\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"USBSwitch_2\",\"name\":\"USB开关2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_6\",\"name\":\"插孔开关6\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_8\",\"name\":\"插孔开关8\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"USBSwitch_4\",\"name\":\"USB开关4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_1\",\"name\":\"插孔开关1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_2\",\"name\":\"插孔开关2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"250\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"RMSVoltage\",\"name\":\"有效电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"USBSwitch_1\",\"name\":\"USB开关1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"99999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"TotalConsumption\",\"name\":\"总耗电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_3\",\"name\":\"插孔开关3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"已停止\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"执行中\",\"value\":1}],\"childName\":\"执行状态\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"已停止\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"执行中\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsRunning\",\"name\":\"本地倒计时\"},{\"childDataType\":\"INT\",\"childName\":\"剩余时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"86399\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[15].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeLeft\",\"name\":\"本地倒计时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"childName\":\"开关动作\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"PowerSwitch\",\"name\":\"本地倒计时\"},{\"childDataType\":\"DATE\",\"childName\":\"当前时间戳\",\"childSpecsDTO\":{\"dataType\":\"DATE\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.properties[15].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timestamp\",\"name\":\"本地倒计时\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"CountDown\",\"name\":\"本地倒计时\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"4000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"RealTimePower\",\"name\":\"实时功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"USBSwitch_3\",\"name\":\"USB开关3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"description\":\"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致。\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2035989273','KitchenVentilator','油烟机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"CleanSwitch\",\"name\":\"清洗开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"清洗\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"CleanWarning\",\"name\":\"清洗提醒\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LeftWindSpeed\",\"name\":\"左风量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"照明开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RightWindSpeed\",\"name\":\"右风量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"风量档位\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"4\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"KitchenVentilator_WorkMode\",\"name\":\"油烟机的工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"KitchenVentilator_MotorStall\",\"name\":\"电机挡位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在进行固件升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在进行固件升级\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"KitchenVentilator_OTA\",\"name\":\"固件升级状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未感应到\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"感应到\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ExhaustPressure\",\"name\":\"油烟机的烟道阻力大检测结果\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未感应到\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"感应到\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SmokeDetection\",\"name\":\"油烟机的烟雾浓度大实时检测结果\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"KitchenVentilator_ErrorCode\",\"name\":\"油烟机故障号\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2042073701','FireWaterCannon','智能消防水炮','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2044175778','AdvertTerminal','广告屏','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"播放日志\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"PlayLogEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AdPlanID\",\"name\":\"广告计划标识\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ChannelId\",\"name\":\"渠道标识\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AdFileUrl\",\"name\":\"广告文件链接\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"图片\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"视频\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AdFileType\",\"name\":\"广告文件类型\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StartTime\",\"name\":\"开始播放时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EndTime\",\"name\":\"结束播放时间\",\"paraOrder\":5}],\"required\":true}]}'),(1698826367,0,'2055793047','ElectricPower','智能电力','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2080656349','Containers','售货柜','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"上报设备最新全部的库存情况\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"下单数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"增加的数量\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"单个库存查询\",\"identifier\":\"getInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"单个库存查询\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'2083027416','MeteorologicalStation','气象站监控仪','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"500\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PM25Value\",\"name\":\"PM25浓度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2108524247','Massage chair','按摩椅','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"批量库存查询\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"单个库存查询\",\"identifier\":\"getInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"单个库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"下单的数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'2123048686','liquidometer','液位计','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2127804790','SmartGasMeter','智能燃气表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"IntegratedFlow\",\"name\":\"总累计量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2130826146','Oven','烤箱','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"120\",\"min\":\"0\",\"precise\":1,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WarmDuration\",\"name\":\"保温时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PowerLevel\",\"name\":\"功率档位\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"FanSwitch\",\"name\":\"通风开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"TurnSwitch\",\"name\":\"转叉开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"炉灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"230\",\"min\":\"90\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ToastTemperature\",\"name\":\"烘烤温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"230\",\"min\":\"70\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PauseSwitch\",\"name\":\"暂停开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"255\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TopTemperature\",\"name\":\"上加热管温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"255\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"DownTemperature\",\"name\":\"下加热管温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TopTime\",\"name\":\"上管加热时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"DownTime\",\"name\":\"下管加热时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PreheatSwitch\",\"name\":\"预热开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地食谱\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云食谱\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RecipeInfo\",\"name\":\"食谱信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"120\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"启动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"取消\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"OperationControl\",\"name\":\"运行控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"烹饪\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"预热\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"保温\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ModeControl\",\"name\":\"模式控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2139002346','Temperatureandhumiditysensor','室内温湿度监测设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"120\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2141969272','Sceneswitch2','场景面板开关','{\"services\":[],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"键值信息上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"KeyValueNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"6\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyValue\",\"name\":\"键值\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2148694288','MicrowaveOven','微波炉','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSaveSwitch\",\"name\":\"省电开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不翻面\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"翻面\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"TurnSwitch\",\"name\":\"翻面开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"烹饪\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Weight\",\"name\":\"食材重量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"120\",\"min\":\"0\",\"precise\":1,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"230\",\"min\":\"70\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PowerMode\",\"name\":\"功率模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地食谱\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云食谱\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RecipeInfo\",\"name\":\"食谱信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"120\",\"min\":\"0\",\"precise\":1,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"VoiceSwitch\",\"name\":\"语音开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"WorkStep\",\"name\":\"工作步骤\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"启动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"取消\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"OperationControl\",\"name\":\"运行控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"解冻\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"预热\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"微波\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"快速\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ModeControl\",\"name\":\"模式控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"中低\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中高\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FireLevel\",\"name\":\"选择火力\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障类别\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2156823642','AirCompressorMachine','空压机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"触发设备的工艺参数报警\",\"identifier\":\"SCraftAlarm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"E_CraftAlarm\",\"name\":\"参数报警标识\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"工艺参数报警\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"-10000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_TT_Comp\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"Pa\",\"unitName\":\"帕\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_PT_Comp\",\"name\":\"压力\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100000\",\"min\":\"-10000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"E_Craft_LT_Comp\",\"name\":\"润滑油液面高度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"设备理想生产周期\",\"identifier\":\"E_Craft_Ideal_Cycle_Time\",\"name\":\"设备理想生产周期\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备合格率\",\"identifier\":\"E_Q\",\"name\":\"设备合格率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备性能稼动率\",\"identifier\":\"E_P\",\"name\":\"设备性能稼动率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备时间稼动率\",\"identifier\":\"E_A\",\"name\":\"设备时间稼动率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"设备最新的OEE\",\"identifier\":\"E_OEE\",\"name\":\"设备综合效率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例:\\n0 -- 正常运行\\n1 -- 缺料\\n2 -- 无生产任务\\n3 -- 休息\",\"identifier\":\"E_Stop_Reason\",\"name\":\"停机原因\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"设备运行总时间\",\"identifier\":\"E_TotalRunTime\",\"name\":\"设备运行总时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备次品的累加器\",\"identifier\":\"E_Defect_UP\",\"name\":\"设备不良品\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"设备产量的累加器\",\"identifier\":\"E_OutPut_UP\",\"name\":\"设备产量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"E_Status_UP == 0 初始状态(开机)\\nE_Status_UP == 1 运行\\nE_Status_UP == 2 停止\\nE_Status_UP == 3 故障\",\"identifier\":\"E_Status_UP\",\"name\":\"设备运行状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2157802826','DishWasher','洗碗机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"空挡\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"自动洗\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"强力洗\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"标准洗\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"节能洗\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"玻璃洗\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"一小时洗\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"超快洗\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"预冲洗\",\"value\":8}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未洗涤\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"预洗\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主洗\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"漂洗\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"干燥\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkStage\",\"name\":\"工作阶段\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"KeepDryFunction\",\"name\":\"保管功能\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"KeepDryRemainingTime\",\"name\":\"保管剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"255\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DoorOpeningState\",\"name\":\"门打开状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TotalWashCount\",\"name\":\"总洗涤次数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"255.9\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"SingleWaterConsumption\",\"name\":\"单次耗水量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2.55\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"SinglePowerConsumption\",\"name\":\"单次耗电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"65535.9\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TotalWaterConsumption\",\"name\":\"耗水总量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"65535.99\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TotalPowerConsumption\",\"name\":\"耗电总量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"空闲中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Large_Work_Status\",\"name\":\"大槽工作状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"空闲中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Small_Work_Status\",\"name\":\"小槽工作状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"普通洗碗\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"普通果蔬\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高温除菌\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"超声波\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"智能模式\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Small_Work_Mode\",\"name\":\"小槽工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"强\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"轻\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Large_Clean_Strength\",\"name\":\"大槽清洗强度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"强\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"轻\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Small_Clean_Strength\",\"name\":\"小槽清洗强度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"高\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Large_Water_Level\",\"name\":\"大槽水位选择\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"高\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Small_Water_Level\",\"name\":\"小槽水位选择\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":254},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Large_Clean_Param\",\"name\":\"大槽智能清洗参数\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":254},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Small_Clean_Param\",\"name\":\"小槽智能清洗参数\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"异常\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SinkDishWasher_Error_Code\",\"name\":\"水槽洗碗机错误码\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在升级\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"普通洗碗\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"普通果蔬\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高温除菌\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"超声波清洗\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"智能清洗\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Large_Work_Mode\",\"name\":\"大槽工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Large_Slot_Switch\",\"name\":\"大槽开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Small_Slot_Switch\",\"name\":\"小槽开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"固件升级\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ota_status\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在升级\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'2165694568','ManholeCover','井盖','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"AngleSelfAdaption\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"角度自适应校准\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"3.6\",\"min\":\"2.8\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"FLOAT\",\"description\":\"显示电池电压\",\"identifier\":\"BatteryRemain\",\"name\":\"电池电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"180\",\"min\":\"5\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TiltValue\",\"name\":\"井盖倾斜度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"180\",\"min\":\"5\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SafetyAngleThreshold\",\"name\":\"安全角度阈值\",\"required\":true,\"rwFlag\":\"WRITE_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"井盖被打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"井盖状态,1代表井盖被打开,0代表井盖状态正常\",\"identifier\":\"CoverStatus\",\"name\":\"井盖状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"高度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"9\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"设备地理位置,离线录入\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"10\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"HeartBeatInterval\",\"name\":\"心跳周期\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"180\",\"min\":\"5\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TiltAlarmThreshold\",\"name\":\"告警角度阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Alarm\",\"name\":\"告警信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'216724102','ElectricKettle','电水壶','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预热中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"150ml\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"250ml\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"TargetCapacity\",\"name\":\"目标容量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不缺水\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"缺水\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"NoWaterState\",\"name\":\"缺水状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"25\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"20\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"HoldingTemperature\",\"name\":\"保温温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HoldingSwicth\",\"name\":\"保温开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2174566469','SideWindow','侧窗','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2182930304','SolubleSensor','可溶性盐传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"单位为μs/cm,请补充并修改\",\"identifier\":\"EC\",\"name\":\"可溶性盐浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2195295360','DOSensor','溶解氧监测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2203726276','MosquitoLamp','灭蚊器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"普通模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"睡眠模式\",\"value\":1}],\"dataType\":\"ENUM\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2212145472','IntegratedStove','集成灶','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SysPower\",\"name\":\"系统开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LPowerOff\",\"name\":\"左灶关火\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"RPowerOff\",\"name\":\"右灶关火\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LStoveStatus\",\"name\":\"左灶状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"RStoveStatus\",\"name\":\"右灶状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HoodPower\",\"name\":\"烟机电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HoodLight\",\"name\":\"烟机照明开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HoodSpeed\",\"name\":\"烟机风量档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"待机中\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HoodWorkState\",\"name\":\"烟机工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SteamerPower\",\"name\":\"蒸箱开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"模式1\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"模式2\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"模式3\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"模式4\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"模式5\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SteamerMode\",\"name\":\"蒸箱模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SteameTemperatureSet\",\"name\":\"蒸箱制作温度设置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SteamerTimeSetMinute\",\"name\":\"蒸箱制作时间设置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SteamerTimeRemainingMinute\",\"name\":\"蒸箱制作剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"待机中\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SteamerState\",\"name\":\"蒸箱工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SteamerCurrentTemperature\",\"name\":\"蒸箱当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SysVoice\",\"name\":\"语音功能开启关闭设置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2212932466','air_sensor','环境检测盒子','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"mhumi\",\"name\":\"湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32768\",\"min\":\"-32768\",\"precise\":0,\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"mtemp\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PM25\",\"name\":\"PM25\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PM10\",\"name\":\"PM10\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PM1\",\"name\":\"PM1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"voc\",\"name\":\"挥发性气体\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"co\",\"name\":\"一氧化碳\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"co2\",\"name\":\"二氧化碳\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ch4\",\"name\":\"甲烷\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"mlux\",\"name\":\"光照度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2224915298','GarbageOverflowingDetection','垃圾满溢检测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2229553402','Ice cream machine','冰淇淋机','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"单个库存查询\",\"identifier\":\"getInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"单个库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"批量库存查询\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'2230841796','FaceServer','人脸门禁','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":16},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Facetype\",\"name\":\"人脸类型\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":16},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FaceID\",\"name\":\"人脸ID\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Permission\",\"name\":\"鉴权信息\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Pic_storage\",\"name\":\"下发底库信息\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2251803781','SmartWasteSortingDustBin','智能分类垃圾桶','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"ResidualWasteCover\",\"name\":\"干垃圾桶盖\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"HouseholdFoodWasteCover\",\"name\":\"湿垃圾桶盖\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2256142170','PHSensor','酸碱度监测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'225861378','WiFiProbeCollector','WiFi探针采集器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2290289772','FireValve','防火阀','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2296795598','WaterMonitor','用水监控器','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2300358371','SecurityGateway','安防监测网关','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"GatewayStatus\",\"name\":\"网关状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DoorStatus01\",\"name\":\"门1状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DoorStatus02\",\"name\":\"门2状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WindowStatus02\",\"name\":\"窗2状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WindowStatus03\",\"name\":\"窗3状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WindowStatus04\",\"name\":\"窗4状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WindowStatus05\",\"name\":\"窗5状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WindowStatus06\",\"name\":\"窗6状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WindowStatus07\",\"name\":\"窗7状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WindowStatus08\",\"name\":\"窗8状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WindowStatus01\",\"name\":\"窗1状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2304984696','WifiTemplate','Wifi功能模板','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"WIFI_Band\",\"name\":\"频段\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"-1\",\"min\":\"-127\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"WiFI_RSSI\",\"name\":\"信号强度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"WIFI_AP_BSSID\",\"name\":\"热点BSSID\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"WIFI_Channel\",\"name\":\"信道\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"127\",\"min\":\"-127\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"WiFI_SNR\",\"name\":\"信噪比\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2306228972','SmokeDetector','烟雾探测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未报警状态\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"报警状态\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Alarm\",\"name\":\"报警状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CO2Value\",\"name\":\"二氧化碳浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"500\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"dB\",\"unitName\":\"分贝\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"SoundDecibelValue\",\"name\":\"声音分贝值\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"BatteryLevel\",\"name\":\"电池电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"火警\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SmokeState\",\"name\":\"烟感状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2309233991','IntelligentMassageChair','智能按摩椅','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetBackUpAndDown\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"靠背升\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"靠背降\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"靠背升降停\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BackLiftingMode\",\"name\":\"靠背升降模式\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"设置靠背升降\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetShankfFex\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"小腿伸\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"小腿缩\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"小腿伸缩停\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ShankfFexMode\",\"name\":\"小腿升降模式\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"设置小腿伸缩\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetShankUpAndDown\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"小腿升\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"小腿降\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"小腿升降停\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ShankLiftingModeMode\",\"name\":\"小腿升降模式\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"设置小腿升降\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetSpeed\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设置\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"加速\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"减速\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SetSpeedMode\",\"name\":\"速度调整模式\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"6\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SpeedOut\",\"name\":\"速度输出\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"调整速度\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PauseSwitch\",\"name\":\"暂停开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"头部按摩\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"颈肩按摩\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"颈按摩\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"肩按摩\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"背部按摩\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"腰部按摩\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"臀部按摩\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"膝盖按摩\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"腿部集中按摩\",\"value\":9}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LocalMassage\",\"name\":\"局部按摩\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"全身气囊\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"臂肩气囊\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"背腰部气囊\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"坐垫部气囊\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"腿部气囊\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"GasbagPosition\",\"name\":\"气囊部位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"10分钟\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"20分钟\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"30分钟\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MassageTimeLevel\",\"name\":\"按摩时间档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"关\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"慢速\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中速\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"快速\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SoleRoller\",\"name\":\"脚底滚轮\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"宽\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"窄\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MassageRange\",\"name\":\"机芯幅度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"全身\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"局部\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"定点\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MassagePosition\",\"name\":\"按摩位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"6\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"MassageSpeed\",\"name\":\"按摩速度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"运动恢复\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"舒展活络\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"休憩促眠\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"工作减压\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"肩颈重点\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"腰椎舒缓\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"总裁养身\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"女王纤体\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"心灵SPA\",\"value\":9}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MassageProgram\",\"name\":\"自动按摩\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2322642658','ManholeLevel','窨井液位监测设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2327494083','Currentdetectingsensor','单向电流检测传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"36\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"630000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mA\",\"unitName\":\"毫安\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Current\",\"name\":\"当前电流\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2334654250','ParkLed','余位显示屏','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"LEDREGIONSDISPLAY\",\"identifier\":\"Display\",\"name\":\"显示内容\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2342517582','LiquidLevelAlarm','液位传感器','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2342933863','BathHeater','浴霸','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"照明开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"45\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"档位设置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"风暖\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"换气\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"净化\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"干燥\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2352543265','AirEnergyHeater','空气能热水器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"HotWaterVolumeStatus\",\"name\":\"热水量状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"节能模式\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HeatMode\",\"name\":\"加热模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"30\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"150.0\",\"min\":\"30.0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"EnvironmentTemperature\",\"name\":\"环境温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"150\",\"min\":\"30\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"水箱温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Runtime\",\"name\":\"累计运行时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PowerConsumption\",\"name\":\"节能统计\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"保温\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2373386822','Drivingbehavior','驾驶行为数据采集','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeployAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoURL\",\"name\":\"算法模型文件URL\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法模型文件名\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":2}],\"outputParams\":[],\"required\":true,\"serviceName\":\"部署算法模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"VideoSrcURL\",\"name\":\"视频源URL\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"算法任务号\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"启动算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"调用者根据StoreID获取设备上已部署的算法名称、算法版本信息。\",\"identifier\":\"QueryAlgorithmList\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询已部署的所有算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryDeployStatus\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"部署中\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"部署完毕\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeployDone\",\"name\":\"是否部署完毕\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeployRate\",\"name\":\"部署进度\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":3}],\"required\":true,\"serviceName\":\"查询部署状态\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryExecutingAlgorithm\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询正在运行的算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteSingleAlgo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"删除结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"删除指定算法模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ClearAllAlgorithms\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"清除结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"清除所有算法\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"设备连接LP后,上报平台属性(X86、Linux、Android等),服务端根据此属性选择对应平台的算法进行部署。\",\"identifier\":\"Platform\",\"name\":\"上报平台属性\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"单条算法执行结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ExicutingAlgorithm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"执行结果\",\"paraOrder\":3}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"单条算法部署结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DeployedAlorithm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoVweision\",\"name\":\"算法版本\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"部署结果\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"单条算法停止结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"StopAlgorithm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"算法停止结果\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'2374509473','DioxideDetector','二氧化碳检测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"ppm\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CO2\",\"name\":\"二氧化碳浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2377047801','Outlet','插座','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"3000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"DOUBLE\",\"identifier\":\"RealTimePower\",\"name\":\"实时功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_1\",\"name\":\"插孔开关1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SocketSwitch_2\",\"name\":\"插孔开关2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"USBSwitch_1\",\"name\":\"USB开关1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"USBSwitch_2\",\"name\":\"USB开关2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"16\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"identifier\":\"RMSCurrent\",\"name\":\"有效电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"250\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"identifier\":\"RMSVoltage\",\"name\":\"有效电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"99999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"identifier\":\"TotalConsumption\",\"name\":\"总耗电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1440\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"identifier\":\"RemainingTime\",\"name\":\"倒计时剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"99999\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"FLOAT\",\"description\":\"需要将此属性更新到“插座Outlet”品类的属性中,谢谢\",\"identifier\":\"UnitPowerConsumption\",\"name\":\"单位耗电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[12].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[12].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[12].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[12].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer\",\"name\":\"随机定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[13].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[13].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[13].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[13].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_1\",\"name\":\"随机定时1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_2\",\"name\":\"随机定时2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[15].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[15].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[15].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[15].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_3\",\"name\":\"随机定时3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_4\",\"name\":\"随机定时4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[17].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[17].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[17].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[17].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_5\",\"name\":\"随机定时5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_6\",\"name\":\"随机定时6\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[19].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[19].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[19].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[19].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_7\",\"name\":\"随机定时7\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[20].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[20].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[20].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[20].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_8\",\"name\":\"随机定时8\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[21].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[21].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[21].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[21].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"}],\"dataType\":\"STRUCT\",\"description\":\"将此属性添加到“插座”品类中,可选\",\"identifier\":\"RandomTimer_9\",\"name\":\"随机定时9\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer\",\"name\":\"循环定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[23].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[23].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[23].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[23].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[23].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[23].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_1\",\"name\":\"循环定时1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[24].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[24].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[24].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[24].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[24].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[24].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_2\",\"name\":\"循环定时2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[25].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[25].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[25].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[25].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[25].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[25].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_3\",\"name\":\"循环定时3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[26].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[26].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[26].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[26].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[26].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[26].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_4\",\"name\":\"循环定时4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_5\",\"name\":\"循环定时5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[28].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[28].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[28].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[28].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[28].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[28].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_6\",\"name\":\"循环定时6\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[29].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[29].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[29].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[29].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[29].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[29].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_7\",\"name\":\"循环定时7\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[30].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[30].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[30].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[30].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[30].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[30].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_8\",\"name\":\"循环定时8\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[31].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"StartTime\",\"name\":\"开始时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[31].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\"},{\"childDataType\":\"TEXT\",\"childName\":\"重复\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[31].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Repeat\",\"name\":\"重复\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"},{\"childDataType\":\"INT\",\"childName\":\"时差\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"50400\",\"min\":\"-43200\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[31].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TimeZoneOffset\",\"name\":\"时差\"},{\"childDataType\":\"INT\",\"childName\":\"运行时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[31].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RunTime\",\"name\":\"运行时间\"},{\"childDataType\":\"INT\",\"childName\":\"间隔时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"720\",\"min\":\"10\",\"step\":\"10\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataSpecs\":{\"$ref\":\"$.properties[31].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SleepTime\",\"name\":\"间隔时间\"}],\"dataType\":\"STRUCT\",\"description\":\"请将此属性 添加到 插座 品类中,可选\",\"identifier\":\"PeriodTimer_9\",\"name\":\"循环定时9\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[32].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致。\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"操作对象\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[33].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Target\",\"name\":\"倒计时列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"倒计时命令\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[33].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Contents\",\"name\":\"倒计时列表\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"CountDownList\",\"name\":\"倒计时列表\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_1\",\"name\":\"电源开关_1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_2\",\"name\":\"电源开关_2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_3\",\"name\":\"电源开关_3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_4\",\"name\":\"电源开关_4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"630000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Current\",\"name\":\"当前电流\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"36\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"0\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2386927162','InfraredDetectors','红外体征探测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2406109579','AlgoCertification','算法验证','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2408527512','CardAccess','刷卡门禁','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"remoteOpen\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"远程开门\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"syncPermissions\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"permissionUrl\",\"name\":\"权限url\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"同步门禁权限\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"表示门是否为常开状态,如果为1,门保持常开状态;否则,门保持关闭状态。\",\"identifier\":\"KeepOpen\",\"name\":\"常开\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"报警事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"alarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"防拆报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"防拆报警解除\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"alarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"通行事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"passEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"cardId\",\"name\":\"门禁卡ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"userId\",\"name\":\"用户Id\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"异常刷卡\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"abnormalCreditCard\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"cardId\",\"name\":\"门禁卡ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无效卡\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"异常通信\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventType\",\"name\":\"事件类型\",\"paraOrder\":1}],\"required\":true}]}'),(1698826367,0,'2420960210','SensorSignalCollector','传感器信号采集器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"低电平信号\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"高电平信号\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"HighLowLevelSignal\",\"name\":\"高低电平信号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2454701484','GasLeakAlarm','燃气泄漏报警器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2457876948','WarningGW','报警网关','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteSensor\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":9},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SensorSerialNumber\",\"name\":\"传感器串码\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"删除传感器\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ClearAlarm\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"一键消除报警\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RouterUpgrade\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":9},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RouterSerialNumber\",\"name\":\"网关串码\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"网关升级\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Reboot\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"重启\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"探测器\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"遥控器\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"报警器\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"键盘\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SensorClass\",\"name\":\"传感器类别\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"被动红外\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"红外对射\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"烟感\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"门磁\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"可燃气感\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"水浸\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"幕帘探测器\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"紧急按钮\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"单体门磁\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"烟感B\",\"value\":9}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SensorType\",\"name\":\"传感器型号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":9},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SensorSerialNumber\",\"name\":\"传感器串码\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"传感器名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":63},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SensorLocation\",\"name\":\"传感器名称\"},{\"childDataType\":\"TEXT\",\"childName\":\"传感器串码\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":9},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SensorSerialNumber\",\"name\":\"传感器名称\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"SensorName\",\"name\":\"传感器名称\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"传感器串码\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":9},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SensorSerialNumber\",\"name\":\"传感器工作模式\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"在家模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"外出模式\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"在家和外出模式\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"睡眠模式\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"在家和睡眠模式\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"外出和睡眠模式\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"在家外出和睡眠模式\",\"value\":7}],\"childName\":\"传感器布防模式\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"在家模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"外出模式\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"在家和外出模式\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"睡眠模式\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"在家和睡眠模式\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"外出和睡眠模式\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"在家外出和睡眠模式\",\"value\":7}],\"dataType\":\"STRUCT\",\"identifier\":\"SensorWorkMode\",\"name\":\"传感器工作模式\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"SensorWorkMode\",\"name\":\"传感器工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"传感器串码\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":9},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SensorSerialNumber\",\"name\":\"传感器RF信号质量\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"信号强度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"-1\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RSSI\",\"name\":\"传感器RF信号质量\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"RFStrength\",\"name\":\"传感器RF信号质量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":9},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"RouterSerialNumber\",\"name\":\"网关串码\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":31},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"RouterName\",\"name\":\"网关名称\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"睡眠模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"在家模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"外出模式\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RouterWorkMode\",\"name\":\"网关工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"-1\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RouterRSSI\",\"name\":\"网关信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"TemplateEnableSwitch\",\"name\":\"网关布防模板开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"传感器故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"SensorError\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":9},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SensorSerialNumber\",\"name\":\"传感器串码\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"传感器离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"SensorNetstateAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SensorState\",\"name\":\"传感器状态\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":9},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SensorSerialNumber\",\"name\":\"传感器串码\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'246722349','Counter','无人货柜','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DoorOpen\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DoorOpenResult\",\"name\":\"开门结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"开门\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SensorPeelAllSensor\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PeelAllResult\",\"name\":\"全部去皮结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"全部传感器去皮\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"PeelSensor\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PeelResult\",\"name\":\"去皮结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"传感器去皮\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CalibrateSensor\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":4},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SensorID\",\"name\":\"传感器ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Weight\",\"name\":\"重量\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CalibrationResult\",\"name\":\"校准结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"传感器校准\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"开门通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DoorOpenedNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReportTime\",\"name\":\"上报时间\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"关门通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DoorClosedNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReportTime\",\"name\":\"上报时间\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"关门时拿取物品通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"FinalItemNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Name\",\"name\":\"名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"编号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Count\",\"name\":\"数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Price\",\"name\":\"价格\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Property\",\"name\":\"规格\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ImageURL\",\"name\":\"图片链接\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CreateTime\",\"name\":\"创建时间\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OrderID\",\"name\":\"订单ID\",\"paraOrder\":7}],\"required\":false}]}'),(1698826367,0,'2488599504','TicketMachine','停车小票机设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"MachineInfo\",\"name\":\"设备信息\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"UploadTicketHistory\",\"name\":\"取票信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"UploadScannerHistory\",\"name\":\"扫票信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"设备故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error_alarm\",\"outputData\":[],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2505057278','ParkingDetector','车位检测器','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CtrlCommand\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"重置无车\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"重置标尺\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关机\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"强制重启\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"CommandType\",\"name\":\"指令类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"控制指令\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ParkingState\",\"name\":\"车位状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Version\",\"name\":\"固件版本号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"127\",\"min\":\"-127\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"车位状态变化上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ParkingChangeNotification\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"出车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"入车\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkingEvent\",\"name\":\"车位事件\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"心跳事件上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"HeartbeatNotification\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkingState\",\"name\":\"车位状态\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"4.5\",\"min\":\"2.5\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VoltageValue\",\"name\":\"电压值\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2510905821','AnoxicPooAnoxicPool','缺氧池缺氧池','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2523769496','FaceRecognition','人脸识别门禁','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AuthVerifySDK\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LicenseData\",\"name\":\"授权文件\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StatusCode\",\"name\":\"状态码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StatusCodeDescription\",\"name\":\"状态码描述\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"授权成功\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"授权失败\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DoAuthorized\",\"name\":\"设备授权是否成功\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"设备授权文件下发\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncFacePictures\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FacePicURL\",\"name\":\"同步文件URL地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下载文件失败\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"解析文件失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"设备同步图片状态值\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"同步人脸库图片\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QuerySyncPicSchedule\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸库组ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Rate\",\"name\":\"人脸图布控百分比\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询人脸布控进度\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAddedUserInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸库组ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StoreID\",\"name\":\"人脸布控文件storeID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"StoreID\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"FileName\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"URL\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Type\",\"name\":\"类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"查询添加用户信息的布控状态\",\"paraOrder\":2}],\"required\":true,\"serviceName\":\"查询布控成功的人脸图\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryFacePermTotal\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FacePermTotal\",\"name\":\"当前人脸库权限总数\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"人脸-查询设备上人脸权限总数\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncFaceFeatures\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FacePicFeaturesURL\",\"name\":\"同步特征文件URL地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下载文件失败\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"解析文件失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"设备同步图片状态值\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"同步人脸库特征\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"内容推荐 - 当云端收到ContentSdkInitCompleteEvent事件或密钥泄露导致安全问题需要更新密钥时调用该服务\",\"identifier\":\"UpdateToken\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SlsToken\",\"name\":\"SLS访问Token信息\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OssToken\",\"name\":\"OSS访问Token信息\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TInfo\",\"name\":\"Token-Info\",\"paraOrder\":2}],\"outputParams\":[],\"required\":false,\"serviceName\":\"更新OSS服务token\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"内容推荐\",\"identifier\":\"UpdateContent\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UpdateTaskID\",\"name\":\"更新任务ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ContentUrl\",\"name\":\"Content内容下载地址\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"将内容全量下发到边缘端\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"内容推荐\",\"identifier\":\"QueryContent\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"CreativeID\",\"name\":\"内容创意ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CreativeID\",\"name\":\"内容创意ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UpdateTaskID\",\"name\":\"最近更新的任务ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"MaterialList\",\"name\":\"物料信息\",\"paraOrder\":2}],\"required\":false,\"serviceName\":\"查询内容\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"内容推荐\",\"identifier\":\"ConfigContentSDK\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RecommendOn\",\"name\":\"内容推荐开关\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"4096\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LogMaxCount\",\"name\":\"日志批量上传配置\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"5\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"MB\",\"unitName\":\"兆字节\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LogMaxSize\",\"name\":\"每批次最大size\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"86400\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LogPeriod\",\"name\":\"上报周期\",\"paraOrder\":3}],\"outputParams\":[],\"required\":false,\"serviceName\":\"配置内容推荐SDK\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"内容推荐 - 完成后通过MonitorActionEvent事件上报操作结果\",\"identifier\":\"CaptureScreen\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"监播截屏\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"内容推荐 - 完成后通过MonitorActionEvent事件上报操作结果\",\"identifier\":\"RecordScreen\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"60\",\"min\":\"5\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Duration\",\"name\":\"录屏时长\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"监播录屏\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"内容推荐\",\"identifier\":\"QueryModel\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmID\",\"name\":\"算法任务唯一标识\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmID\",\"name\":\"算法任务唯一标识\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UpdateTaskID\",\"name\":\"模型更新的任务ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmName\",\"name\":\"算法名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1\",\"min\":\"0\",\"precise\":7,\"step\":\"0.0001\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Threshold\",\"name\":\"结果置信度阈值\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Switch\",\"name\":\"功能开关\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"0\",\"precise\":0,\"step\":\"0\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"NumThreads\",\"name\":\"使用线程数\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModelID\",\"name\":\"模型唯一标识\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModelName\",\"name\":\"模型名称\",\"paraOrder\":7},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModelVersion\",\"name\":\"模型版本\",\"paraOrder\":8},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModelURL\",\"name\":\"模型地址\",\"paraOrder\":9},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModelMD5\",\"name\":\"模型文件MD5\",\"paraOrder\":10},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Platform\",\"name\":\"模型平台\",\"paraOrder\":11},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModelTaskID\",\"name\":\"模型生成任务ID\",\"paraOrder\":12},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EncryptType\",\"name\":\"模型加密方式\",\"paraOrder\":13},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Extension\",\"name\":\"扩展信息\",\"paraOrder\":14},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":30},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CreateTime\",\"name\":\"创建时间\",\"paraOrder\":15},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":30},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UpdateTime\",\"name\":\"更新时间\",\"paraOrder\":16}],\"required\":false,\"serviceName\":\"查询模型\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"内容推荐\",\"identifier\":\"DeleteModel\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmID\",\"name\":\"算法任务唯一标识\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"删除模型\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"内容推荐\",\"identifier\":\"ConfigModel\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmID\",\"name\":\"算法任务-人脸识别\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1\",\"min\":\"0\",\"precise\":7,\"step\":\"0.0001\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Threshold\",\"name\":\"结果置信度阈值\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Switch\",\"name\":\"功能开关\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"NumThreads\",\"name\":\"使用线程数\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"配置模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"内容推荐\",\"identifier\":\"UpdateModel\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UpdateTaskID\",\"name\":\"更新任务ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmID\",\"name\":\"算法任务唯一标识\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmName\",\"name\":\"算法名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1\",\"min\":\"0\",\"precise\":7,\"step\":\"0.0001\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Threshold\",\"name\":\"结果置信度阈值\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"NumThreads\",\"name\":\"使用线程数\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelID\",\"name\":\"模型唯一标识\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelName\",\"name\":\"模型名称\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelVersion\",\"name\":\"模型版本\",\"paraOrder\":7},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelURL\",\"name\":\"模型地址\",\"paraOrder\":8},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelMD5\",\"name\":\"模型文件MD5\",\"paraOrder\":9},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelPlatform\",\"name\":\"模型平台\",\"paraOrder\":10},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelTaskID\",\"name\":\"模型生成任务ID\",\"paraOrder\":11},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelEncryptType\",\"name\":\"模型加密方式\",\"paraOrder\":12},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelExtension\",\"name\":\"扩展信息\",\"paraOrder\":13}],\"outputParams\":[],\"required\":false,\"serviceName\":\"更新模型\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"OnMatchThreshOld\",\"name\":\"人脸比对成功阈值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FaceSetMD5Sign\",\"name\":\"人脸库MD5签名\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FaceSetID\",\"name\":\"人脸库ID\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FaceSetSize\",\"name\":\"当前人脸库大小\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":65},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FaceSetAlgorithmVersion\",\"name\":\"人脸库算法版本\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FaceSetPicStoreAbility\",\"name\":\"人脸库图片存储能力\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"支持\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"不支持\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"脸特征下发:设备端开关,云端判断支持时才处理和下发人脸特征数据。否则会按传统方式下发人脸URL,由设备端计算特征值\",\"identifier\":\"SupportFaceFeature\",\"name\":\"人脸-设备是否支持人脸特征下发\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":65},\"dataType\":\"TEXT\",\"description\":\"人脸特征下发\",\"identifier\":\"FaceAlgorithmVersion\",\"name\":\"人脸算法版本号\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"description\":\"内容推荐、人脸特征下发\",\"identifier\":\"FirmwareVersion\",\"name\":\"设备固件版本号\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"内容推荐\",\"identifier\":\"SerialNo\",\"name\":\"产品序列号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"内容推荐\",\"identifier\":\"Volume\",\"name\":\"音量百分比\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"内容推荐\",\"identifier\":\"Brightness\",\"name\":\"亮度百分比\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"内容推荐。0:未知状态,1:熄屏,2:亮屏\",\"identifier\":\"RunningState\",\"name\":\"运行状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"人脸算法SDK需授权\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"NeedAuthVerifySDK\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PackageName\",\"name\":\"包名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ClientID\",\"name\":\"设备唯一标识\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PublicKey\",\"name\":\"包公钥信息\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Token\",\"name\":\"设备Token值\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceEncrypt\",\"name\":\"设备加密信息唯一标识\",\"paraOrder\":4}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"人脸比对事件上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnMatched\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserPicID\",\"name\":\"用户人脸图ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FaceMatchedPicStorID\",\"name\":\"人脸比对图片StorID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Similarity\",\"name\":\"人脸比对相似度结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserInfo\",\"name\":\"人脸ID相关属性\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸组ID\",\"paraOrder\":4}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"人脸检测事件上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnDetect\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StoreID\",\"name\":\"人脸检测图StoreID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸组ID\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"内容推荐\",\"eventName\":\"SDK初始化完成\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ContentSdkInitCompleteEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":4096},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceInfo\",\"name\":\"设备基本信息\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"内容推荐\",\"eventName\":\"SDK运行状态\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ContentSdkStatusEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Status\",\"name\":\"状态类型值\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Message\",\"name\":\"消息内容\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"description\":\"内容推荐 - 云端内容推送内容并且 SDK 下载完成后发送该事件\",\"eventName\":\"内容加载完成\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"UpdateContentCompleteEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UpdateTaskID\",\"name\":\"下发任务ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Status\",\"name\":\"状态\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"内容创意ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":128},\"dataSpecs\":{\"$ref\":\"$.events[5].outputData[2].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"CreativeID\",\"name\":\"失败创意列表\"},{\"childDataType\":\"INT\",\"childName\":\"错误代码\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.events[5].outputData[2].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Code\",\"name\":\"失败创意列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"错误描述\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.events[5].outputData[2].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Message\",\"name\":\"失败创意列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FailedCreativeIDs\",\"name\":\"失败创意列表\",\"paraOrder\":2}],\"required\":false},{\"custom\":false,\"description\":\"内容推荐\",\"eventName\":\"监播动作结果上报事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"MonitorActionEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ActionType\",\"name\":\"监播操作类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FileKey\",\"name\":\"上传文件ossKey\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Extension\",\"name\":\"扩展信息\",\"paraOrder\":2}],\"required\":false},{\"custom\":false,\"description\":\"内容推荐\",\"eventName\":\"模型更新完成\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"UpdateModelCompleteEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UpdateTaskID\",\"name\":\"下发任务ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmID\",\"name\":\"算法ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModelID\",\"name\":\"模型ID\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1024\",\"min\":\"-1024\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Status\",\"name\":\"状态\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'2534839894','AttendanceMachine','考勤机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ToggleLightSwitch\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"翻转主灯开关\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ProvinceCode\",\"name\":\"省份编码\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SerialNumber\",\"name\":\"流水号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":36},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SchoolID\",\"name\":\"学校ID\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":20},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"DeviceCode\",\"name\":\"设备编码\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":20},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"CardID\",\"name\":\"卡号ID\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"description\":\"\",\"identifier\":\"CardTime\",\"name\":\"刷卡时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"进校\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"离校\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AttendanceState\",\"name\":\"考勤状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"description\":\"\",\"identifier\":\"AttendanceTimeNotification\",\"name\":\"上报考勤时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"MACAddress\",\"name\":\"MAC地址\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"AttendancePictureAddress\",\"name\":\"考勤图片地址\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":20},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ClassID\",\"name\":\"班级ID\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":20},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"DataUpdateTime\",\"name\":\"数据同步频率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"普通模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"考试模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"紧急模式\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"PlatformURL\",\"name\":\"平台链接\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"VoiceMailURL\",\"name\":\"语音留言链接\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2559311190','SmartIndustry','智能工业','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2579716018','SmartCleanFace','智能洁面仪','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CtrlCommand\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"重置无车\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"重置标尺\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关机\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"强制重启\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"CommandType\",\"name\":\"指令类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"控制指令\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetStates\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"获取设备状态\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"BinarySwitch\",\"name\":\"二进制开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"250\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"EnumerationLevel\",\"name\":\"模式档位\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"设备故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error_alarm\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"电源故障\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"遇阻故障\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"过热故障\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'2589434588','Curtain','窗帘','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"反转\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"校准中\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CurtainMode\",\"name\":\"窗帘工作模式\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"反转\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"校准中\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"OuterCurtainMode\",\"name\":\"外窗帘工作模式\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"反转\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"校准中\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"InnerCurtainMode\",\"name\":\"内窗帘工作模式\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurtainPosition\",\"name\":\"窗帘打开位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"OuterCurtainPosition\",\"name\":\"外窗帘打开位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"InnerCurtainPosition\",\"name\":\"内窗帘打开位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CurtainOperation\",\"name\":\"窗帘操作模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关窗帘\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开窗帘\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停窗帘\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"OuterCurtainOperation\",\"name\":\"外窗帘操作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关窗帘\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开窗帘\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停窗帘\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"InnerCurtainOperation\",\"name\":\"内窗帘操作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2593206861','AirConditioner','空调','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"55.0\",\"min\":\"-40.0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"IndoorTemperature\",\"name\":\"室内温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"TemperatureModelStatus\",\"name\":\"温度模块状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AirConElectricMeterSwitch\",\"name\":\"空开电表开闭状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦时\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"AirConPowerConsumption\",\"name\":\"空开电表用电量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"400\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"AirConVolt\",\"name\":\"空开电表电压值\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"30\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"AirConCurrent\",\"name\":\"空开电表电流值\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AirConElectricMeterControl\",\"name\":\"空开电表控制变量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"55.0\",\"min\":\"-40.0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"55.0\",\"min\":\"-40.0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"TemperatureFromIRControlModel\",\"name\":\"红外控制模块的输出温度值\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"空操作\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"打开空调\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关闭空调\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"设置温度\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CommandFromIRControlModel\",\"name\":\"红外控制模块指令\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"IRControlModelCommStatus\",\"name\":\"红外模块的通信状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2594057173','ToiletLid','马桶盖','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"99999\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"identifier\":\"PowerConsumption\",\"name\":\"耗电量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2613337060','ConversionGateway','通用网关','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2618025239','Thermometer','体温计','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Reset\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"复位\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"5000\",\"min\":\"2000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BodyTemperature\",\"name\":\"人体温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2619893095','BrushFace','扫脸娃娃机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"User_picture\",\"name\":\"用户照片\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Permission_info\",\"name\":\"权益信息\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Associate_url\",\"name\":\"绑定连接\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Associate_request\",\"name\":\"绑定请求\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Smile\",\"name\":\"微笑信息\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Status\",\"name\":\"二维码状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2621503215','RiceCooker','电饭煲','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"烹饪\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WarmDuration\",\"name\":\"保温时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"浙江米\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"糯米\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"糙米\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"长粒米\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"东北米\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"丝苗米\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"珍珠米\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"泰国香米\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"秋田小町\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"湖南米\",\"value\":10}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RiceType\",\"name\":\"米种选择\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"软\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"标准\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"硬\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MouthFeel\",\"name\":\"口感选择\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地食谱\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云食谱\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RecipeInfo\",\"name\":\"食谱信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"255\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"255\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Current\",\"name\":\"当前电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"StewTime\",\"name\":\"焖饭时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'263502393','NVR','网络硬盘录像机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"把本地时间同步到NVR上\",\"identifier\":\"SyncTime\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LocalTime\",\"name\":\"本地时间\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"失败\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"成功\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncTimeStatus\",\"name\":\"状态\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"同步时间\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"磁盘格式化\",\"identifier\":\"DiskFormat\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"格式化失败\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"格式化成功\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DiskFormatStatus\",\"name\":\"磁盘格式化状态\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"磁盘格式化\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"description\":\"设备生产商的设备编号\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"description\":\"设备制造商的设备型号\",\"identifier\":\"DeviceType\",\"name\":\"设备型号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"256\",\"min\":\"2\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"NVR通道数目\",\"identifier\":\"ChannelNumber\",\"name\":\"通道数目\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"description\":\"设备别名\",\"identifier\":\"DeviceName\",\"name\":\"设备名称\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\"},\"dataType\":\"DATE\",\"description\":\"设备时间\",\"identifier\":\"DeviceTime\",\"name\":\"设备时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"UTC\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"UTCplus1\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"UTCplus2\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"UTCplus3\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"UTCplus4\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"UTCplus5\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"UTCplus6\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"UTCplus7\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"UTCplus8\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"UTCplus9\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"UTCplus10\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"UTCplus11\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"东西十二区\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"UTCminus11\",\"value\":13},{\"dataType\":\"ENUM\",\"name\":\"UTCminus10\",\"value\":14},{\"dataType\":\"ENUM\",\"name\":\"UTCminus9\",\"value\":15},{\"dataType\":\"ENUM\",\"name\":\"UTCminus8\",\"value\":16},{\"dataType\":\"ENUM\",\"name\":\"UTCminus7\",\"value\":17},{\"dataType\":\"ENUM\",\"name\":\"UTCminus6\",\"value\":18},{\"dataType\":\"ENUM\",\"name\":\"UTCminus5\",\"value\":19},{\"dataType\":\"ENUM\",\"name\":\"UTCminus4\",\"value\":20},{\"dataType\":\"ENUM\",\"name\":\"UTCminus3\",\"value\":21},{\"dataType\":\"ENUM\",\"name\":\"UTCminus2\",\"value\":22},{\"dataType\":\"ENUM\",\"name\":\"UTCminus1\",\"value\":23}],\"dataType\":\"ENUM\",\"identifier\":\"DeviceTimeZone\",\"name\":\"设备时区\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"50Hz\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"60Hz\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"电源频率设置\",\"identifier\":\"PowerFrequency\",\"name\":\"电源频率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"GB\",\"unitName\":\"吉字节\"},\"dataType\":\"FLOAT\",\"description\":\"NVR磁盘容量\",\"identifier\":\"DiskCapacity\",\"name\":\"磁盘容量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"异常\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"无硬盘\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"NVR磁盘状态\",\"identifier\":\"DiskState\",\"name\":\"磁盘状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"磁盘使用率\",\"identifier\":\"DiskUtilizationRate\",\"name\":\"磁盘使用百分比\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"产品名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":128},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ProductKey\",\"name\":\"产品名称\"},{\"childDataType\":\"TEXT\",\"childName\":\"设备名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DeviceName\",\"name\":\"设备名称\"},{\"childDataType\":\"INT\",\"childName\":\"通道号\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"512\",\"min\":\"1\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ChannelNumber\",\"name\":\"通道号\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"description\":\"NVR通道与IPC三元组的映射关系表\",\"identifier\":\"ChannelList\",\"name\":\"通道映射关系\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"description\":\"制造商名称\",\"identifier\":\"ManufacturerName\",\"name\":\"制造商名称\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2635521550','VisionAccessNode','摄像头边缘节点 ','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartAlgorithmTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ProductKey\",\"name\":\"子设备产品名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DeviceName\",\"name\":\"子设备名\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Algorithm\",\"name\":\"算法\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":4096},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmParam\",\"name\":\"算法参数\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"算法不支持\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"资源不足\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"设备不存在\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"启动结果\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"启动算法任务\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopAlgorithmTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"任务号错误\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"停止结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"停止算法任务\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAlgorithmTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"256\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PageNum\",\"name\":\"分页号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PageSize\",\"name\":\"分页大小\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"算法不支持\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"查询结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"任务ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[2].outputParams[1].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TaskID\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[2].outputParams[1].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Algorithm\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"子设备产品名\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[2].outputParams[1].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ProductKey\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"子设备名\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[2].outputParams[1].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DeviceName\",\"name\":\"任务列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"未分配\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"未运行\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"运行中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"运行异常\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"正常结束\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"视频源异常\",\"value\":6}],\"childName\":\"任务状态\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未分配\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"未运行\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"运行中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"运行异常\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"正常结束\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"视频源异常\",\"value\":6}],\"dataType\":\"STRUCT\",\"identifier\":\"Status\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法参数\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.services[2].outputParams[1].dataSpecs.dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmParam\",\"name\":\"任务列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskList\",\"name\":\"任务列表\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"查询算法任务\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryLicenseList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PageNum\",\"name\":\"分页码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"50\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PageSize\",\"name\":\"分页大小\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CurrentPage\",\"name\":\"当前页\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65536\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Total\",\"name\":\"总记录数\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"50\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PageSize\",\"name\":\"分页大小\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"算法名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[3].outputParams[4].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmName\",\"name\":\"算法名称\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[3].outputParams[4].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法ID\"},{\"childDataType\":\"INT\",\"childName\":\"总配额\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"65536\",\"min\":\"1\",\"step\":\"1\"},\"dataSpecs\":{\"$ref\":\"$.services[3].outputParams[4].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TotalAuota\",\"name\":\"总配额\"},{\"childDataType\":\"INT\",\"childName\":\"当前已使用配额\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"65536\",\"min\":\"0\",\"step\":\"1\"},\"dataSpecs\":{\"$ref\":\"$.services[3].outputParams[4].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"UsedQuota\",\"name\":\"当前已使用配额\"}],\"dataType\":\"ARRAY\",\"size\":512},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LicenseList\",\"name\":\"授权列表\",\"paraOrder\":4}],\"required\":true,\"serviceName\":\"查询授权列表\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAlgoList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PageNum\",\"name\":\"分页码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"50\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PageSize\",\"name\":\"分页码大小\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65536\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Total\",\"name\":\"总记录数\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"算法名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[4].outputParams[1].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmName\",\"name\":\"算法列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法Id\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.services[4].outputParams[1].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法配置参数\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.services[4].outputParams[1].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmParam\",\"name\":\"算法列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法版本号\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.services[4].outputParams[1].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmVersion\",\"name\":\"算法列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmList\",\"name\":\"算法列表\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CurrentPage\",\"name\":\"当前页\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"50\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PageSize\",\"name\":\"分页大小\",\"paraOrder\":4}],\"required\":true,\"serviceName\":\"查询设备算法列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeployAlgorithmModel\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法id\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65536\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmType\",\"name\":\"算法类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmName\",\"name\":\"算法名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelId\",\"name\":\"模型id\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelVersion\",\"name\":\"模型版本\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelUrl\",\"name\":\"模型下载url\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Platform\",\"name\":\"模型平台\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskId\",\"name\":\"部署任务id\",\"paraOrder\":7},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"MD5\",\"name\":\"模型md5值\",\"paraOrder\":8},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不加密\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"加密\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Encryption\",\"name\":\"模型是否加密\",\"paraOrder\":9}],\"outputParams\":[],\"required\":true,\"serviceName\":\"算法部署\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartAlgoTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"算法任务未找到\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"不存在该算法的配额\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"没有可用的配额\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"算法路数达到能力上限\",\"value\":5}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"开启算法任务\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAlgoTaskDetails\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"任务未找到\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法ID\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskCreateTime\",\"name\":\"任务创建时间\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskUpdateTime\",\"name\":\"任务更新时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskName\",\"name\":\"任务名称\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmParam\",\"name\":\"算法参数\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SubProductKey\",\"name\":\"子设备产品名称\",\"paraOrder\":7},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SubDeviceName\",\"name\":\"子设备名称\",\"paraOrder\":8},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未开启\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"未分配\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"未运行\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"运行中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"运行异常\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"正常结束\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"视频源异常\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"算法不支持\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"模型加载中\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"模型加载出错\",\"value\":9}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskStatus\",\"name\":\"任务状态\",\"paraOrder\":9},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Comment\",\"name\":\"备注\",\"paraOrder\":10}],\"required\":true,\"serviceName\":\"查询算法任务详细信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"UpdateAlgoTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskName\",\"name\":\"任务名称\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SubProductKey\",\"name\":\"子设备产品名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SubDeviceName\",\"name\":\"子设备名称\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法Id\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmParam\",\"name\":\"算法参数\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Comment\",\"name\":\"备注\",\"paraOrder\":6}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"三元组未找到\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"设备不存在\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"算法任务未找到\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"超过最大ROI数\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"算法不支持\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"关联设备的算法任务已存在\",\"value\":7}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"更新算法任务\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteAlgoTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"算法任务未找到\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"删除算法任务\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CreateAlgoTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskName\",\"name\":\"任务名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SubProductKey\",\"name\":\"子设备产品名称\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SubDeviceName\",\"name\":\"子设备名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法Id\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgorithmParam\",\"name\":\"算法参数\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Comment\",\"name\":\"备注\",\"paraOrder\":5}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"三元组未找到\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"设备不存在\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"超过最大算法任务数\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"超过最大ROI数\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"算法不支持\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"关联设备的算法任务已存在\",\"value\":7}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"创建算法任务\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopAlgoTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"算法任务未找到\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"关闭算法任务\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAlgoTaskList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PageNum\",\"name\":\"分页码\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"50\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PageSize\",\"name\":\"分页大小\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskName\",\"name\":\"任务名称\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65536\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Total\",\"name\":\"总记录数\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"更新时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.services[12].outputParams[1].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TaskUpdateTime\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"任务名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.services[12].outputParams[1].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TaskName\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"任务编号\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[12].outputParams[1].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TaskId\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[12].outputParams[1].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmName\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[12].outputParams[1].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法参数\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.services[12].outputParams[1].dataSpecs.dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmParam\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"子设备产品名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[12].outputParams[1].dataSpecs.dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SubProductKey\",\"name\":\"任务列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"子设备名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[12].outputParams[1].dataSpecs.dataSpecsList[7].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SubDeviceName\",\"name\":\"任务列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"未开启\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"未分配\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"未运行\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"运行中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"运行异常\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"正常结束\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"视频源异常\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"算法不支持\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"算法模型加载中\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"算法模型加载出错\",\"value\":9}],\"childName\":\"任务状态\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未开启\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"未分配\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"未运行\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"运行中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"运行异常\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"正常结束\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"视频源异常\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"算法不支持\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"算法模型加载中\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"算法模型加载出错\",\"value\":9}],\"dataType\":\"STRUCT\",\"identifier\":\"TaskStatus\",\"name\":\"任务列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskList\",\"name\":\"任务列表\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"参数错误\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CurrentPage\",\"name\":\"当前页\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"50\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PageSize\",\"name\":\"分页大小\",\"paraOrder\":4}],\"required\":true,\"serviceName\":\"查询算法任务列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SendDecryptionKey\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Code\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Message\",\"name\":\"信息\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DecryptionKey\",\"name\":\"解密秘钥\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ModelId\",\"name\":\"模型id\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"发送解密密钥\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SendChallenge\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Code\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Message\",\"name\":\"信息\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Challenge\",\"name\":\"挑战字\",\"paraOrder\":2}],\"outputParams\":[],\"required\":true,\"serviceName\":\"发送挑战字\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartDeviceDiagnosis\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"连接诊断\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"视频诊断\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DiagnosisType\",\"name\":\"诊断类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ProductKey\",\"name\":\"子设备PK\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DeviceName\",\"name\":\"子设备DN\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"请求成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"请求失败\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"请求结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"开始设备诊断\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryDeviceDiagnosisResult\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ProductKey\",\"name\":\"子设备PK\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DeviceName\",\"name\":\"子设备DN\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"连接诊断\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"视频诊断\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DiagnosisType\",\"name\":\"诊断类型\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"诊断结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询诊断结果\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAddedUserInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸库组ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"查询添加用户信息的布控状态\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StoreID\",\"name\":\"人脸布控文件storeID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"StoreID\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"FileName\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"URL\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Type\",\"name\":\"类型\",\"paraOrder\":2}],\"required\":true,\"serviceName\":\"查询布控成功的人脸图\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QuerySyncPicSchedule\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸库组ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Rate\",\"name\":\"人脸图布控百分比\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询人脸布控进度\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncFacePictures\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FacePicURL\",\"name\":\"同步文件URL地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下载文件失败\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"解析文件失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"设备同步图片状态值\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"同步人脸库图片\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ImageInference\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Algorithm\",\"name\":\"算法名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Data\",\"name\":\"数据\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoParam\",\"name\":\"算法参数\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"推理结果\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.services[20].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"InferenceResult\",\"name\":\"推理结果列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"InferenceResultList\",\"name\":\"推理结果列表\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"图片推理\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"类型为采集数据的类型,如果是algopipe表明是算法时序,如果是topo表明是设备拓扑图;如果type为algopipe,任务编号必填;如果是topo时,任务编号填空字符串\",\"identifier\":\"CaptureAIBoxDiagData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"采集中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"已存在相同的采集请求处理中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"采集参数错误\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CaptureStatus\",\"name\":\"采集状态\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"采集AIBox的诊断数据\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"该服务消息接口通常在调用CaptureAIBoxDiagData之后每隔一段时间查询使用\",\"identifier\":\"QueryAIBoxDiagData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskId\",\"name\":\"任务编号\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"查询成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"采集中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"查询参数错误或未采集\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"查询结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"采集数据\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Rate\",\"name\":\"采集进度\",\"paraOrder\":2}],\"required\":true,\"serviceName\":\"查询AIBox的诊断数据\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryDataCheckCode\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"CheckTime\",\"name\":\"校验截止时间戳\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询设备数据校验码\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryUserData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventTime\",\"name\":\"用户信息事件时间戳\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FacePicList\",\"name\":\"图片列表\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"图片Md5\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[24].outputParams[3].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"FaceMd5\",\"name\":\"特征列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法Id\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.services[24].outputParams[3].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"特征列表\"}],\"dataType\":\"ARRAY\",\"size\":100},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FeatureList\",\"name\":\"特征列表\",\"paraOrder\":3}],\"required\":true,\"serviceName\":\"查询用户是否存在\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncFaceData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FaceDataUrl\",\"name\":\"人脸数据URL地址\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"同步人脸数据\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAlgoConfig\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"16\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ComputingUnits\",\"name\":\"计算单元数量\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"16\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Total\",\"name\":\"已使用计算单元总量\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"单元Id\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"16\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.services[26].outputParams[2].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"UnitId\",\"name\":\"绑定列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法Id\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":128},\"dataSpecs\":{\"$ref\":\"$.services[26].outputParams[2].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"绑定列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":128},\"dataSpecs\":{\"$ref\":\"$.services[26].outputParams[2].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmName\",\"name\":\"绑定列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"视频流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"图片\",\"value\":1}],\"childName\":\"源类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"视频流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"图片\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"SourceType\",\"name\":\"绑定列表\"},{\"childDataType\":\"INT\",\"childName\":\"最大任务数\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"32\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.services[26].outputParams[2].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"MaxTask\",\"name\":\"绑定列表\"}],\"dataType\":\"ARRAY\",\"size\":16},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"BindingList\",\"name\":\"绑定列表\",\"paraOrder\":2}],\"required\":true,\"serviceName\":\"获取算法配置信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAlgoAbility\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"64\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Total\",\"name\":\"总量\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"算法ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":128},\"dataSpecs\":{\"$ref\":\"$.services[27].outputParams[1].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"能力列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":128},\"dataSpecs\":{\"$ref\":\"$.services[27].outputParams[1].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmName\",\"name\":\"能力列表\"},{\"childDataType\":\"INT\",\"childName\":\"最大图片任务数\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"64\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.services[27].outputParams[1].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"MaxPicTask\",\"name\":\"能力列表\"},{\"childDataType\":\"INT\",\"childName\":\"最大视频流任务数\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"64\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.services[27].outputParams[1].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"MaxStreamTask\",\"name\":\"能力列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AbilityList\",\"name\":\"能力列表\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"获取当前算法列表\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetAlgoUnitBinding\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"单元Id\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"16\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.services[28].inputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"UnitId\",\"name\":\"绑定列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法Id\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":128},\"dataSpecs\":{\"$ref\":\"$.services[28].inputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"绑定列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":128},\"dataSpecs\":{\"$ref\":\"$.services[28].inputParams[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmName\",\"name\":\"绑定列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"视频流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"图片\",\"value\":1}],\"childName\":\"源类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"视频流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"图片\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"SourceType\",\"name\":\"绑定列表\"},{\"childDataType\":\"INT\",\"childName\":\"最大任务数\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"32\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.services[28].inputParams[0].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"MaxTask\",\"name\":\"绑定列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BindingList\",\"name\":\"绑定列表\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"设置算法配置\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"MemoryUsage\",\"name\":\"内存使用率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"DiskUsage\",\"name\":\"磁盘使用率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CpuUsage\",\"name\":\"CPU使用率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Platform\",\"name\":\"上报平台属性\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":2,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CurrentComputingPower\",\"name\":\"当前算力\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"256\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"AlgorithmQuantity\",\"name\":\"算法数量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"MACAddress\",\"name\":\"MAC地址\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"软件版本\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"softVersion\",\"name\":\"软件信息\"},{\"childDataType\":\"TEXT\",\"childName\":\"版本详细信息\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"versionInfo\",\"name\":\"软件信息\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"SoftwareInfo\",\"name\":\"软件信息\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"操作系统\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[8].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"os\",\"name\":\"系统信息\"},{\"childDataType\":\"TEXT\",\"childName\":\"处理器\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[8].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"processor\",\"name\":\"系统信息\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"SystemInfo\",\"name\":\"系统信息\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"使能\",\"value\":1}],\"childName\":\"ntp使能\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"使能\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"ntpEnable\",\"name\":\"时间配置信息\"},{\"childDataType\":\"TEXT\",\"childName\":\"ntp服务地址\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ntpServer\",\"name\":\"时间配置信息\"},{\"childDataType\":\"INT\",\"childName\":\"ntp端口\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"65536\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ntpPort\",\"name\":\"时间配置信息\"},{\"childDataType\":\"INT\",\"childName\":\"ntp同步间隔\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"256\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ntpSynInterval\",\"name\":\"时间配置信息\"},{\"childDataType\":\"DATE\",\"childName\":\"系统时间\",\"childSpecsDTO\":{\"dataType\":\"DATE\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"systemTime\",\"name\":\"时间配置信息\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"TimeConfig\",\"name\":\"时间配置信息\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"IP地址\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ipAddr\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"子网掩码\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"netmask\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"网关\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"gateway\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"Mac地址\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"mac\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"dns1\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"dns1\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"dns2\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"dns2\",\"name\":\"网络配置\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"否\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"是\",\"value\":1}],\"childName\":\"主网口\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"否\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"是\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"mainCard\",\"name\":\"网络配置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"NetworkConfig\",\"name\":\"网络配置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"高度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"智能报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"IntelligentAlarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"小孩防走失\",\"value\":11016},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"定时抓拍\",\"value\":10013},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"工装检测\",\"value\":15001},{\"dataType\":\"ENUM\",\"name\":\"车流统计\",\"value\":14002},{\"dataType\":\"ENUM\",\"name\":\"路边停车\",\"value\":12004},{\"dataType\":\"ENUM\",\"name\":\"安全帽检测\",\"value\":15002},{\"dataType\":\"ENUM\",\"name\":\"视频图像模糊检测\",\"value\":10014},{\"dataType\":\"ENUM\",\"name\":\"视频无信号检测\",\"value\":10015},{\"dataType\":\"ENUM\",\"name\":\"视频黑屏检测\",\"value\":10016},{\"dataType\":\"ENUM\",\"name\":\"视频雪花检测\",\"value\":10017},{\"dataType\":\"ENUM\",\"name\":\"视频状态正常\",\"value\":10018},{\"dataType\":\"ENUM\",\"name\":\"目标检测\",\"value\":10019},{\"dataType\":\"ENUM\",\"name\":\"目标分类\",\"value\":10020},{\"dataType\":\"ENUM\",\"name\":\"OCR识别\",\"value\":10021},{\"dataType\":\"ENUM\",\"name\":\"路边停车应用\",\"value\":12005},{\"dataType\":\"ENUM\",\"name\":\"行为识别\",\"value\":11021},{\"dataType\":\"ENUM\",\"name\":\"行人重识别\",\"value\":11022},{\"dataType\":\"ENUM\",\"name\":\"人脸聚类\",\"value\":16001},{\"dataType\":\"ENUM\",\"name\":\"烟雾检测\",\"value\":13004},{\"dataType\":\"ENUM\",\"name\":\"高空抛物\",\"value\":11027},{\"dataType\":\"ENUM\",\"name\":\"电动车识别\",\"value\":11023},{\"dataType\":\"ENUM\",\"name\":\"pos机检测\",\"value\":11020},{\"dataType\":\"ENUM\",\"name\":\"打电话检测\",\"value\":11025},{\"dataType\":\"ENUM\",\"name\":\"打架斗殴\",\"value\":11026},{\"dataType\":\"ENUM\",\"name\":\"扬尘检测\",\"value\":15005},{\"dataType\":\"ENUM\",\"name\":\"积水检测\",\"value\":15006},{\"dataType\":\"ENUM\",\"name\":\"车辆工位检测\",\"value\":15007},{\"dataType\":\"ENUM\",\"name\":\"车辆工序检测\",\"value\":15008},{\"dataType\":\"ENUM\",\"name\":\"徘徊检测\",\"value\":11028}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"告警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Algorithm\",\"name\":\"算法\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ProductKey\",\"name\":\"子设备产品名\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceName\",\"name\":\"子设备名\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"告警内容\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmPicID\",\"name\":\"图片ID\",\"paraOrder\":5}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"智能告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"IntelligentAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001},{\"dataType\":\"ENUM\",\"name\":\"路边停车\",\"value\":12004},{\"dataType\":\"ENUM\",\"name\":\"安全帽检测\",\"value\":15002},{\"dataType\":\"ENUM\",\"name\":\"视频图像模糊检测\",\"value\":10014},{\"dataType\":\"ENUM\",\"name\":\"视频无信号检测\",\"value\":10015},{\"dataType\":\"ENUM\",\"name\":\"视频黑屏检测\",\"value\":10016},{\"dataType\":\"ENUM\",\"name\":\"视频雪花检测\",\"value\":10017},{\"dataType\":\"ENUM\",\"name\":\"视频状态正常\",\"value\":10018},{\"dataType\":\"ENUM\",\"name\":\"目标检测\",\"value\":10019},{\"dataType\":\"ENUM\",\"name\":\"目标分类\",\"value\":10020},{\"dataType\":\"ENUM\",\"name\":\"OCR识别\",\"value\":10021},{\"dataType\":\"ENUM\",\"name\":\"路边停车应用\",\"value\":12005},{\"dataType\":\"ENUM\",\"name\":\"行为识别\",\"value\":11021},{\"dataType\":\"ENUM\",\"name\":\"行人重识别\",\"value\":11022},{\"dataType\":\"ENUM\",\"name\":\"人脸聚类\",\"value\":16001},{\"dataType\":\"ENUM\",\"name\":\"烟雾检测\",\"value\":13004},{\"dataType\":\"ENUM\",\"name\":\"高空抛物\",\"value\":11027},{\"dataType\":\"ENUM\",\"name\":\"电动车识别\",\"value\":11023},{\"dataType\":\"ENUM\",\"name\":\"pos机检测\",\"value\":11020},{\"dataType\":\"ENUM\",\"name\":\"打电话检测\",\"value\":11025},{\"dataType\":\"ENUM\",\"name\":\"打架斗殴\",\"value\":11026},{\"dataType\":\"ENUM\",\"name\":\"工服检测\",\"value\":15001},{\"dataType\":\"ENUM\",\"name\":\"扬尘检测\",\"value\":15005},{\"dataType\":\"ENUM\",\"name\":\"积水检测\",\"value\":15006},{\"dataType\":\"ENUM\",\"name\":\"车辆工位检测\",\"value\":15007},{\"dataType\":\"ENUM\",\"name\":\"车辆工序检测\",\"value\":15008},{\"dataType\":\"ENUM\",\"name\":\"徘徊检测\",\"value\":11028}],\"childName\":\"告警类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001},{\"dataType\":\"ENUM\",\"name\":\"路边停车\",\"value\":12004},{\"dataType\":\"ENUM\",\"name\":\"安全帽检测\",\"value\":15002},{\"dataType\":\"ENUM\",\"name\":\"视频图像模糊检测\",\"value\":10014},{\"dataType\":\"ENUM\",\"name\":\"视频无信号检测\",\"value\":10015},{\"dataType\":\"ENUM\",\"name\":\"视频黑屏检测\",\"value\":10016},{\"dataType\":\"ENUM\",\"name\":\"视频雪花检测\",\"value\":10017},{\"dataType\":\"ENUM\",\"name\":\"视频状态正常\",\"value\":10018},{\"dataType\":\"ENUM\",\"name\":\"目标检测\",\"value\":10019},{\"dataType\":\"ENUM\",\"name\":\"目标分类\",\"value\":10020},{\"dataType\":\"ENUM\",\"name\":\"OCR识别\",\"value\":10021},{\"dataType\":\"ENUM\",\"name\":\"路边停车应用\",\"value\":12005},{\"dataType\":\"ENUM\",\"name\":\"行为识别\",\"value\":11021},{\"dataType\":\"ENUM\",\"name\":\"行人重识别\",\"value\":11022},{\"dataType\":\"ENUM\",\"name\":\"人脸聚类\",\"value\":16001},{\"dataType\":\"ENUM\",\"name\":\"烟雾检测\",\"value\":13004},{\"dataType\":\"ENUM\",\"name\":\"高空抛物\",\"value\":11027},{\"dataType\":\"ENUM\",\"name\":\"电动车识别\",\"value\":11023},{\"dataType\":\"ENUM\",\"name\":\"pos机检测\",\"value\":11020},{\"dataType\":\"ENUM\",\"name\":\"打电话检测\",\"value\":11025},{\"dataType\":\"ENUM\",\"name\":\"打架斗殴\",\"value\":11026},{\"dataType\":\"ENUM\",\"name\":\"工服检测\",\"value\":15001},{\"dataType\":\"ENUM\",\"name\":\"扬尘检测\",\"value\":15005},{\"dataType\":\"ENUM\",\"name\":\"积水检测\",\"value\":15006},{\"dataType\":\"ENUM\",\"name\":\"车辆工位检测\",\"value\":15007},{\"dataType\":\"ENUM\",\"name\":\"车辆工序检测\",\"value\":15008},{\"dataType\":\"ENUM\",\"name\":\"徘徊检测\",\"value\":11028}],\"dataType\":\"STRUCT\",\"identifier\":\"AlarmType\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"图片ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicID\",\"name\":\"事件列表\"},{\"childDataType\":\"INT\",\"childName\":\"图片大小\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"1\",\"step\":\"1\",\"unit\":\"Byte\",\"unitName\":\"字节\"},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicSize\",\"name\":\"事件列表\"},{\"childDataType\":\"DATE\",\"childName\":\"告警时间\",\"childSpecsDTO\":{\"dataType\":\"DATE\"},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EventTime\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Algorithm\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"子设备产品名\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ProductKey\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"子设备名\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DeviceName\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"告警内容\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[7].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Data\",\"name\":\"事件列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventList\",\"name\":\"事件列表\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"算法模型部署结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DeployAlgorithmModelResult\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskId\",\"name\":\"任务ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Process\",\"name\":\"部署进度\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"算法平台不支持\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下载模型失败\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"MD5校验失败\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"解压失败\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"解密失败\",\"value\":5}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"返回码\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Message\",\"name\":\"返回信息\",\"paraOrder\":3}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"请求挑战字\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"RequestChallenge\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ID2\",\"name\":\"ID2信息\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"请求解密密钥\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"RequestDecryptionKey\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ModelId\",\"name\":\"模型id\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ID2ProductKey\",\"name\":\"ID2产品秘钥\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ID2\",\"name\":\"ID2信息\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AuthCode\",\"name\":\"授权码\",\"paraOrder\":3}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"人脸库同步确认\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnSync\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncTime\",\"name\":\"同步时间戳\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Payload\",\"name\":\"透传参数\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"同步成功\",\"value\":200},{\"dataType\":\"ENUM\",\"name\":\"同步失败重试\",\"value\":201},{\"dataType\":\"ENUM\",\"name\":\"同步失败不重试\",\"value\":202}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"状态码\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"同步人脸图片失败\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"OnFacePicError\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncTime\",\"name\":\"同步时间戳\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"16200\",\"min\":\"16001\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"错误码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FaceMd5\",\"name\":\"图片MD5值\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法ID\",\"paraOrder\":4}],\"required\":true}]}'),(1698826367,0,'2637588672','WaterPressureSensor','水压传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2647135477','EpdTable','电子标签','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"给电子纸桌签下发桌签需要显示的数据。黑白红三色电子纸特定的数据格式\",\"identifier\":\"send_epd_table_datas\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"刷屏数据\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"UpdateDisplay\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"更新显示\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Version\",\"name\":\"固件版本号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"3\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"获取电子纸设备是否在刷屏,刷屏阶段,不接受数据传输\",\"identifier\":\"epd_work_status\",\"name\":\"电子纸工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"mm\",\"unitName\":\"毫米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ScreenWidth\",\"name\":\"屏幕宽度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"mm\",\"unitName\":\"毫米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ScreenLength\",\"name\":\"屏幕长度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"黑白\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"黑白红\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"黑白黄\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"全彩\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ScreenColour\",\"name\":\"屏幕颜色\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"EPD\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"BCD\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"TFT\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"LCD\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"OLED\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ScreenType\",\"name\":\"屏幕类型\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"PictureURL\",\"name\":\"图片地址\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SignalIntensity\",\"name\":\"信号强度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"LabelID\",\"name\":\"标签ID\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LabelBatteryPercentage\",\"name\":\"标签电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"低电量报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"LowElectricityAlarm\",\"outputData\":[],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2653804658','retail','零售设备','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2656658165','FillLight','补光灯','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2657061952','WallHungGasBoiler','壁挂炉','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"夏季模式\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"冬季模式\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WinSumMode\",\"name\":\"冬夏模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"BathRunning\",\"name\":\"卫浴运行\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatingRunning\",\"name\":\"采暖运行\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"一级防冻\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"二级防冻\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AntifreezeRunning\",\"name\":\"防冻运行\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"HeatingTemperature\",\"name\":\"采暖温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"BathTemperature\",\"name\":\"卫浴温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"MondayTiming\",\"name\":\"周一定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TuesdayTiming\",\"name\":\"周二定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"WednesdayTiming\",\"name\":\"周三定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ThursdayTiming\",\"name\":\"周四定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FridayTiming\",\"name\":\"周五定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SaturdayTiming\",\"name\":\"周六定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SundayTiming\",\"name\":\"周日定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"-100\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"OutdoorTemperature\",\"name\":\"室外温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"-100\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"IndoorTemperature\",\"name\":\"室内温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"预约模式\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatingSwitch\",\"name\":\"采暖开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"75\",\"min\":\"35\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2675946153','MAXHUB','会议平板','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ToggleLightSwitch\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"翻转主灯开关\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"6500\",\"min\":\"2700\",\"precise\":0,\"step\":\"1\",\"unit\":\"K\",\"unitName\":\"开尔文\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ColorTemperature\",\"name\":\"冷暖色温\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Brightness\",\"name\":\"明暗度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"主灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"4\",\"name\":\"夜灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"手动默认\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"阅读\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"影院\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"夜灯\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"生活\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"柔和\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"色调\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Hue\",\"name\":\"HSV调色\"},{\"childDataType\":\"INT\",\"childName\":\"饱和度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Saturation\",\"name\":\"HSV调色\"},{\"childDataType\":\"INT\",\"childName\":\"明度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Value\",\"name\":\"HSV调色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"HSVColor\",\"name\":\"HSV调色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"色调\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Hue\",\"name\":\"HSL调色\"},{\"childDataType\":\"INT\",\"childName\":\"饱和度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Saturation\",\"name\":\"HSL调色\"},{\"childDataType\":\"INT\",\"childName\":\"亮度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Lightness\",\"name\":\"HSL调色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"HSLColor\",\"name\":\"HSL调色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"红色\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Red\",\"name\":\"RGB调色\"},{\"childDataType\":\"INT\",\"childName\":\"绿色\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Green\",\"name\":\"RGB调色\"},{\"childDataType\":\"INT\",\"childName\":\"蓝色\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Blue\",\"name\":\"RGB调色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"RGBColor\",\"name\":\"RGB调色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2686608256','loraLight','lora单灯','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightStatus\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LightAdjustLevel\",\"name\":\"调光等级\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"-2147483648\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"seq\",\"name\":\"帧序号\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"cmd\",\"name\":\"命令号\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"illumination\",\"name\":\"环境亮度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"警告\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"overPower\",\"name\":\"功率过高\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"underPower\",\"name\":\"功率过低\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"powerGetErr\",\"name\":\"电能采集故障\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"4\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LightVolt\",\"name\":\"工作电压\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LightCurrent\",\"name\":\"工作电流\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ActivePower\",\"name\":\"有功功率值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1\",\"min\":\"0.1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PowerRatio\",\"name\":\"功率因数\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PowerConsumption\",\"name\":\"用电量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"OverVoltError\",\"name\":\"过压告警\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"UnderVoltError\",\"name\":\"欠压告警\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"errValue\",\"name\":\"故障发生值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65536\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"setValue\",\"name\":\"故障门限值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"-2147483648\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"resCode\",\"name\":\"操作返回值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"策略编号\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"-2147483648\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"methodId\",\"name\":\"策略\"},{\"childDataType\":\"INT\",\"childName\":\"运行模式\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"mode\",\"name\":\"策略\"},{\"childDataType\":\"INT\",\"childName\":\"亮度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"brightness\",\"name\":\"策略\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"开关\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"onOff\",\"name\":\"策略\"},{\"childDataType\":\"INT\",\"childName\":\"策略参考值\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"onSet\",\"name\":\"策略\"},{\"childDataType\":\"INT\",\"childName\":\"循环设置\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"loop\",\"name\":\"策略\"},{\"childDataType\":\"DATE\",\"childName\":\"生效时间\",\"childSpecsDTO\":{\"dataType\":\"DATE\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"effectTime\",\"name\":\"策略\"},{\"childDataType\":\"DATE\",\"childName\":\"失效时间\",\"childSpecsDTO\":{\"dataType\":\"DATE\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.properties[18].dataSpecsList[7].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"invalidTime\",\"name\":\"策略\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"action\",\"name\":\"策略\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'2691923719','ElevatorAccelerationSensor','电梯加速度探测传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2712049720','EmergencyLight','应急照明灯','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2725079385','FarmRecorder','农田记录仪','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"时景视频URL\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DailyVideoUrl\",\"name\":\"全天时景\"},{\"childDataType\":\"INT\",\"childName\":\"视频高\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"3456\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"px\",\"unitName\":\"像素\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DailyVideoHeight\",\"name\":\"全天时景\"},{\"childDataType\":\"INT\",\"childName\":\"视频宽\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"4608\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"px\",\"unitName\":\"像素\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DailyVideoWidth\",\"name\":\"全天时景\"},{\"childDataType\":\"TEXT\",\"childName\":\"时景缩略图URL\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ThumbnailUrl\",\"name\":\"全天时景\"},{\"childDataType\":\"INT\",\"childName\":\"缩略图高\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"3456\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"px\",\"unitName\":\"像素\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ThumbnailHeight\",\"name\":\"全天时景\"},{\"childDataType\":\"INT\",\"childName\":\"缩略图宽\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"4608\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"px\",\"unitName\":\"像素\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ThumbnailWidth\",\"name\":\"全天时景\"}],\"dataType\":\"STRUCT\",\"identifier\":\"DailyVideo\",\"name\":\"全天时景\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"图像URL\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DailyImageUrl\",\"name\":\"图像\"},{\"childDataType\":\"INT\",\"childName\":\"图像宽\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"4608\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"px\",\"unitName\":\"像素\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DailyImageWidth\",\"name\":\"图像\"},{\"childDataType\":\"INT\",\"childName\":\"图像高\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"3456\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"px\",\"unitName\":\"像素\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"DailyImageHeight\",\"name\":\"图像\"}],\"dataType\":\"STRUCT\",\"identifier\":\"DailyImage\",\"name\":\"图像\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1920\",\"min\":\"0\",\"step\":\"300\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"identifier\":\"Interval\",\"name\":\"采集间隔\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'272516276','PressureAlarm','压力报警器','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2728928277','HomeSecurity','家居安防','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2733580632','Water purifier','净水机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"批量库存查询\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'2738688976','GroundSourceHeatPump','地源热泵','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2759477813','Ice_machine','制冰机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"CleanSwitch\",\"name\":\"清洗开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IceShedding\",\"name\":\"强制脱冰\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"制冰\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"缺水\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"冰满\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"化冰\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"故障\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"清洗\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MachineState\",\"name\":\"制冰机的工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PowerSwitchAll\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"4000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentPower\",\"name\":\"当前功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"设备故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error_alarm\",\"outputData\":[],\"required\":false}]}'),(1698826367,0,'278840337','Humidifier','加湿器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IonsSwitch\",\"name\":\"负离子开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetHumidity\",\"name\":\"目标湿度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatSwitch\",\"name\":\"加热开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ScreenSwitch\",\"name\":\"屏显开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ConstantHumiditySwitch\",\"name\":\"恒湿开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"缺水\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WaterShortage\",\"name\":\"缺水状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"当前湿度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"静音\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SprayLevel\",\"name\":\"雾量档位\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2788625903','IRDetector','红外探测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无人\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有人\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"MotionAlarmState\",\"name\":\"红外检测状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"当设备被撬时,上报该事件\",\"eventName\":\"防撬报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TamperAlarm\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2838687263','CeilingFanLamp','吊扇灯','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"FanSwitch\",\"name\":\"吊扇开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"1档\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"2档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"3档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"4档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"5档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"6档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"吊扇风速\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"主灯开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"NightLightSwitch\",\"name\":\"夜灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"7000\",\"min\":\"2000\",\"precise\":0,\"step\":\"1\",\"unit\":\"K\",\"unitName\":\"开尔文\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ColorTemperature\",\"name\":\"冷暖色温\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LightLuminance\",\"name\":\"主灯亮度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"BluetoothSwitch\",\"name\":\"蓝牙音响开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正转\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"反转\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RotationDirection\",\"name\":\"吊扇正反转\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2846884135','MultiParkingCamera','多功能停车摄像头','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryRecordTimeList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"QuerySize\",\"name\":\"查询数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"所有类型\",\"value\":99},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"录像类型\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[0].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BeginTime\",\"name\":\"时间列表\"},{\"childDataType\":\"INT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[0].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"时间列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"childName\":\"录像类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"Type\",\"name\":\"时间列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TimeList\",\"name\":\"时间列表\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询录像时间列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"辅码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"码流类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止直播\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"TriggerPicCapture\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UPloadUrl\",\"name\":\"上传地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PicID\",\"name\":\"图片ID\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"触发设备抓图\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVodByTime\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":6}],\"outputParams\":[],\"required\":true,\"serviceName\":\"开始录像按时间观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVod\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FileName\",\"name\":\"录像名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":5}],\"outputParams\":[],\"required\":true,\"serviceName\":\"开始录像观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Reboot\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"重启\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryRecordList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"所有类型\",\"value\":99},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"录像类型\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"QuerySize\",\"name\":\"查询数量\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"录像名\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[6].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"FileName\",\"name\":\"录像列表\"},{\"childDataType\":\"INT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[6].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BeginTime\",\"name\":\"录像列表\"},{\"childDataType\":\"INT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[6].outputParams[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"录像列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"文件大小\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[6].outputParams[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Size\",\"name\":\"录像列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"childName\":\"录像类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"Type\",\"name\":\"录像列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RecordList\",\"name\":\"录像列表\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询录像列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"辅码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"码流类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"60\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PreTime\",\"name\":\"提前推流时间\",\"paraOrder\":5}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"设备不支持\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备资源不足\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"推流连接失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"推流结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"开始直播\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AddVehicleIOfPermission\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"VehiclePermissionUrl\",\"name\":\"车辆权限Url地址\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"通行车辆权限下发\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetVehiclePermission\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VehiclePermissionUrl\",\"name\":\"车辆权限信息Url\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询车辆权限信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetPermissionDownloadProgress\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"进行中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下载权限文件失败\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DownloadStatus\",\"name\":\"车辆权限下发状态\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询车辆权限下发进度\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SendOssStsToken\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Credentials\",\"name\":\"加密的访问凭证\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BucketName\",\"name\":\"OSSbucket名称\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndPoint\",\"name\":\"OSS的EndPoint名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ObjectName\",\"name\":\"OSS存储空间名称\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"下发OssStsToken\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"下发LED数据\",\"identifier\":\"AddLedData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LedData\",\"name\":\"LED数据\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"下发LED数据\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"提示语音\",\"identifier\":\"NoticeBroadcast\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"VoiceContent\",\"name\":\"语音播报内容\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"10\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlaySpeed\",\"name\":\"语音播报速度\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"提示语音\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"提示显示\",\"identifier\":\"NoticeDisplay\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DisplayContent\",\"name\":\"显示内容\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RowNumber\",\"name\":\"屏幕行号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"10\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"MovingSpeed\",\"name\":\"文字移动速度\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"3600\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DisplayTime\",\"name\":\"显示时长\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"禁止\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"从右到左\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"从左到右\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"从下到上\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"从上到下\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"MovingType\",\"name\":\"文字移动方式\",\"paraOrder\":4}],\"outputParams\":[],\"required\":false,\"serviceName\":\"提示显示\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"默认显示\",\"identifier\":\"DefaultDisplay\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DisplayContent\",\"name\":\"显示内容\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RowNumber\",\"name\":\"屏幕行号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"空闲\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"普通权限车辆_白名单车辆过车\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"黑名单车辆过车\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"临时车辆过车\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"无牌车辆过车\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"DefaultSituation\",\"name\":\"默认场景\",\"paraOrder\":2}],\"outputParams\":[],\"required\":false,\"serviceName\":\"默认显示\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"显示二维码\",\"identifier\":\"QrCodeDisplay\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"QrCode\",\"name\":\"二维码\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"显示二维码\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"触发抓拍\",\"identifier\":\"TriggerRecognition\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"触发抓拍\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"道闸操作\",\"identifier\":\"OperatGate\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闸\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开闸\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"长开\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OperatType\",\"name\":\"操作类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"道闸操作\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SubStreamVideoQuality\",\"name\":\"辅码流视频质量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常状态\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"翻转状态\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ImageFlipState\",\"name\":\"画面翻转状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MotionDetectSensitivity\",\"name\":\"移动侦测灵敏度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StreamVideoQuality\",\"name\":\"主码流视频质量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低频\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"中频\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高频\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AlarmFrequencyLevel\",\"name\":\"报警频率\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AlarmSwitch\",\"name\":\"报警开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"-100\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"数字绝对值表示屏幕支持的行数\\n负号表示支持
换行符,调用费显屏显示服务时指定行数为1,内容为带
的字符串\",\"identifier\":\"LedRowNumber\",\"name\":\"屏幕行数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"分离模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"混合模式\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"分离模式:支持语音、文字提示单独下发,屏幕支持单行刷新\\n混合模式:仅支持语音、文字提示混合下发,屏幕不支持单行刷新\",\"identifier\":\"LedNoticeMode\",\"name\":\"屏幕通知模式\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"屏幕音量大小\",\"identifier\":\"Volume\",\"name\":\"屏幕音量大小\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"屏幕亮度\",\"identifier\":\"Brightness\",\"name\":\"屏幕亮度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不支持\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"支持\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"是否支持二维码\",\"identifier\":\"IsSurportQrCode\",\"name\":\"是否支持二维码\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"已打开\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"已关闭\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"开闸中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"关闸中\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"道闸设备状态\",\"identifier\":\"GateState\",\"name\":\"道闸设备状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"有车\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"不支持\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"车辆等待状态\",\"identifier\":\"VehicleState\",\"name\":\"车辆等待状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"侦测报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"AlarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"哭声侦测\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"笑声侦测\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"火警侦测\",\"value\":13},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":14},{\"dataType\":\"ENUM\",\"name\":\"人流统计\",\"value\":15},{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"宠物侦测\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"越界侦测\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"区域入侵侦测\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"跌倒侦测\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"笑脸检测\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"异响侦测\",\"value\":10}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"告警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmPicID\",\"name\":\"报警抓图ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"告警内容\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"智能告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"IntelligentAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017}],\"childName\":\"告警类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017}],\"dataType\":\"STRUCT\",\"identifier\":\"AlarmType\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"图片ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicID\",\"name\":\"事件列表\"},{\"childDataType\":\"INT\",\"childName\":\"图片大小\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"B\",\"unitName\":\"字节\"},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicSize\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"告警内容\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Data\",\"name\":\"事件列表\"},{\"childDataType\":\"DATE\",\"childName\":\"告警时间\",\"childSpecsDTO\":{\"dataType\":\"DATE\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.events[1].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EventTime\",\"name\":\"事件列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventList\",\"name\":\"事件列表\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"网络异常\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"存储介质异常\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"StsToken请求上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OssStsTokenRequest\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"图片文件上传\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"文本文件上传\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"其他类型文件上传\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RequestType\",\"name\":\"请求上传文件类型\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"异常抬杆\",\"eventName\":\"异常抬杆\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"AbnormalOpenGate\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"遥控器控制抬杆\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"设备自身按键抬杆\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"其他方式\",\"value\":99}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OpenType\",\"name\":\"抬杆方式\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ImagePath\",\"name\":\"抓拍图片地址\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'285080715','GasWaterHeater','燃气热水器','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"set\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"75\",\"min\":\"35\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Set_Temputer\",\"name\":\"设定温度\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Safety_Temputer_Lock\",\"name\":\"防烫保护锁\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭预热\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"单次预热\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"定时预热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"全天预热\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Preheat_Mode\",\"name\":\"预热模式\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":254},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Timer_Quantum\",\"name\":\"定时信息\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"paraOrder\":4}],\"outputParams\":[],\"required\":false,\"serviceName\":\"设备控制\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"get\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"Set_Temputer\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"Safety_Temputer_Loc\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"Preheat_Mode\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"Timer_Quantum\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"OutputWaterTempute\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"Flame_State\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"CombustibleGasCheck\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"Error_Code\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"PowerSwitch\",\"value\":8}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Selected_Property\",\"name\":\"状态同步属性\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"75\",\"min\":\"35\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Set_Temputer\",\"name\":\"设定温度\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Safety_Temputer_Lock\",\"name\":\"防烫保护锁\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"单次预热\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关闭预热\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"定时预热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"全天预热\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Preheat_Mode\",\"name\":\"预热模式\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":254},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Timer_Quantum\",\"name\":\"定时信息\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OutputWaterTemputer\",\"name\":\"出水温度\",\"paraOrder\":4},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无火\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有火\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Flame_State\",\"name\":\"燃烧火焰状态\",\"paraOrder\":5},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未监测到可燃气体泄漏\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"监测到可燃气体谢里普\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CombustibleGasCheck\",\"name\":\"可燃气体检测\",\"paraOrder\":6},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"paraOrder\":7},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在进行固件升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在进行固件升级\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"paraOrder\":8},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"CO故障\",\"value\":90},{\"dataType\":\"ENUM\",\"name\":\"比例阀故障\",\"value\":80},{\"dataType\":\"ENUM\",\"name\":\"意外火焰检测故障\",\"value\":72},{\"dataType\":\"ENUM\",\"name\":\"电磁阀故障\",\"value\":71},{\"dataType\":\"ENUM\",\"name\":\"风机故障\",\"value\":61},{\"dataType\":\"ENUM\",\"name\":\"出水温度检测器故障\",\"value\":32},{\"dataType\":\"ENUM\",\"name\":\"进水温度传感器故障\",\"value\":31},{\"dataType\":\"ENUM\",\"name\":\"高温继电器故障\",\"value\":20},{\"dataType\":\"ENUM\",\"name\":\"出水温度过高故障\",\"value\":16},{\"dataType\":\"ENUM\",\"name\":\"温度熔断器故障\",\"value\":14},{\"dataType\":\"ENUM\",\"name\":\"燃烧中熄火\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"点火失败\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"单次燃烧时间超过60分钟\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"CH4故障\",\"value\":91}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error_Code\",\"name\":\"故障状态\",\"paraOrder\":9}],\"required\":false,\"serviceName\":\"状态同步\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"75\",\"min\":\"-10\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"加热中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HeatState\",\"name\":\"加热状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PowerMode\",\"name\":\"火力档位\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"45\",\"min\":\"-10\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TotalGas\",\"name\":\"总耗气量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TotalWater\",\"name\":\"总耗水量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PowerConsumption\",\"name\":\"功耗\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"单次预热\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关闭预热\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"定时预热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"全天预热\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Preheat_Mode\",\"name\":\"预热模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Safety_Temputer_Lock\",\"name\":\"防烫保护锁\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":254},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Timer_Quantum\",\"name\":\"定时信息\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"OutputWaterTemputer\",\"name\":\"出水温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无火\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有火\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Flame_State\",\"name\":\"燃烧火焰状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未监测到可燃气体泄漏\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"监测到可燃气体泄漏\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CombustibleGasCheck\",\"name\":\"可燃气体检测\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"CO故障\",\"value\":90},{\"dataType\":\"ENUM\",\"name\":\"比例阀故障\",\"value\":80},{\"dataType\":\"ENUM\",\"name\":\"意外火焰监测故障\",\"value\":72},{\"dataType\":\"ENUM\",\"name\":\"电磁阀故障\",\"value\":71},{\"dataType\":\"ENUM\",\"name\":\"风机故障\",\"value\":61},{\"dataType\":\"ENUM\",\"name\":\"出水温度传感器故障\",\"value\":31},{\"dataType\":\"ENUM\",\"name\":\"高温继电器故障\",\"value\":20},{\"dataType\":\"ENUM\",\"name\":\"出水温度过高故障\",\"value\":16},{\"dataType\":\"ENUM\",\"name\":\"温度熔断器故障\",\"value\":14},{\"dataType\":\"ENUM\",\"name\":\"燃烧中熄火\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"点火失败\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"单次燃烧大于60min\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"CH4故障\",\"value\":91}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Error_Code\",\"name\":\"故障状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在升级\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"固件升级通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OTA_Event\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在升级\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"机器故障告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Machine_Fault_Event\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"发生异常\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Error_Code\",\"name\":\"错误信息\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"可燃气体告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"GasCheck_Event\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未检测到可燃气体\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"检测到可燃气体\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Gas_Result\",\"name\":\"可燃气体检测结果\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'2858153998','Curtainswitch','单路窗帘开关','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关窗帘\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开窗帘\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停窗帘\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CurtainOperation\",\"name\":\"窗帘操作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'2868230385','PreciseTimeSpaceCamera','精准时空摄像头','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Reset\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"复位\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AngleSelfAdaption\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"角度自适应校准\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ResetTime\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ResetTime\",\"name\":\"校时\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"设备校时服务\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CtrlCommand\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"重置无车\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"重置标尺\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关机\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"强制重启\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"CommandType\",\"name\":\"指令类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"控制指令\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ReceiveEvents\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventID\",\"name\":\"事件编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventTime\",\"name\":\"事件发生时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventCode\",\"name\":\"事件类型编号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventPos\",\"name\":\"事件位置编号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"执行成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"执行失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预留\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReturnCode\",\"name\":\"返回码\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"事件触发\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Reboot\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"重启\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RestoreFactorySettings\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"恢复出厂设置\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"从OSS端下载下载裁切文件到裁床文件路径下\",\"identifier\":\"LoadFile\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AbsoluteDirectoryAndFileName\",\"name\":\"文件目录和文件名\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"下载文件\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"description\":\"\",\"identifier\":\"CurrentTime\",\"name\":\"当前时间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"上\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"左\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"右\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"DirectionControl\",\"name\":\"方向控制\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"360\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"DirectionAngle\",\"name\":\"方向角度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低电量\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"异常\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ModuleState\",\"name\":\"模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":16},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"NumberModel\",\"name\":\"型号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":12},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"NumberSerial\",\"name\":\"设备号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Version\",\"name\":\"固件版本号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"IP地址\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":16},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"IP\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"子网掩码\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":16},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Netmask\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"默认网关\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":16},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Gateway\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"MAC地址\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":17},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"MAC\",\"name\":\"网络配置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"NetConfiguration\",\"name\":\"网络配置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"防撬报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TamperAlarm\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"非正常状态告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AbnormalBehaviorAlarm\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"心跳事件上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"HeartbeatNotification\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkingState\",\"name\":\"车位状态\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"4.5\",\"min\":\"2.5\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VoltageValue\",\"name\":\"电压值\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"翻倒告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TurnoverWarning\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"设备故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error_alarm\",\"outputData\":[],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'2878701887','Airconditionerthermostat','空调温控器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"除湿\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"风速\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"32\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2905275668','Airbox','空气盒子','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"5000\",\"min\":\"300\",\"precise\":0,\"step\":\"1\",\"unit\":\"ppm\",\"unitName\":\"百万分率\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CO2\",\"name\":\"二氧化碳浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"当前湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"3\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"HCHO\",\"name\":\"甲醛浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PM25\",\"name\":\"PM25指数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"3\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TVOC\",\"name\":\"TVOC_VOC浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'2906724811','TowelRack','毛巾架','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"ENUM\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"75\",\"min\":\"-10\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"75\",\"min\":\"30\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"烘干\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"消毒\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"杀菌\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ModeControl\",\"name\":\"控制模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2909699033','ParkingArea','停车区域','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"OrderCompleted\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OrderNumber\",\"name\":\"订单编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"支付完成\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"免费\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"本地支付\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"取消订单\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PayStatus\",\"name\":\"支付状态\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"订单确认\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetRelationAreaList\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SubAreaIdListUrl\",\"name\":\"子级区域Id列表Url\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParentAreaId\",\"name\":\"父级区域Id\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"查询关联区域列表\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetParkSpaceList\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkSpaceListUrl\",\"name\":\"车位列表Url\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询车位列表\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CreateOrder\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"InBarrierPK\",\"name\":\"进场道闸PK\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"InBarrierDN\",\"name\":\"进场道闸DN\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"InTime\",\"name\":\"进场时间\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OutBarrierPK\",\"name\":\"出场道闸PK\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OutBarrierDN\",\"name\":\"出场道闸DN\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OutTime\",\"name\":\"出场时间\",\"paraOrder\":6},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"支付完成\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"未支付\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PayStatus\",\"name\":\"支付状态\",\"paraOrder\":7}],\"outputParams\":[],\"required\":true,\"serviceName\":\"创建订单\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AddVehicleIOfBlackList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"新增黑名单车辆\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DelVehicleIOfBlackList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"删除黑名单车辆\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetBlackList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BlackListUrl\",\"name\":\"黑名单车辆Url\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询黑名单车辆\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AddVehicleIOfWhiteList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"新增白名单车辆\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DelVehicleIOfWhiteList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"删除白名单车辆\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetWhiteList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"WhiteListUrl\",\"name\":\"白名单车辆Url\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询白名单车辆\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TotalParkSpace\",\"name\":\"车位总数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RemainParkSpace\",\"name\":\"余位总数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"AreaId\",\"name\":\"区域Id\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"AreaName\",\"name\":\"区域名称\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"通行订单\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"CarPassOrder\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"InTime\",\"name\":\"进场时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OutTime\",\"name\":\"出场时间\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"99999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Amount\",\"name\":\"订单金额\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OrderNumber\",\"name\":\"订单编号\",\"paraOrder\":4},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"支付完成\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"未支付\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PayStatus\",\"name\":\"支付状态\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"InBarrierPK\",\"name\":\"进场道闸PK\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"InBarrierDN\",\"name\":\"进场道闸DN\",\"paraOrder\":7},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OutBarrierPK\",\"name\":\"出场道闸PK\",\"paraOrder\":8},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OutBarrierDN\",\"name\":\"出场道闸DN\",\"paraOrder\":9},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OutImageUrl\",\"name\":\"出场照片文件URL\",\"paraOrder\":10},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"InImageUrl\",\"name\":\"入场照片文件URL\",\"paraOrder\":11}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"黑名单变更\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"UpdateBlackList\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"新增\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"删除\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Type\",\"name\":\"变更类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"白名单变更\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"UpdateWhiteList\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"新增\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"删除\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Type\",\"name\":\"变更类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1}],\"required\":true}]}'),(1698826367,0,'2915402330','Grab the doll machine','抓娃娃机','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"批量库存查询\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"单个库存查询\",\"identifier\":\"getInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"单个库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"下单的数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'2950022823','PlasticProductsIndustry','塑料制品业','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'2971910609','HVACExtController','HVAC外接控制器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"解锁\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"锁定\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"LockSwitch\",\"name\":\"锁定开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低速\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中速\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高速\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"WindSpeed\",\"name\":\"风速\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-100\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-100\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"送风地暖\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"送风\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"制冷\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"制热\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"地暖\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"双制热\",\"value\":5}],\"dataType\":\"ENUM\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'2983646886','TitrantPump','滴定泵','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CalibrateParameter\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"校准参数\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9999.9\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ManualRunVolume\",\"name\":\"手动运行体积\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ManualRunTime\",\"name\":\"手动运行时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"手动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PumpWorkMode\",\"name\":\"泵工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AutoSwitch\",\"name\":\"编程开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"24\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RunTimes\",\"name\":\"运行次数\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"99999.9\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TotalAddVolume\",\"name\":\"总滴定量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"55\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ChemicalInterferenceTime\",\"name\":\"防化学干扰时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"300\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"rpm\",\"unitName\":\"每分钟转数\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ManualModeSpeed\",\"name\":\"手动模式转速\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60000.0\",\"min\":\"0.1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BottleVolume\",\"name\":\"溶液瓶体积\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60000.0\",\"min\":\"0.1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BottleRemainVolume\",\"name\":\"溶液瓶剩余体积\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'299980205','LawnMower','割草机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"开始\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"暂停\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PauseSwtich\",\"name\":\"暂停开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"Workingswitch\",\"name\":\"工作开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量百分比\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"200\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"㎡\",\"unitName\":\"平方米\"},\"dataType\":\"DOUBLE\",\"identifier\":\"Area\",\"name\":\"面积\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"NTC短路\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"NTC开路\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"超温保护\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3002103534','QrCodeAccess','二维码门禁','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"remoteOpen\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"远程开门\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"addQrCode\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"qrCode\",\"name\":\"二维码\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"expiryTime\",\"name\":\"截止时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"userId\",\"name\":\"用户Id\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"effectiveTime\",\"name\":\"生效时间\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"新增二维码\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"delQrCode\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"qrCode\",\"name\":\"二维码\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"删除二维码\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"通行事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"passEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"userId\",\"name\":\"用户Id\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"qrCode\",\"name\":\"二维码\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"报警事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"alarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"防拆报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"防拆报警解除\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"alarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3025272154','Bed','床','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3030901096','DisplacementMonitor','位移监控器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3042011376','AcoustoOpticalarm','声光报警设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未报警状态\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"报警状态\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AlarmStatus\",\"name\":\"报警控制\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WirelessModuleStatus\",\"name\":\"无线转接模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3046251193','ToiletSeat','马桶','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Flush\",\"name\":\"冲水\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3078370485','BluetoothAccess','蓝牙门禁','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"remoteOpen\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"远程开门\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"syncPermissions\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"permissionUrl\",\"name\":\"权限url\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"同步门禁权限\"}],\"properties\":[],\"events\":[{\"custom\":false,\"eventName\":\"异常刷卡\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"abnormalBleCard\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"cardId\",\"name\":\"门禁卡ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无效卡\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventType\",\"name\":\"事件类型\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"通行事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"passEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"cardId\",\"name\":\"门禁卡ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"userId\",\"name\":\"用户Id\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"extInfo\",\"name\":\"附加信息\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"eventName\":\"报警事件\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"alarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"防拆报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"防拆报警解除\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"alarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3096121022','Relay','继电器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"断电\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"通电\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"Coil\",\"name\":\"继电器线圈\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"闭合\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"NO\",\"name\":\"继电器常开触点\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"闭合\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"NC\",\"name\":\"继电器常闭触点\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3127301389','water_logging','水浸传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"127\",\"min\":\"-127\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"lqi\",\"name\":\"信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"zsta\",\"name\":\"设备状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"batpt\",\"name\":\"电池剩余电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3129794116','SmartHome','全屋智能','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3139116273','Coffee machine','咖啡机','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"批量库存查询\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"单个库存查询\",\"identifier\":\"getInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"单个库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'31444267','SmartBoxingTarget','智能拳靶','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"测量爆发力模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"测量反应速度模式\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"20.0\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"boxing_speed\",\"name\":\"拳击速度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kg\",\"unitName\":\"千克(公斤)\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"boxing_strength\",\"name\":\"拳击力量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"response_speed\",\"name\":\"反应速度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"250\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"电源故障\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"遇阻故障\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"过热故障\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3152216872','DustMonitor','扬尘监测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3161882035','SmartGasFlowMeter','智能燃气流量计','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"IntegratedFlow\",\"name\":\"总累计量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkingConditionIntegratedFlow\",\"name\":\"工况累计量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"StandardConditionIntegratedFlow\",\"name\":\"标况累计量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³/h\",\"unitName\":\"立方米每小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkingConditionInstantaneousFlow\",\"name\":\"工况流量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³/h\",\"unitName\":\"立方米每小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"StandardConditionInstantaneousFlow\",\"name\":\"标况流量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000\",\"min\":\"-100\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Temperature\",\"name\":\"温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"MPa\",\"unitName\":\"兆帕\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Pressure\",\"name\":\"压力\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"表计通讯故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"通讯中断\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"通讯正常\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"M_STATUS\",\"name\":\"表计通讯状态\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3169970859','LinkEdge','边缘计算','{\"services\":[],\"properties\":[],\"events\":[{\"custom\":false,\"eventName\":\"报警事件\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"alarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"防拆报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"防拆报警解除\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"alarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3172326554','Faucet','龙头','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WaterOutletSwitch\",\"name\":\"出水开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"80\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"identifier\":\"WaterTemperature\",\"name\":\"水温\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"step\":\"50\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"INT\",\"identifier\":\"WaterRequire\",\"name\":\"水量值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3182676706','RegulatorPool','调节池调节池','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3182846640','Fridge','冰箱','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ToggleLightSwitch\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"翻转主灯开关\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AntibacteriaSwitch\",\"name\":\"抗菌开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"FreezerDoorStatus\",\"name\":\"冷冻门状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"FreezerSwitch\",\"name\":\"冷冻室开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"0\",\"min\":\"-18\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FreezerTargetTemperature\",\"name\":\"冷冻室目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"0\",\"min\":\"-18\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FreezerTemperature\",\"name\":\"冷冻室温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"FridgeDoorStatus\",\"name\":\"冷藏门状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"FridgeSwitch\",\"name\":\"冷藏室开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FridgeTargetTemperature\",\"name\":\"冷藏室目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FridgeTemperature\",\"name\":\"冷藏室温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IonsSwitch\",\"name\":\"负离子开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ScreenSwitch\",\"name\":\"屏显开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"VariableDoorStatus\",\"name\":\"变温门状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"VariableSwitch\",\"name\":\"变温室开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"0\",\"min\":\"-18\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"VariableTargetTemperature\",\"name\":\"变温室目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10\",\"min\":\"-18\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"VariableTemperature\",\"name\":\"变温室温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"智能\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"速冻\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"速冷\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"节能\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"假日\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3193739621','AirCollect','大气监测设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"120\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Temperature\",\"name\":\"温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"RelativeHumidity\",\"name\":\"相对湿度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"360\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"WindDirection\",\"name\":\"风向\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"风速\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1060\",\"min\":\"550\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"hPa\",\"unitName\":\"百帕\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Atmosphere\",\"name\":\"气压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"PM25\",\"name\":\"PM25浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"PM10\",\"name\":\"PM10浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"SO2\",\"name\":\"二氧化硫浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Hexad\",\"name\":\"六价物\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Arsenic\",\"name\":\"砷\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Mercury\",\"name\":\"汞\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Cadmium\",\"name\":\"镉\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"BaP\",\"name\":\"苯并芘\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Lead\",\"name\":\"铅\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"NO2\",\"name\":\"二氧化氮浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CO\",\"name\":\"一氧化碳浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"O3\",\"name\":\"臭氧浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"TSP\",\"name\":\"总悬浮颗粒物\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"NitrogenOxides\",\"name\":\"氮氧化物浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/d㎡·d\",\"unitName\":\"每天每平方分米微克\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Fluoride\",\"name\":\"氟化物浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"null\",\"unitName\":\"null\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"AQI\",\"name\":\"空气质量指数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\"},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"PrimaryItem\",\"name\":\"首要污染物\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[22].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3195245296','Register','寄存器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"开\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"关\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"手动\",\"value\":11}],\"dataType\":\"ENUM\",\"description\":\"绿立方\",\"identifier\":\"ManualStatus\",\"name\":\"手动状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"异常\",\"value\":12}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"DeviceAbnormalState\",\"name\":\"设备异常状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"开\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"关\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"绿立方项目\",\"identifier\":\"PowerSwitchAll\",\"name\":\"电源开关枚举型\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'320069576','PressureCooker','电压力锅','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"烹饪中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"软\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标准\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"硬\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MouthFeel\",\"name\":\"口感选择\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"230\",\"min\":\"70\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"230\",\"min\":\"90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"230\",\"min\":\"90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PressureOffTemperature\",\"name\":\"继电器断开温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"230\",\"min\":\"90\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PressureOnTemperature\",\"name\":\"继电器复位温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地食谱\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云食谱\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RecipeInformation\",\"name\":\"食谱信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3207073009','Washer','洗衣机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"预约\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"错误\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"关机\",\"value\":6}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterLevel\",\"name\":\"水位档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LeftTime\",\"name\":\"剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"SoakTime\",\"name\":\"浸泡时长\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WashTime\",\"name\":\"洗涤时长\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RinshTime\",\"name\":\"漂洗时长\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"SpinTime\",\"name\":\"脱水时长\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"10\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RinshTimes\",\"name\":\"漂洗次数\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1600\",\"min\":\"100\",\"precise\":0,\"step\":\"1\",\"unit\":\"rpm\",\"unitName\":\"每分钟转数\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetSpinSpeed\",\"name\":\"脱水转速\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetWaterTemperature\",\"name\":\"目标水温\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"DryTime\",\"name\":\"烘干时长\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DrySwitch\",\"name\":\"烘干开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetDetergent\",\"name\":\"洗涤剂自投放\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetSoftener\",\"name\":\"柔顺剂自投放\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetDisinfectant\",\"name\":\"消毒剂自投放\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DoorOpeningState\",\"name\":\"门锁打开状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"运行\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"暂停\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PauseSwitch\",\"name\":\"暂停开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"弱\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"强\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"DryOpt\",\"name\":\"烘干强度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"720\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ReservationTimer\",\"name\":\"预约定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1719127733,0,'3210812790','TransmissionDetector','传输检测仪','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"断开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"闭合\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DO1\",\"name\":\"继电器标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI1\",\"name\":\"网络设备1标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI2\",\"name\":\"网络设备2标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI3\",\"name\":\"网络设备3标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI4\",\"name\":\"网络设备4标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI5\",\"name\":\"网络设备5标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI6\",\"name\":\"网络设备6标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI7\",\"name\":\"网络设备7标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI8\",\"name\":\"外网标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI8\",\"name\":\"外电表示\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"故障\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DI10\",\"name\":\"网线标识\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":0,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"屏幕亮度\",\"identifier\":\"AI1\",\"name\":\"电压标识\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3220738279','Dehumidifier','除湿器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"500\",\"min\":\"300\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"百万分率\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CO2\",\"name\":\"二氧化碳浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"当前相对湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"3\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"HCHO\",\"name\":\"甲醛浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"停止\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"摇摆\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HorizontalAdjustment\",\"name\":\"出风口水平调节\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Ions\",\"name\":\"健康_离子团\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PM25\",\"name\":\"PM25值\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Runtime\",\"name\":\"运行时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetHumidity\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"3\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TVOC\",\"name\":\"TVOC_VOC浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"UV\",\"name\":\"紫外线杀菌\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"停止\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"摆动\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"VerticalAdjustment\",\"name\":\"出风口垂直调节\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"风速\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"手动模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"干衣模式\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3233515412','ParkingLotBarrier','车位锁','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ControlLockState\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"解锁\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"上锁\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OperationCode\",\"name\":\"操作码\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"车锁控制\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LockSwitch\",\"name\":\"车位锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"7.0\",\"min\":\"3.5\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Version\",\"name\":\"固件版本号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"低电压上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"LowVoltageNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"7.0\",\"min\":\"3.5\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VoltageValue\",\"name\":\"电压值\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3237183909','SmartCity','智能城市','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3237777969','AlarmSwitch','报警开关','{\"services\":[],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"紧急触发报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"EmergencyTriggerAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"解除报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"紧急报警\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3239044107','SideFan','侧风机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3251555445','BlueToothScale','蓝牙秤','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"200\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"Kg\",\"unitName\":\"公斤\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Weight\",\"name\":\"称重值\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"模块正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"模块低电量\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"模块状态异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Status\",\"name\":\"模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3258705358','Projector','投影仪','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3269226167','Siren','声光报警器','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ActivateAlarm\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"停止报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"系统撤防提示\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"系统布防提示\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"防盗报警\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"火警\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"紧急情况报警\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"110报警\",\"value\":6}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlarmMode\",\"name\":\"报警模式\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"触发报警\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3280380392','linkbusiness','商业共享','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3280610923','OutdoorStation','门口机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Unlock\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"室内机开锁\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"刷卡开锁\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码开锁\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"蓝牙开锁\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"人脸开锁\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"指纹开锁\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"手机开锁\",\"value\":6}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UnlockCode\",\"name\":\"开锁方式\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"开锁\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Call\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":12},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RoomNumber\",\"name\":\"房号\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"网络故障\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"占线\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CallResult\",\"name\":\"呼叫结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"呼叫\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Monitor\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":12},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RoomNumber\",\"name\":\"房号\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"网络故障\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"占线\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"MonitorResult\",\"name\":\"监视结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"监视\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Reboot\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"重启\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SystemVolume\",\"name\":\"系统音量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ScreenSaverTime\",\"name\":\"屏保时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"IP地址\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":16},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"IP\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"子网掩码\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":16},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Netmask\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"默认网关\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":16},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Gateway\",\"name\":\"网络配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"MAC地址\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":17},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"MAC\",\"name\":\"网络配置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"NetConfiguration\",\"name\":\"网络配置\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"机身码\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":30},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"IEMI\",\"name\":\"本机配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"软件版本\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":10},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SolfwareVersion\",\"name\":\"本机配置\"},{\"childDataType\":\"TEXT\",\"childName\":\"系统版本\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":10},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SystemVersion\",\"name\":\"本机配置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"LocalConfiguration\",\"name\":\"本机配置\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"开锁动作上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"UnlockNotification\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"室内机开锁\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"刷卡开锁\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码开锁\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"蓝牙开锁\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"人脸开锁\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"指纹开锁\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"手机开锁\",\"value\":6}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UnlockState\",\"name\":\"开锁方式\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"门磁状态上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DoorSensorNotification\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"打开\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DoorState\",\"name\":\"门磁状态\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3283314232','CapsuleCoffeeMachine','胶囊咖啡机','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3289670216','SmartElevator','智能电梯','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ElevatorStatus\",\"name\":\"电梯状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3296773329','FAU','新风机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低风\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高风\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"风速档位\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSavingMode\",\"name\":\"节能模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'330749763','AnaerobicPoo','厌氧池','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"FLOAT\",\"description\":\"溶氧量\",\"identifier\":\"DO\",\"name\":\"溶氧量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"温度\",\"identifier\":\"temperature\",\"name\":\"温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%RH\",\"unitName\":\"相对湿度\"},\"dataType\":\"FLOAT\",\"description\":\"湿度\",\"identifier\":\"Humidity\",\"name\":\"湿度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"14\",\"min\":\"1\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"description\":\"氢离子浓度指数(hydrogen ion concentration)是衡量水体酸碱度的一个值,亦称氢离子浓度指数、酸碱值,是溶液中氢离子活度的一种标度,也就是通常意义上溶液酸碱程度的衡量标准\",\"identifier\":\"pH\",\"name\":\"PH值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"200\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"FLOAT\",\"description\":\"总氰化物\",\"identifier\":\"total_cyanide\",\"name\":\"总氰化物\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"FLOAT\",\"description\":\"硫氰酸根\",\"identifier\":\"thiocyanate_radical\",\"name\":\"硫氰酸根\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"FLOAT\",\"description\":\"氨氮\",\"identifier\":\"ammonia_nitrogen\",\"name\":\"氨氮\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"200\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"FLOAT\",\"description\":\"硫化物\",\"identifier\":\"sulfide\",\"name\":\"硫化物\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"FLOAT\",\"description\":\"挥发酚\",\"identifier\":\"volatile_phenol\",\"name\":\"挥发酚\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"FLOAT\",\"description\":\"碱度\",\"identifier\":\"alkalinity\",\"name\":\"碱度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"5000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"INT\",\"description\":\"化学需氧量COD(Chemical Oxygen Demand)是以化学方法测量水样中需要被氧化的还原性物质的量\",\"identifier\":\"COD\",\"name\":\"化学需氧量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"},\"dataType\":\"DOUBLE\",\"description\":\"易释放氰化物\",\"identifier\":\"easy_release_cyanide\",\"name\":\"易释放氰化物\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'33179105','MultifunctionElectricityMeter','多功能电表','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ReportLog\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"AbsoluteDirectoryAndFileName\",\"identifier\":\"text\",\"name\":\"目录文件位置\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"上报日志\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Ia\",\"name\":\"A相电流\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Ib\",\"name\":\"B相电流\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Ic\",\"name\":\"C相电流\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Ua\",\"name\":\"A相电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Ub\",\"name\":\"B相电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Uc\",\"name\":\"C相电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Uab\",\"name\":\"AB线电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Ubc\",\"name\":\"BC线电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Uca\",\"name\":\"CA线电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"P\",\"name\":\"总有功功率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Pa\",\"name\":\"A相有功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Pb\",\"name\":\"B相有功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Pc\",\"name\":\"C相有功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Pdmd\",\"name\":\"有功需量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Q\",\"name\":\"总无功功率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Qa\",\"name\":\"A相无功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Qb\",\"name\":\"B相无功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Qc\",\"name\":\"C相无功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"S\",\"name\":\"总视在功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Sa\",\"name\":\"A相视在功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Sb\",\"name\":\"B相视在功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"-10000000000\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Sc\",\"name\":\"C相视在功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1.00\",\"min\":\"-1.00\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"COSa\",\"name\":\"A相功率因数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1.00\",\"min\":\"-1.00\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"COSb\",\"name\":\"B相功率因数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1.00\",\"min\":\"-1.00\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"COSc\",\"name\":\"C相功率因数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1.00\",\"min\":\"-1.00\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"COSQ\",\"name\":\"总功率因数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"Hz\",\"unitName\":\"赫兹\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"F\",\"name\":\"频率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999999999999\",\"min\":\"-999999999999999\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"EP\",\"name\":\"总有功电能\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999999999999\",\"min\":\"-999999999999999\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"EP_1\",\"name\":\"总有功尖电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"EP_2\",\"name\":\"总有功峰电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999999999999\",\"min\":\"-999999999999999\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"EP_3\",\"name\":\"总有功平电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999999999999\",\"min\":\"-999999999999999\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"EP_4\",\"name\":\"总有功谷电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999999999999\",\"min\":\"-999999999999999\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"EQ\",\"name\":\"总无功电能\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000\",\"min\":\"-100\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"T_OUTa\",\"name\":\"回路出线侧A相温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000\",\"min\":\"-100\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"T_OUTb\",\"name\":\"回路出线侧B相温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000\",\"min\":\"-100\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"T_OUTc\",\"name\":\"回路出线侧C相温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"IaTHD\",\"name\":\"A相电流总谐波\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"IbTHD\",\"name\":\"B相电流总谐波\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"IcTHD\",\"name\":\"C相电流总谐波\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"UaTHD\",\"name\":\"A相电压总谐波\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"UbTHD\",\"name\":\"B相电压总谐波\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"UcTHD\",\"name\":\"C相电压总谐波\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"异常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"M_STATUS\",\"name\":\"表计通讯状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"断开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"闭合\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"C_SWITCH\",\"name\":\"主回路开关合闸状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"mA\",\"unitName\":\"毫安\"},\"dataType\":\"DOUBLE\",\"identifier\":\"RC\",\"name\":\"剩余电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"表计通讯故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"通讯中断\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"通讯正常\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"M_STATUS\",\"name\":\"表计通讯状态\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3326107090','Platinum_Temperature','铂电阻温度传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"200\",\"min\":\"-200\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3336818631','TiltSensor','倾角传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3351312406','EnvironmentMonitoring','环境监测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"PM2.5浓度\",\"identifier\":\"PM2D5\",\"name\":\"PM2D5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"pm1.0浓度\",\"identifier\":\"PM1D0\",\"name\":\"PM1D0\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"PM10浓度\",\"identifier\":\"PM10\",\"name\":\"PM10\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"lx\",\"unitName\":\"流明\"},\"dataType\":\"DOUBLE\",\"description\":\"光照强度\",\"identifier\":\"LightLux\",\"name\":\"光照度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"5000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"ppm\"},\"dataType\":\"DOUBLE\",\"description\":\"二氧化碳浓度\",\"identifier\":\"CO2Value\",\"name\":\"二氧化碳\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"90\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"温度\",\"identifier\":\"CurrentTemperature\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"空气相对湿度\",\"identifier\":\"RelativeHumidity\",\"name\":\"相对湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"106\",\"min\":\"55\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"kPa\",\"unitName\":\"千帕\"},\"dataType\":\"FLOAT\",\"description\":\"大气压强\",\"identifier\":\"Atmosphere\",\"name\":\"大气压\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"55.0\",\"min\":\"-40.0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"土壤温度\",\"identifier\":\"SoilTemperature\",\"name\":\"土壤温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"土壤湿度\",\"identifier\":\"SoilMoisture\",\"name\":\"土壤湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"图片地址\",\"identifier\":\"PicPath\",\"name\":\"图片地址\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"61.2\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"},\"dataType\":\"FLOAT\",\"description\":\"风速\",\"identifier\":\"WindSpeed\",\"name\":\"风速\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"风向\",\"identifier\":\"WindDirection\",\"name\":\"风向\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mm\",\"unitName\":\"毫米\"},\"dataType\":\"DOUBLE\",\"description\":\"降雨量\",\"identifier\":\"Rainfall\",\"name\":\"降雨量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"7\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"土壤PH值\",\"identifier\":\"SoilPH\",\"name\":\"土壤PH\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"15\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"紫外线强度\",\"identifier\":\"UV\",\"name\":\"紫外强度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3382381958','Light','灯','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ToggleLightSwitch\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"翻转主灯开关\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetLightSwitchTimer\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Timer\",\"name\":\"计时器\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LightSwitch\",\"name\":\"主灯开关\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"设置主灯开关倒计时\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopCountdown\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止倒计时\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"音乐律动的标准服务\",\"identifier\":\"Rhythm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Hue\",\"name\":\"Hue\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Saturation\",\"name\":\"Saturation\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Value\",\"name\":\"Value\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"250\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"ms\",\"unitName\":\"毫秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LightDuration\",\"name\":\"LightDuration\",\"paraOrder\":3}],\"outputParams\":[],\"required\":false,\"serviceName\":\"Rhythm\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Rhythm2\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"Rhythm2\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CommonService\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"setProps\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"method\",\"name\":\"方法\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"params\",\"name\":\"参数\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"flag\",\"name\":\"特性\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":30},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"seq\",\"name\":\"序列号\",\"paraOrder\":3}],\"outputParams\":[],\"required\":false,\"serviceName\":\"标准服务\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"红色\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Red\",\"name\":\"RGB调色\"},{\"childDataType\":\"INT\",\"childName\":\"绿色\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Green\",\"name\":\"RGB调色\"},{\"childDataType\":\"INT\",\"childName\":\"蓝色\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Blue\",\"name\":\"RGB调色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"RGBColor\",\"name\":\"RGB调色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"主灯开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"NightLightSwitch\",\"name\":\"夜灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"手动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"阅读\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"影院\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"夜灯\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"生活\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"柔和\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"7000\",\"min\":\"2000\",\"precise\":0,\"step\":\"1\",\"unit\":\"K\",\"unitName\":\"开尔文\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ColorTemperature\",\"name\":\"冷暖色温\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Brightness\",\"name\":\"明暗度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"色调\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"360\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Hue\",\"name\":\"HSL调色\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"饱和度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Saturation\",\"name\":\"HSL调色\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"亮度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[6].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Lightness\",\"name\":\"HSL调色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"HSLColor\",\"name\":\"HSL调色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"色调\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"360\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Hue\",\"name\":\"HSV调色\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"饱和度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Saturation\",\"name\":\"HSV调色\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"明度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Value\",\"name\":\"HSV调色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"HSVColor\",\"name\":\"HSV调色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[8].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"description\":\"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致。\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"色调\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Hue\",\"name\":\"色调\"},{\"childDataType\":\"INT\",\"childName\":\"饱和度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Saturation\",\"name\":\"饱和度\"},{\"childDataType\":\"INT\",\"childName\":\"明度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Value\",\"name\":\"明度\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"运行\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"运行\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"启用\"}],\"dataType\":\"ARRAY\",\"size\":6},\"dataType\":\"ARRAY\",\"identifier\":\"ColorArr\",\"name\":\"颜色数组\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ColorSpeed\",\"name\":\"变色速度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"C\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"CW\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"RGB\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"RGBC\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"RGBCW\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LightType\",\"name\":\"灯类型\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"mono\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"color\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LightMode\",\"name\":\"灯模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CountdownRemainingTime\",\"name\":\"倒计时剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"色调\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Hue\",\"name\":\"场景颜色\"},{\"childDataType\":\"INT\",\"childName\":\"饱和度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Saturation\",\"name\":\"场景颜色\"},{\"childDataType\":\"INT\",\"childName\":\"明度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Value\",\"name\":\"场景颜色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"ScenesColor\",\"name\":\"场景颜色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"停止\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Heartbeat\",\"name\":\"心跳\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"白光\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"彩光\",\"value\":1}],\"childName\":\"灯模式\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"白光\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"彩光\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"LightMode\",\"name\":\"灯场景\"},{\"childDataType\":\"INT\",\"childName\":\"变色速度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ColorSpeed\",\"name\":\"灯场景\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"常亮\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"闪烁\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"渐变\",\"value\":2}],\"childName\":\"场景模式\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"常亮\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"闪烁\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"渐变\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"SceneMode\",\"name\":\"灯场景\"},{\"childDataType\":\"TEXT\",\"childName\":\"灯颜色\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"ColorArr\",\"name\":\"灯场景\"},{\"childDataType\":\"TEXT\",\"childName\":\"明暗度\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Brightness\",\"name\":\"灯场景\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"已停止\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"运行中\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"已停止\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"运行中\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"灯场景\"},{\"childDataType\":\"TEXT\",\"childName\":\"场景标识\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":100},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SceneId\",\"name\":\"灯场景\"},{\"childDataType\":\"TEXT\",\"childName\":\"场景参数\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecsList[7].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"SceneItems\",\"name\":\"灯场景\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"LightScene\",\"name\":\"灯场景\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"序列号\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":30},\"dataSpecs\":{\"$ref\":\"$.properties[17].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"seq\",\"name\":\"标准服务响应\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"CommonServiceResponse\",\"name\":\"标准服务响应\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3383447147','Shared washing machine','共享洗衣机','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"批量库存查询\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"单个库存查询\",\"identifier\":\"getInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"c\",\"name\":\"库存数\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"单个库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"下单的数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"数量\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误码\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货的时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误码\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'3385615445','VoiceTemperatureControlPanel','语音温控面板','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"50\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"30\",\"min\":\"20\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"水超温\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"传感器故障\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"加热器缺水\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3386951392','SmartFireHydrants','智能消防栓','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3396691141','AgriculturalMonitor','农业监控设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CollectionEquipmentStatus\",\"name\":\"综合采集器状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"55.0\",\"min\":\"-40.0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"SoilTemperature\",\"name\":\"土壤温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"SoilMoisture\",\"name\":\"土壤湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"500\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CO2Content\",\"name\":\"二氧化碳含量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"O2Content\",\"name\":\"氧气含量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"Lux\",\"unitName\":\"卢克斯\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"LightLux\",\"name\":\"光照强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"55.0\",\"min\":\"-40.0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"EnvironmentTemperature\",\"name\":\"环境温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"EnvironmentHumidity\",\"name\":\"环境湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[8].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[8].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[8].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3407640062','ParkingBarrier','停车道闸','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"BarrierState\",\"name\":\"道闸状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"锁定车辆识别\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"LockedVehicleRecognition\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumberImageUrl\",\"name\":\"车牌号照片Url\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"进场\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"出场\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Direction\",\"name\":\"方向\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"通行事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"CarPassEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"普通车辆\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"临时车辆\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"白名单\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TypePermission\",\"name\":\"权限类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumberImageUrl\",\"name\":\"车牌号照片Url\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OrderNumber\",\"name\":\"订单编号\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常抬杆\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"异常抬杆\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OpenType\",\"name\":\"抬杆类型\",\"paraOrder\":4},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"进场\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"出场\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Direction\",\"name\":\"方向\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RecordId\",\"name\":\"本地停车系统记录ID\",\"paraOrder\":6}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"黑名单车辆识别\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"BlackListRecognition\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumberImageUrl\",\"name\":\"车牌号照片Url\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"进场\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"出场\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Direction\",\"name\":\"方向\",\"paraOrder\":2}],\"required\":true}]}'),(1698826367,0,'341934150','ParkingLock','地锁','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"3.7\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryVoltage\",\"name\":\"电池电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"85\",\"min\":\"-55\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ParkingState\",\"name\":\"停车状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Powerswitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3420123133','Plant','种植','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'343111842','AutomaticCooker','烹饪机器人','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"烹饪\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"收汁\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"补炊\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"36000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CookingTime\",\"name\":\"烹饪时间\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"爆炒\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"红烧\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"焖炖\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"煲汤\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"蛋类\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CookingMode\",\"name\":\"烹饪模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":14},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"MenuName\",\"name\":\"菜谱名称\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":80},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FoodID\",\"name\":\"食材ID\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":80},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SeasoningID\",\"name\":\"调料ID\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3435092707','HIKVISIONEdgeServer','海康边缘服务器','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"UnSubscribeEvent\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"INT\",\"customFlag\":true,\"dataSpecs\":{\"dataType\":\"INT\",\"step\":\"1\"},\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventTypes\",\"name\":\"事件类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"取消事件订阅\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SubscribeEvent\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventTypes\",\"name\":\"事件类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventDest\",\"name\":\"指定事件接收地址\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SubType\",\"name\":\"订阅类型\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"INT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventLevel\",\"name\":\"事件等级\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"订阅事件\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetEventSubscription\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"查询事件订阅信息\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"AI事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AIEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventContent\",\"name\":\"事件信息\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3447761732','ElectricityMeter','电表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"HoodPower\",\"name\":\"烟机电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"HoodLight\",\"name\":\"烟机照明开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"抵挡\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"HoodSpeed\",\"name\":\"烟机风量档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"待机中\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"HoodWorState\",\"name\":\"烟机工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"SteamerPower\",\"name\":\"蒸箱开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"模式1\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"模式2\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"模式3\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"模式4\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"模式5\",\"value\":5}],\"dataType\":\"ENUM\",\"identifier\":\"SteamerMode\",\"name\":\"蒸箱模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"identifier\":\"SteameTemperatureSet\",\"name\":\"蒸箱制作温度设置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"待机中\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"SteamerState\",\"name\":\"蒸箱工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"SysVoice\",\"name\":\"语音功能开启关闭设置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3450772659','Threadmill','跑步机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SwitchChannel\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"频道切换\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SwitchAudio\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"单曲切换\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RunningSteps\",\"name\":\"跑步步数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"cal\",\"unitName\":\"卡路里\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BurnCalories\",\"name\":\"消耗热量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"18\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentGradient\",\"name\":\"当前坡度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"14\",\"min\":\"0.8\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"km/h\",\"unitName\":\"千米每小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentSpeed\",\"name\":\"当前速度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RunningDistance\",\"name\":\"跑步距离\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RunningTotalTime\",\"name\":\"跑步总时间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200\",\"min\":\"40\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"HeartRate\",\"name\":\"心率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"播放中\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"停止\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PlayControl\",\"name\":\"单曲播放控制\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"SoundVolume\",\"name\":\"音量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"300\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ChannelID\",\"name\":\"频道ID\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"AudioID\",\"name\":\"单曲ID\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PlayProgress\",\"name\":\"播放进度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PlayDuration\",\"name\":\"歌曲总时长\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3456369516','GeneralGateway','网关','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3459070370','sharing','共享租赁服务','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3470655880','PressureBlower','正压送风机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3472746860','N4DeviceType','N4设备','{\"services\":[],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3526011318','ElectricValve','电动阀','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3530283900','CarbonDioxideGeneratingDevice','二氧化碳发生装置','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3538089256','Car_Detector_Cam','车牌抓拍','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"capture\",\"name\":\"抓拍动作\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"识别的车牌\",\"identifier\":\"Car_number\",\"name\":\"识别车牌\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Pic_name\",\"name\":\"识别照片\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3543984868','QuickAccessDoor','速通门','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Lock_status\",\"name\":\"门锁状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Lock_control\",\"name\":\"门锁控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3562652762','PigDataReader','猪参数采集器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"猪的ID\",\"identifier\":\"PigID\",\"name\":\"猪的ID\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AnimalTemperature\",\"name\":\"当前体温\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3569019867','FlowRate','流速液位监测设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3569975112','Electrical&Lighting','电工照明','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3572996405','FootBath','足浴盆','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"75\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetFootbathTime\",\"name\":\"目标足浴时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"75\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LeftFootbathTime\",\"name\":\"剩余足浴时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatSwitch\",\"name\":\"加热开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"MassageSwitch\",\"name\":\"按摩开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"OzoneSwitch\",\"name\":\"臭氧开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SurfSwitch\",\"name\":\"冲浪开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"助眠\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"抗疲惫\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保健\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"温度报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TemperatureAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"高温报警\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3573761418','ShowerRoom','淋浴房','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3576484600','TextileIndustry','纺织业','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3577060988','Building','智慧建筑','{\"services\":[],\"properties\":[],\"events\":[]}'); +INSERT INTO `thing_model_template` VALUES (1698826367,0,'3578919249','BreadMachine','面包机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"浅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标准\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"深\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Color\",\"name\":\"烤色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2000\",\"min\":\"500\",\"precise\":0,\"step\":\"1\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Weight\",\"name\":\"重量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WarmDuration\",\"name\":\"保温时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"15\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"MixedMode\",\"name\":\"搅拌模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"230\",\"min\":\"70\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"230\",\"min\":\"90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地食谱\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云食谱\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RecipeInformation\",\"name\":\"食谱信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3586664341','NAS','网络存储器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"DiskTotalCapacity\",\"name\":\"磁盘总容量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"DiskUsedCapacity\",\"name\":\"磁盘已用容量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3598653175','Dimming_panel','家居调光面板','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Brightness\",\"name\":\"明暗度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"7000\",\"min\":\"2000\",\"precise\":0,\"step\":\"1\",\"unit\":\"K\",\"unitName\":\"开尔文\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ColorTemperature\",\"name\":\"冷暖色温\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"色调\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Hue\",\"name\":\"场景颜色\"},{\"childDataType\":\"INT\",\"childName\":\"饱和度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Saturation\",\"name\":\"场景颜色\"},{\"childDataType\":\"INT\",\"childName\":\"明度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Value\",\"name\":\"场景颜色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"ScenesColor\",\"name\":\"场景颜色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"色调\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"360\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Hue\",\"name\":\"HSV调色\"},{\"childDataType\":\"INT\",\"childName\":\"饱和度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Saturation\",\"name\":\"HSV调色\"},{\"childDataType\":\"INT\",\"childName\":\"明度\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Value\",\"name\":\"HSV调色\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"HSVColor\",\"name\":\"HSV调色\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'360883903','OutsideShadeCurtain','外遮荫帘幕','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3610248814','Flowmeter','流量计','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"流量值\",\"identifier\":\"FLO_Value\",\"name\":\"流量值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3611190977','InternetProtocolCamera','网络摄像机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3612136881','Smart_Neck_Massage','智能颈部按摩仪','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetStates\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"获取设备状态\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"increase_speed\",\"name\":\"加速\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"decrease_speed\",\"name\":\"减速\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"BinarySwitch\",\"name\":\"二进制开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"250\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"EnumerationLevel\",\"name\":\"模式档位\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"设备故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error_alarm\",\"outputData\":[],\"required\":false}]}'),(1698826367,0,'3620362898','RobotCleaner','扫地机器人','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"定点\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"边缘\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"充电\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"单间\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"前进\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"后退\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"左转\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"右转\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CleanDirection\",\"name\":\"打扫方向\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未充电\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"充电中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ChargingState\",\"name\":\"充电状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"200\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"㎡\",\"unitName\":\"平方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CleanArea\",\"name\":\"本地清扫面积\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CleanRunTime\",\"name\":\"本地清扫时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryState\",\"name\":\"电池状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"定点\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"充电\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"静音\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"标准\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"强力\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"地毯\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"杀菌\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"延边\",\"value\":9}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PauseSwitch\",\"name\":\"暂停开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3633636439','Environment','环境电器','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3648844802','WaterMeter','水表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"WaterConsumption\",\"name\":\"用水量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"低电量\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterMeterState\",\"name\":\"水表模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3660734248','SkyWindow','天窗','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"二进制开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3674997411','SoyMilkMaker','豆浆机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"温饮\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"热饮\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"DrinkTemperatureType\",\"name\":\"饮用温度类型\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Runtime\",\"name\":\"运行时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PresetFinishTime\",\"name\":\"预设完成时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3703245348','MajorAppliance','大家电','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3710903829','SmartLife','智能生活','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3720389950','ActivityDetectionEquipment','活动检测设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无人\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有人\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"location2\",\"name\":\"位置2状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无人\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有人\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"location4\",\"name\":\"位置4状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无人\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有人\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"location3\",\"name\":\"位置3状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无人\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有人\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"location1\",\"name\":\"位置1状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Status\",\"name\":\"模块状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3724557408','Lighting','路灯照明','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"TimeReset\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TimeReset\",\"name\":\"TimeReset\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"设备校时服务\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetTimerTask\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SetTimer\",\"name\":\"SetTimer\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"时间任务下发\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightStatus\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"调光等级采用百分比表示\",\"identifier\":\"LightAdjustLevel\",\"name\":\"调光等级\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"4\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"FLOAT\",\"description\":\"显示设备电压;电参数采用4个字节浮点型数据\",\"identifier\":\"LightVolt\",\"name\":\"工作电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"9\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"FLOAT\",\"description\":\"电参数采用4个字节浮点型数据\",\"identifier\":\"LightCurrent\",\"name\":\"工作电流\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"FLOAT\",\"description\":\"电参数采用4个字节浮点型数据\",\"identifier\":\"ActivePower\",\"name\":\"有功功率值\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1\",\"min\":\"0.01\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"pF\",\"unitName\":\"皮法\"},\"dataType\":\"FLOAT\",\"description\":\"电参数采用4个字节浮点型数据\",\"identifier\":\"PowerRatio\",\"name\":\"功率因数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"FLOAT\",\"description\":\"耗电量;电参数采用4个字节浮点型数据\",\"identifier\":\"PowerConsumption\",\"name\":\"用电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"400\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"FLOAT\",\"description\":\"电参数采用4个字节浮点型数据\",\"identifier\":\"DrainVoltage\",\"name\":\"漏电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"90\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"路灯的倾斜角度;采用1个字节16进制数\",\"identifier\":\"TiltValue\",\"name\":\"倾斜角度值\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"INT\",\"description\":\"故障功率门限\",\"identifier\":\"ErrorPowerThreshold\",\"name\":\"故障功率门限\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"9\",\"min\":\"0.1\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"ErrorCurrentThreshold\",\"name\":\"故障电流门限\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"90\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TiltThreshold\",\"name\":\"倾斜阈值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"400\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"UnderVoltThreshold\",\"name\":\"欠压阈值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"OverCurrentThreshold\",\"name\":\"过流阈值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"400\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"OverVoltThreshold\",\"name\":\"过压阈值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1:打开,0:关闭\",\"identifier\":\"LightErrorEnable\",\"name\":\"灯具故障使能\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1:打开,0:关闭\",\"identifier\":\"OverCurrentEnable\",\"name\":\"过流告警使能\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1:打开,0:关闭\",\"identifier\":\"OverVoltEnable\",\"name\":\"过压告警使能\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1:打开,0:关闭\",\"identifier\":\"UnderVoltEnable\",\"name\":\"欠压告警使能\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1:打开,0:关闭\",\"identifier\":\"LeakageEnable\",\"name\":\"漏电告警使能\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1:打开,0:关闭\",\"identifier\":\"OverTiltEnable\",\"name\":\"倾斜告警使能\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1-告警;0-正常\",\"identifier\":\"LampError\",\"name\":\"灯具故障告警\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1-告警;0-正常\",\"identifier\":\"OverCurrentError\",\"name\":\"过流告警\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1-告警;0-正常\",\"identifier\":\"OverVoltError\",\"name\":\"过压告警\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1-告警;0-正常\",\"identifier\":\"UnderVoltError\",\"name\":\"欠压告警\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1-告警;0-正常\",\"identifier\":\"OverTiltError\",\"name\":\"倾斜告警\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"告警\",\"value\":1},{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"BOOL\",\"description\":\"1-告警;0-正常\",\"identifier\":\"LeakageError\",\"name\":\"漏电告警\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"高度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[27].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"LUX\",\"unitName\":\"照度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LightLux\",\"name\":\"光照值\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3729199569','SmartDoor','智能门锁','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AddKey\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"管理员\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"普通用户\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"劫持用户\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserLimit\",\"name\":\"用户权限\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"添加钥匙\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteKey\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"KeyID\",\"name\":\"钥匙ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"删除钥匙\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetKeyPermission\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"KeyID\",\"name\":\"钥匙ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"管理员\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"普通用户\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"劫持用户\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserLimit\",\"name\":\"用户权限\",\"paraOrder\":2}],\"outputParams\":[],\"required\":false,\"serviceName\":\"配置钥匙权限\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetKeyList\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"全部\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyID\",\"name\":\"钥匙ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"普通用户\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"管理员\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"劫持用户\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserLimit\",\"name\":\"用户权限\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"IsValid\",\"name\":\"是否有效\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyNickName\",\"name\":\"钥匙昵称\",\"paraOrder\":4}],\"required\":true,\"serviceName\":\"获取钥匙列表\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"静音\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低音\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中音\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高音\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Volume\",\"name\":\"门锁音量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"中文\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"英文\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Language\",\"name\":\"门锁语言\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LockState\",\"name\":\"门锁状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":50},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SN\",\"name\":\"门锁SN\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"钥匙ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":10},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"KeyID\",\"name\":\"门锁钥匙\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"childName\":\"开锁方式\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"STRUCT\",\"identifier\":\"LockType\",\"name\":\"门锁钥匙\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"普通用户\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"管理员\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"劫持用户\",\"value\":3}],\"childName\":\"用户权限\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"普通用户\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"管理员\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"劫持用户\",\"value\":3}],\"dataType\":\"STRUCT\",\"identifier\":\"UserLimit\",\"name\":\"门锁钥匙\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"是否有效\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"门锁钥匙\"},{\"childDataType\":\"TEXT\",\"childName\":\"钥匙昵称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[5].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"KeyNickName\",\"name\":\"门锁钥匙\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"description\":\"门锁钥匙。\",\"identifier\":\"LockKeys\",\"name\":\"门锁钥匙\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"添加钥匙通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"KeyAddedNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyID\",\"name\":\"钥匙ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"管理员\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"普通用户\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"劫持用户\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserLimit\",\"name\":\"用户权限\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"删除钥匙通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"KeyDeletedNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyID\",\"name\":\"钥匙ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"钥匙信息上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"KeyInformationNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyID\",\"name\":\"钥匙ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"管理员\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"普通用户\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"劫持用户\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserLimit\",\"name\":\"用户权限\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"开门通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DoorOpenNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyID\",\"name\":\"钥匙ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"劫持报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"HijackingAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":10},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyID\",\"name\":\"钥匙ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"指纹\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"密码\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"卡\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"机械钥匙\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockType\",\"name\":\"开锁方式\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"防撬报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TamperAlarm\",\"outputData\":[],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"低电量报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"LowElectricityAlarm\",\"outputData\":[],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"门未锁好报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DoorUnlockedAlarm\",\"outputData\":[],\"required\":true}]}'),(1698826367,0,'3740993904','SmartPatrol','智能巡护','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3750696397','SmartRearviewMirror','智能后视镜','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"identifier\":\"SimCardType\",\"name\":\"sim卡类型\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"invalid\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"preview\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"record\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"off\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"FcRecordOn\",\"name\":\"前置摄像头录制状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"480P\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"720P\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"1080P\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"2160P\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"FcResolution\",\"name\":\"前置摄像头分辨率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"NONE\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"MIPI\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"USB\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"WEBCAM\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"FcInterfaceType\",\"name\":\"内置摄像头接口类型\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"False\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"Ture\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"ADASSwitch\",\"name\":\"ADAS开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"Off\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"Low\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"Mid\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"High\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"FcwSensibility\",\"name\":\"前车预警灵敏度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"False\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"Ture\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WatchDogSwitch\",\"name\":\"电子狗开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"Fasle\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"Ture\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WifiSwitch\",\"name\":\"wifi开关\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"127\",\"min\":\"-128\",\"step\":\"1\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"},\"dataType\":\"INT\",\"identifier\":\"CellSignalStrength\",\"name\":\"信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"identifier\":\"Brand\",\"name\":\"品牌\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"倒车信号\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"CarReverseSignal\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"OFF\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"ON\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReverseStatus\",\"name\":\"倒车状态\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReverseTime\",\"name\":\"倒车切换时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"359\",\"min\":\"0\",\"precise\":16,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"gnssHead\",\"name\":\"方向\",\"paraOrder\":2}],\"required\":false},{\"custom\":false,\"eventName\":\"水平碰撞\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"CrashEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"crashAccP\",\"name\":\"加速度峰值\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CrashAccE\",\"name\":\"加速度原始值\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"eventName\":\"翻车\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"RolloverEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RolloverAccP\",\"name\":\"加速度峰值\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2000\",\"min\":\"-2000\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m/s²\",\"unitName\":\"米每二次方秒\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RolloverAccE\",\"name\":\"加速度原始值\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'3761332891','ChemicalFiberManufacturing','化学纤维制造业','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3764267122','WallSwitch','入墙开关','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_1\",\"name\":\"电源开关_1\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_2\",\"name\":\"电源开关_2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_3\",\"name\":\"电源开关_3\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_4\",\"name\":\"电源开关_4\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭背光灯\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"状态指示灯\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"位置指示灯\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"BackLightMode\",\"name\":\"背光灯模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_5\",\"name\":\"电源开关_5\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_6\",\"name\":\"电源开关_6\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_7\",\"name\":\"电源开关_7\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_8\",\"name\":\"电源开关_8\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_9\",\"name\":\"电源开关_9\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"操作对象\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[12].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Target\",\"name\":\"倒计时列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"倒计时命令\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[12].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Contents\",\"name\":\"倒计时列表\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"CountDownList\",\"name\":\"倒计时列表\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[13].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3765714689','AlgorithmManagerPlatform','视频内容分析','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AddAlgorithmModel\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoURL\",\"name\":\"算法模型下载URL\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoID\",\"name\":\"算法模型ID\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"增加算法模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartAlgorithmModel\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"VideoSrcURL\",\"name\":\"视频源URL\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"算法任务号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoID\",\"name\":\"算法模型ID\",\"paraOrder\":2}],\"outputParams\":[],\"required\":true,\"serviceName\":\"启动算法模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopAlgorithmTask\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"算法任务号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止算法任务\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteAlgorithmModel\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoID\",\"name\":\"算法模型ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"删除结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"删除算法模型\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteAllAlgorithmModels\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"清除结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"清除所有算法模型\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAlgorithmModelList\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoID\",\"name\":\"算法模型ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Rate\",\"name\":\"算法部署进度\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"查询算法模型列表\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAlgorithmTasklList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ALgoID\",\"name\":\"算法模型ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"算法执行任务号\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询算法任务列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryDeployStatus\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"部署中\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"部署完毕\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeployDone\",\"name\":\"是否部署完毕\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeployRate\",\"name\":\"部署进度\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":3}],\"required\":true,\"serviceName\":\"查询部署状态\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteSingleAlgo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"删除结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"删除指定算法模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ClearAllAlgorithms\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"清除结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"清除所有算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeployAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoURL\",\"name\":\"算法模型文件URL\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法模型文件名\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":2}],\"outputParams\":[],\"required\":true,\"serviceName\":\"部署算法模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"VideoSrcURL\",\"name\":\"视频源URL\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"算法任务号\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"启动算法\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"设备连接LP后,上报平台属性(X86、Linux、Android等),服务端根据此属性选择对应平台的算法进行部署。\",\"identifier\":\"Platform\",\"name\":\"上报平台属性\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"算法任务执行结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AlgorithmTaskResult\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoID\",\"name\":\"算法模型ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskID\",\"name\":\"算法任务号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"执行结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"停止算法\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"启动算法\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskType\",\"name\":\"任务类型\",\"paraOrder\":3}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"算法模型部署结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AlgorithmModelDeployResult\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoID\",\"name\":\"算法模型ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"增加结果\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"删除算法模型\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"增加算法模型\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeployType\",\"name\":\"模型部署类型\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"单条算法停止结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"StopAlgorithm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"算法停止结果\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"智能报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"IntelligentAlarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":20003},{\"dataType\":\"ENUM\",\"name\":\"人体检测\",\"value\":20004},{\"dataType\":\"ENUM\",\"name\":\"人脸质量分\",\"value\":60005},{\"dataType\":\"ENUM\",\"name\":\"人脸特征提取\",\"value\":60006},{\"dataType\":\"ENUM\",\"name\":\"叠衣计数\",\"value\":60007},{\"dataType\":\"ENUM\",\"name\":\"目标检测\",\"value\":60008},{\"dataType\":\"ENUM\",\"name\":\"年龄性别检测\",\"value\":60009},{\"dataType\":\"ENUM\",\"name\":\"表情检测\",\"value\":60010},{\"dataType\":\"ENUM\",\"name\":\"人体姿态估计\",\"value\":60011},{\"dataType\":\"ENUM\",\"name\":\"车辆和车牌检测\",\"value\":60012},{\"dataType\":\"ENUM\",\"name\":\"车牌识别\",\"value\":60013}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"告警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Algorithm\",\"name\":\"算法\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ProductKey\",\"name\":\"子设备产品名\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceName\",\"name\":\"子设备名\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"告警内容\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmPicID\",\"name\":\"图片ID\",\"paraOrder\":5}],\"required\":true}]}'),(1698826367,0,'3769439254','Juicer','果汁机','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"单个库存查询\",\"identifier\":\"getInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"单个库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"增加库存\",\"identifier\":\"addInventory\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"c\",\"name\":\"库存\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"增加库存\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"批量库存查询\",\"identifier\":\"listInventory\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"inventoryDetail\",\"name\":\"库存详情\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"批量库存查询\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"出货\",\"identifier\":\"deliverCommodity\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"x\",\"name\":\"横坐标\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"y\",\"name\":\"纵坐标\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"quantity\",\"name\":\"数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":1}],\"required\":true,\"serviceName\":\"出货\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"订单出货事件\",\"eventName\":\"订单出货事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"deliverCommodityEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"orderNo\",\"name\":\"订单号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"deliverTime\",\"name\":\"出货时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"错误说明\",\"paraOrder\":3}],\"required\":false}]}'),(1698826367,0,'3772407319','Sauna','干蒸房','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3787076104','OffVoltageMonitor','断电监控','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3813820703','PharmaceuticalManufacturing','医药制造业','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'3817935418','BreakingMachine','破壁机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"KeepWarmSwitch\",\"name\":\"保温开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"运行\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"暂停\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PauseSwitch\",\"name\":\"暂停开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatSwitch\",\"name\":\"加热开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10\",\"min\":\"0\",\"precise\":1,\"step\":\"0.50\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"8\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"StirringSpeed\",\"name\":\"搅拌速度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10\",\"min\":\"0\",\"precise\":1,\"step\":\"0.50\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'382691557','QrCodeAccessControl','二维码门禁机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"syncPermissions\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"permissionUrl\",\"name\":\"权限url\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"同步门禁权限\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"remoteOpen\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"远程开门\"}],\"properties\":[],\"events\":[{\"custom\":false,\"eventName\":\"报警事件\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"alarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"防拆报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"防拆报警解除\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"alarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"通行事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"passEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"custom\":false,\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"userId\",\"name\":\"用户Id\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":false,\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"qrCode\",\"name\":\"二维码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"extInfo\",\"name\":\"附加信息\",\"paraOrder\":2}],\"required\":true}]}'),(1698826367,0,'3827148280','FlowDetection','营养液流速监测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"L/min\",\"unitName\":\"升每分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"单位:毫升每分钟 ml/min 请进行补充和修改\",\"identifier\":\"Flow\",\"name\":\"流量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3839407685','SpeechHelper','语音助手','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AnnounceTTSText\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"text\",\"name\":\"TTS文本\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"voice\",\"name\":\"音色\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"播报TTS文本\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Volume\",\"name\":\"音量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"上报ASR文本\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ReportASRText\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"text\",\"name\":\"ASR文本内容\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"age\",\"name\":\"声纹识别的年龄\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"女\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"男\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"未知\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"gender\",\"name\":\"声纹识别的性别\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"DOUBLE\",\"customFlag\":true,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"step\":\"0.01\"},\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VoiceprintFeature\",\"name\":\"声纹识别特征向量\",\"paraOrder\":3}],\"required\":true}]}'),(1698826367,0,'3841334380','DoorViewer','猫眼','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Restart\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"重新启动\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RestoreFactorySettings\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"恢复出厂设置\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"FormatTFCard\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"TF卡格式化\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RingVolume\",\"name\":\"门铃音量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"RingLEDSwitch\",\"name\":\"门铃灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"撤防\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"布防\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AlarmSwitch\",\"name\":\"报警开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低灵敏度\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"高灵敏度\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AlarmSensitivity\",\"name\":\"报警灵敏度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"StayAlarmVolume\",\"name\":\"逗留报警音量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IndoorHumanDetectionSwitch\",\"name\":\"室内人体探测开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StreamVideoQuality\",\"name\":\"主码流视频质量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LCDLuminance\",\"name\":\"屏幕亮度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未插充电器\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"充电中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"已充满\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ChargeState\",\"name\":\"充电状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3856876065','SceneSwitch','场景开关','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"键值信息上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"KeyValueNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"KeyValue\",\"name\":\"键值\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3860258600','MeterElec_Dlt645','DLT645电表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"Hz\",\"unitName\":\"赫兹\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_fr\",\"name\":\"频率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_fra\",\"name\":\"A相有功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_frb\",\"name\":\"B相有功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_frc\",\"name\":\"C相有功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_pfa\",\"name\":\"A相功率因素\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_pfb\",\"name\":\"B相功率因素\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_pfc\",\"name\":\"C相功率因素\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kvar\",\"unitName\":\"千乏\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_pqa\",\"name\":\"A相无功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kvar\",\"unitName\":\"千乏\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_pqb\",\"name\":\"B相无功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kvar\",\"unitName\":\"千乏\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_pqc\",\"name\":\"C相无功功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_psa\",\"name\":\"A相视在功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_psb\",\"name\":\"B相视在功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"},\"dataType\":\"DOUBLE\",\"identifier\":\"electric_psc\",\"name\":\"C相视在功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"},\"dataType\":\"DOUBLE\",\"identifier\":\"nActiveEnergy\",\"name\":\"有功电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"identifier\":\"nIa\",\"name\":\"A相电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"identifier\":\"nIc\",\"name\":\"C相电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"identifier\":\"nUa\",\"name\":\"A相电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"identifier\":\"nIb\",\"name\":\"B相电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"identifier\":\"nUb\",\"name\":\"B相电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"1000\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"FLOAT\",\"identifier\":\"nUc\",\"name\":\"C相电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"Breaker_control\",\"name\":\"断路器开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3894107257','FishTank','鱼缸','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"WaterTemp_Control\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243799,\"name\":\"升温\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243800,\"name\":\"降温\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"mode\",\"name\":\"工作模式\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234593,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"min\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"step\",\"name\":\"步长_升高一度需要分钟数\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"INT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234594,\"max\":\"6\",\"min\":\"0\",\"step\":\"1\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SwitchNo\",\"name\":\"开关\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243801,\"name\":\"失败\",\"value\":0},{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243802,\"name\":\"成功\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"执行结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"水温温度调节\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"EnvTemp_Control\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243803,\"name\":\"升温\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243804,\"name\":\"降温\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"mode\",\"name\":\"工作模式\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234595,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"min\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"step\",\"name\":\"步长_升高一度需要分钟数\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"INT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234596,\"max\":\"6\",\"min\":\"0\",\"step\":\"1\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SwitchNo\",\"name\":\"开关\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243805,\"name\":\"失败\",\"value\":0},{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243806,\"name\":\"成功\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"执行结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"环境温度调节\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"EnvHumidity_Control\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243807,\"name\":\"增加湿度\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243808,\"name\":\"降低湿度\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"mode\",\"name\":\"工作模式\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234597,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"min\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"step\",\"name\":\"步长_升高1个百分比需要的分钟数\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"INT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234598,\"max\":\"6\",\"min\":\"0\",\"step\":\"1\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SwitchNo\",\"name\":\"开关\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243809,\"name\":\"失败\",\"value\":0},{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243810,\"name\":\"成功\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"执行结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"环境湿度调节\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"Temperature\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"照明开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"水温\",\"identifier\":\"WaterTemperature\",\"name\":\"水温\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"WaterTemp_High_Threshold\",\"name\":\"水温高温报警阈值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"WaterTemp_Low_Threshold\",\"name\":\"水温低温报警阈值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234576,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"identifier\":\"EnvTemperature\",\"name\":\"环境温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"EnvTemp_High_Threshold\",\"name\":\"环境高温报警阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234578,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"identifier\":\"EnvTemp_Low_Threshold\",\"name\":\"环境低温报警阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234579,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"FLOAT\",\"identifier\":\"EnvHumidity\",\"name\":\"环境湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234580,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"FLOAT\",\"identifier\":\"EnvHumidity_High_Threshold\",\"name\":\"环境湿度高报警阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"EnvHumidity_Low_Threshold\",\"name\":\"环境湿度低报警阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243792,\"name\":\"关\",\"value\":0},{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243793,\"name\":\"开\",\"value\":1}],\"childName\":\"开关状态\",\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243792,\"name\":\"关\",\"value\":0},{\"custom\":true,\"dataType\":\"BOOL\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243793,\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"switch\",\"isStd\":0,\"name\":\"开关\"},{\"childDataType\":\"TEXT\",\"childName\":\"别名\",\"childSpecsDTO\":{\"custom\":true,\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"nickName\",\"isStd\":0,\"name\":\"开关\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243794,\"name\":\"手动模式\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243795,\"name\":\"定时模式\",\"value\":1},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243796,\"name\":\"周期模式\",\"value\":2},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243797,\"name\":\"恒温模式\",\"value\":3},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243798,\"name\":\"恒湿模式\",\"value\":4}],\"childName\":\"工作模式\",\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243794,\"name\":\"手动模式\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243795,\"name\":\"定时模式\",\"value\":1},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243796,\"name\":\"周期模式\",\"value\":2},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243797,\"name\":\"恒温模式\",\"value\":3},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243798,\"name\":\"恒湿模式\",\"value\":4}],\"dataType\":\"STRUCT\",\"identifier\":\"WorkMode\",\"isStd\":0,\"name\":\"开关\"},{\"childDataType\":\"TEXT\",\"childName\":\"定时模式参数\",\"childSpecsDTO\":{\"custom\":true,\"dataType\":\"TEXT\",\"length\":1024},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"timing\",\"isStd\":0,\"name\":\"开关\"},{\"childDataType\":\"TEXT\",\"childName\":\"周期模式\",\"childSpecsDTO\":{\"custom\":true,\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"period\",\"isStd\":0,\"name\":\"开关\"},{\"childDataType\":\"TEXT\",\"childName\":\"恒温模式参数\",\"childSpecsDTO\":{\"custom\":true,\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecs.dataSpecsList[5].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"const_temp\",\"isStd\":0,\"name\":\"开关\"},{\"childDataType\":\"TEXT\",\"childName\":\"恒湿模式参数\",\"childSpecsDTO\":{\"custom\":true,\"dataType\":\"TEXT\",\"length\":256},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecs.dataSpecsList[6].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"const_humidity\",\"isStd\":0,\"name\":\"开关\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"不执行\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"执行\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不执行\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"执行\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"开关\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"Socket\",\"name\":\"开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"INT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234582,\"max\":\"3000\",\"min\":\"0\",\"step\":\"1\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"TDS\",\"name\":\"TDS值\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"INT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234583,\"max\":\"3000\",\"min\":\"0\",\"step\":\"1\"},\"dataType\":\"INT\",\"identifier\":\"TDS_High_Threshold\",\"name\":\"TDS高值报警阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234584,\"max\":\"14\",\"min\":\"0\",\"step\":\"0.1\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"identifier\":\"PH_Low_Threshold\",\"name\":\"PH低值报警阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"INT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"W\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentPowerConsumption\",\"name\":\"当前功耗\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ElectricityConsumption\",\"name\":\"用电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234587,\"max\":\"14\",\"min\":\"0\",\"step\":\"0.1\"},\"dataType\":\"FLOAT\",\"identifier\":\"PH\",\"name\":\"PH\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234588,\"max\":\"14\",\"min\":\"0\",\"step\":\"0.1\"},\"dataType\":\"FLOAT\",\"identifier\":\"PH_High_Threshold\",\"name\":\"PH高值报警阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"INT\",\"max\":\"525600\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RunningTimeOfEquipment\",\"name\":\"设备运行时长\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"DOUBLE\",\"max\":\"630000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mA\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Current\",\"name\":\"当前电流\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"DOUBLE\",\"max\":\"36\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"温度报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TemperatureAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"高温报警\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"eventName\":\"TDS报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"TDSAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243811,\"name\":\"正常\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243812,\"name\":\"高\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"报警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"INT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234599,\"max\":\"30000\",\"min\":\"0\",\"step\":\"1\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TDS\",\"name\":\"TDS\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"水温报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"WaterTemperatureAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"name\":\"高温异常\",\"value\":1},{\"custom\":true,\"dataType\":\"ENUM\",\"name\":\"低温异常\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"报警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"°C\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Temperature\",\"name\":\"当前温度\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"eventName\":\"环境湿度报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"EnvironmentalHumidityAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243816,\"name\":\"正常\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243817,\"name\":\"高湿报警\",\"value\":1},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243818,\"name\":\"低湿报警\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"报警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234601,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"%\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Humidity\",\"name\":\"当前湿度\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"eventName\":\"环境温度报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"EnvironmentalTemperatureAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243819,\"name\":\"正常\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243820,\"name\":\"高温报警\",\"value\":1},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243821,\"name\":\"低温报警\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"报警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234602,\"max\":\"100\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"°C\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Temperature\",\"name\":\"当前温度\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"eventName\":\"PH告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"PHAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243822,\"name\":\"正常\",\"value\":0},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243823,\"name\":\"高\",\"value\":1},{\"custom\":true,\"dataType\":\"ENUM\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":4243824,\"name\":\"低\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"报警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"custom\":true,\"dataType\":\"FLOAT\",\"gmtCreate\":1557121343000,\"gmtModified\":1557121343000,\"id\":3234603,\"max\":\"14\",\"min\":\"0\",\"step\":\"0.1\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PH\",\"name\":\"PH\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"custom\":true,\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'389653202','Audio','音箱','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"CD\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"USB\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"SD_MMC\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"Tape\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"Phone\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"Aux1\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"Aux2\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"LineIn\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"Guitar\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"FM\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"AM\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"DAB\",\"value\":11}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MediaSource\",\"name\":\"多媒体资源\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"停止\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"播放\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PlayType\",\"name\":\"播放类型\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"上一首\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下一首\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MusicSelect\",\"name\":\"音乐选择\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"单曲循环\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"全部循环\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"随机\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RepeatType\",\"name\":\"循环模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LeftRightBalance\",\"name\":\"左右耳平衡\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流行\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"爵士\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"古典\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"摇滚\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"普通\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"EqualizerType\",\"name\":\"EQ模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AutoDJSwitch\",\"name\":\"自动DJ模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CoordinateSystem\",\"name\":\"坐标系统\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3902095135','ParkingLot','停车场','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetAreaList\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"全量\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"1级区域\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"type\",\"name\":\"获取类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"获取停车区域列表\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AddVehicleInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"CellPhoneNumber\",\"name\":\"车主手机号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"IdNumber\",\"name\":\"身份证号\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"没有锁定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"锁定\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StateLocked\",\"name\":\"锁定状态\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LockStartExpireTime\",\"name\":\"锁车起始时间\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LockEndExpireTime\",\"name\":\"锁车截止时间\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AccessBarrierListUrl\",\"name\":\"通行权限道闸列表Url\",\"paraOrder\":7}],\"outputParams\":[],\"required\":true,\"serviceName\":\"新增车辆信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteVehicleInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"删除车辆信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ModifyVehicleInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"IdNumber\",\"name\":\"身份证号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"没有锁定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"锁定\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StateLocked\",\"name\":\"锁定状态\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LockStartExpireTime\",\"name\":\"锁车起始时间\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LockEndExpireTime\",\"name\":\"锁车截止时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AccessBarrierListUrl\",\"name\":\"通行权限道闸列表Url\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"CellPhoneNumber\",\"name\":\"用户手机号\",\"paraOrder\":7}],\"outputParams\":[],\"required\":true,\"serviceName\":\"修改车辆信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetVehicleInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"IdNumber\",\"name\":\"身份证号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"不在停车场内\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"在停车场内\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StateParked\",\"name\":\"驻车状态\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockStartExpireTime\",\"name\":\"锁车起始时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockEndExpireTime\",\"name\":\"锁车截止时间\",\"paraOrder\":5},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"没有锁定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"锁定\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StateLocked\",\"name\":\"锁定状态\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AccessBarrierListUrl\",\"name\":\"通行权限道闸列表Url\",\"paraOrder\":7},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkedSpacePK\",\"name\":\"驻车车位PK\",\"paraOrder\":8},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkedSpaceDN\",\"name\":\"驻车车位DN\",\"paraOrder\":9},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkingAreaPK\",\"name\":\"驻车区域PK\",\"paraOrder\":10},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ParkedAreaDN\",\"name\":\"驻车区域DN\",\"paraOrder\":11},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"CellPhoneNumber\",\"name\":\"用户手机号\",\"paraOrder\":12}],\"required\":true,\"serviceName\":\"查询车辆信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CorrectPlateNumber\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"正确车牌号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RecordID\",\"name\":\"本地停车系统记录ID\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"车牌号校正\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetBarrierList\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"BarrierListUrl\",\"name\":\"道闸列表Url\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"获取道闸列表\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetPlateNumberList\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumberListUrl\",\"name\":\"车牌号列表Url\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询车牌号列表\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TotalParkSpace\",\"name\":\"车位总数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RemainParkSpace\",\"name\":\"余位总数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"车辆信息变更\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"UpdateVehicleInfoFromLocal\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"新增\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"修改\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"删除\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TypeOperation\",\"name\":\"操作类型\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"IdNumber\",\"name\":\"身份证号\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"没有锁定\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"锁定\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StateLocked\",\"name\":\"锁定状态\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockStartExpireTime\",\"name\":\"锁车起始时间\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"LockEndExpireTime\",\"name\":\"锁车截止时间\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AccessBarrierListUrl\",\"name\":\"通行权限道闸列表Url\",\"paraOrder\":7}],\"required\":true}]}'),(1698826367,0,'3923445303','capture','车牌抓拍-ib','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"capture\",\"name\":\"抓拍动作\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Car_number\",\"name\":\"识别车牌\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Pic_name\",\"name\":\"识别照片\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'3930200387','ShowerHead','花洒','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"80\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"identifier\":\"WaterTemperature\",\"name\":\"水温\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.1\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"FLOAT\",\"identifier\":\"WaterConsumption\",\"name\":\"耗水量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WaterOutletSwitch\",\"name\":\"出水开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3935014426','HealthPreservingPot','养生壶','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"35\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'3958755472','PricingScale','计价秤','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ResetZero\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":20},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ZeroInstruction\",\"name\":\"清零指令\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":20},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ZeroValue\",\"name\":\"零点数值\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"清零\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Peel\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"去皮\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"商品\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":20},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Item\",\"name\":\"商品详情\"},{\"childDataType\":\"TEXT\",\"childName\":\"净重\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":20},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"NetWeight\",\"name\":\"商品详情\"},{\"childDataType\":\"TEXT\",\"childName\":\"皮重\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":20},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TareWeight\",\"name\":\"商品详情\"},{\"childDataType\":\"TEXT\",\"childName\":\"单价\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":20},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"UnitPrice\",\"name\":\"商品详情\"},{\"childDataType\":\"TEXT\",\"childName\":\"总价\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":20},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TotalPrice\",\"name\":\"商品详情\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"ItemDetail\",\"name\":\"商品详情\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"总数\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":20},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"TotalItem\",\"name\":\"支付金额\"},{\"childDataType\":\"TEXT\",\"childName\":\"金额\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":20},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Amount\",\"name\":\"支付金额\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"TotalAmount\",\"name\":\"支付金额\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"低电量告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"LowBatteryAlarm\",\"outputData\":[],\"required\":false}]}'),(1698826367,0,'3964565931','GasMeter','燃气表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3964812875','LightingFacility','灯光设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightStatus\",\"name\":\"灯的状态\",\"required\":true,\"rwFlag\":\"WRITE_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LightLuxModuleStatus\",\"name\":\"光照度模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3986649904','ElevatorStatusSensor','电梯门体状态探测传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'3993857492','WaterMonitoring','水质检测终端','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4002006326','ElevatorPositionSensor','电梯平层位置探测传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'400849263','ThreePhaseMeter','三相电表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ActiveEnergyCombinedTotal\",\"name\":\"组合有功总电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ActiveEnergyImport\",\"name\":\"正向有功总电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ActiveEnergyExport\",\"name\":\"反向有功总电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ActiveEnergyImportInPhaseL1\",\"name\":\"A相正向有功电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"999999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ActiveEnergyImportInPhaseL2\",\"name\":\"B相正向有功电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"99999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ActiveEnergyImportInPhaseL3\",\"name\":\"C相正向有功电能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4021813315','DoorContact','门磁传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ContactState\",\"name\":\"门磁状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"当设备被撬时,上报该事件\",\"eventName\":\"防撬报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TamperAlarm\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"当检测到超时未关门时,上报该事件\",\"eventName\":\"超时未关门报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TimeoutAlarm\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4025052633','TeaBar','茶吧机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatingSwitch\",\"name\":\"加热开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"45\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"放温水\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"放冷水\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterState\",\"name\":\"放水状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"RefrigerationSwitch\",\"name\":\"制冷开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatPreservationSwitch\",\"name\":\"保温开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WaterTemperature\",\"name\":\"冷水温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"KettleTemperature\",\"name\":\"水壶温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'403549703','WaterDetector','水浸报警器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"有水浸入\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterSensorState\",\"name\":\"水浸检测状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"当设备被撬时,上报该事件\",\"eventName\":\"防撬报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TamperAlarm\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'403793508','EFence','电子围栏','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ControlDevice\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"HostId\",\"name\":\"主机ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EfenceId\",\"name\":\"围栏ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Action\",\"name\":\"动作\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"返回码\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Message\",\"name\":\"返回消息\",\"paraOrder\":1}],\"required\":false,\"serviceName\":\"控制设备\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryHost\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"返回码\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Message\",\"name\":\"返回消息\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"返回数据\",\"paraOrder\":2}],\"required\":false,\"serviceName\":\"查询主机\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryEfence\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"HostId\",\"name\":\"主机ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"返回码\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Message\",\"name\":\"返回消息\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"返回数据\",\"paraOrder\":2}],\"required\":false,\"serviceName\":\"查询围栏\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryStatus\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"HostId\",\"name\":\"主机ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EfenceId\",\"name\":\"围栏ID\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"99999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"返回码\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Message\",\"name\":\"返回消息\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":16},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"返回数据\",\"paraOrder\":2}],\"required\":false,\"serviceName\":\"查询状态\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"通用事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"EfenceEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"HostId\",\"name\":\"主机ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EfenceId\",\"name\":\"围栏ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EfenceName\",\"name\":\"围栏名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventType\",\"name\":\"事件类型\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventCode\",\"name\":\"事件编码\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserId\",\"name\":\"事件相关的用户ID\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserName\",\"name\":\"事件相关的用户名\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventTime\",\"name\":\"事件时间\",\"paraOrder\":7}],\"required\":false}]}'),(1698826367,0,'4047388703','ToxicGas','有害气体检测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"NH3\",\"name\":\"氨气浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CO\",\"name\":\"一氧化碳浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"SO2\",\"name\":\"二氧化硫浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4073643079','Heater','取暖器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"16\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"标准\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"智能\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HeatLevel\",\"name\":\"加热档位\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"4000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentPower\",\"name\":\"当前功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"加热中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"加热状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PowerConsumption\",\"name\":\"功耗\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4076358480','HotAirBlower','热风机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4080444194','Others','其它','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'4083888845','TempHumiUnit','温湿度采集单元','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"80\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"当前湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"5\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4099246069','ExhaustWindow','电动排烟窗','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[1].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4116101693','ParkHDDetectMachine','车位传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"135_c_1\",\"identifier\":\"Car_number_1\",\"name\":\"1号车牌\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"135_c_2\",\"identifier\":\"Car_number_2\",\"name\":\"2号车牌\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"135_c_3\",\"identifier\":\"Car_number_3\",\"name\":\"3号车牌\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"135_o_1\",\"identifier\":\"Parking_1\",\"name\":\"1号车位状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"135_o_2\",\"identifier\":\"Parking_2\",\"name\":\"2号车位状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"135_o_3\",\"identifier\":\"Parking_3\",\"name\":\"3号车位状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"135_pic\",\"identifier\":\"Pic_name\",\"name\":\"识别照片\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4125956508','FlowIndicator','水流指示器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4128652051','LightEnsor','光照传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"单位,为lux,请补充并修改\",\"identifier\":\"Light\",\"name\":\"光照度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4132068596','PeopleFlow','客流量传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"customerData\",\"name\":\"客流数据\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4175618739','FingerPrintDoor','指纹门禁','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"CardId\",\"name\":\"指纹卡号\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Switch_control\",\"name\":\"开关控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"门禁状态告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Status_alarm\",\"outputData\":[],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4187365874','Camera','摄像头','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartPTZAction\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"左\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"右\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"上\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"下\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"上左\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"上右\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"下左\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"下右\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"放大\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"缩小\",\"value\":9}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ActionType\",\"name\":\"动作类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"慢速\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"中速\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"快速\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Speed\",\"name\":\"速度\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始PTZ控制\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopPTZAction\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止PTZ控制\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"辅码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"码流类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"60\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PreTime\",\"name\":\"提前推流时间\",\"paraOrder\":5}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"设备不支持\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备资源不足\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"推流连接失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"推流结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"开始直播\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"辅码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"码流类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止直播\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"TriggerPicCapture\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UploadUrl\",\"name\":\"上传地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PicID\",\"name\":\"图片ID\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"触发设备抓图\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartRecord\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"云端录像\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RecordType\",\"name\":\"录像方式\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RecordDuration\",\"name\":\"录制时长\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"20\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PreRecordDuration\",\"name\":\"预录时长\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UploadUrl\",\"name\":\"上传地址\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RecordID\",\"name\":\"录像ID\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"开始录像\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopRecord\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RecordID\",\"name\":\"录像ID\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止录像\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVoiceIntercom\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":521},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"IntercomUrl\",\"name\":\"对讲地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Key\",\"name\":\"加解密秘钥\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加解密类型\",\"paraOrder\":2}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始语音对讲\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopVoiceIntercom\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止语音对讲\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopVod\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止录像观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"FormatStorageMedium\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"格式化存储介质\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Reboot\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"重启\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVod\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FileName\",\"name\":\"录像名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":5}],\"outputParams\":[],\"required\":true,\"serviceName\":\"开始录像观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"VoiceMessageDownstream\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"MessageData\",\"name\":\"语音消息\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"语音消息下发\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"P2PSignalDownstream\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Data\",\"name\":\"信令数据\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"P2P信令下发\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryRecordList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"所有类型\",\"value\":99}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"录像类型\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"QuerySize\",\"name\":\"查询数量\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"录像名\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[15].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"FileName\",\"name\":\"录像列表\"},{\"childDataType\":\"INT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[15].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BeginTime\",\"name\":\"录像列表\"},{\"childDataType\":\"INT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[15].outputParams[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"录像列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"文件大小\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[15].outputParams[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Size\",\"name\":\"录像列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"childName\":\"录像类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"Type\",\"name\":\"录像列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RecordList\",\"name\":\"录像列表\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询录像列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartP2PStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StunUrl\",\"name\":\"STUN服务地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SignalUrl\",\"name\":\"信号服务地址\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始P2P直播\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVodByTime\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":6}],\"outputParams\":[],\"required\":true,\"serviceName\":\"开始录像按时间观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"PTZActionControl\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"左\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"右\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"上\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"下\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"上左\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"上右\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"下左\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"下右\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"放大\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"缩小\",\"value\":9}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ActionType\",\"name\":\"动作类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"10\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Step\",\"name\":\"步进量\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"PTZ步进控制\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryRecordTimeList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"QuerySize\",\"name\":\"查询数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"所有类型\",\"value\":99}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"录像类型\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[19].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BeginTime\",\"name\":\"时间列表\"},{\"childDataType\":\"INT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[19].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"时间列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"childName\":\"录像类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"Type\",\"name\":\"时间列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TimeList\",\"name\":\"时间列表\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询录像时间列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"PTZCalibrate\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"完全校准\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"水平校准\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"垂直校准\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Direction\",\"name\":\"方向\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"不支持\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"校准结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"PTZ校准\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"月份格式为yyyyMM,如\\\"201806\\\"。输出参数为字符串,长度为当月天数,1表示当天有录像,0表示当天无录像。\",\"identifier\":\"QueryMonthRecord\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":16},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Month\",\"name\":\"月份\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RecordFlags\",\"name\":\"月录像标识\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"查询设备端月录像\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StreamVideoQuality\",\"name\":\"主码流视频质量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SubStreamVideoQuality\",\"name\":\"辅码流视频质量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"时间段开始秒数\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"86399\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BeginTime\",\"name\":\"报警提醒计划\"},{\"childDataType\":\"INT\",\"childName\":\"时间段结束秒数\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"86399\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"报警提醒计划\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"周日\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"周一\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"周二\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"周三\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"周四\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"周五\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"周六\",\"value\":6}],\"childName\":\"每周日期\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"周日\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"周一\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"周二\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"周三\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"周四\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"周五\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"周六\",\"value\":6}],\"dataType\":\"STRUCT\",\"identifier\":\"DayOfWeek\",\"name\":\"报警提醒计划\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"description\":\"报警时间段列表,其中的BeginTine和EndTime分别代表时间段开始和结束的秒数,0表示00:00:00,86399表示23:59:59\",\"identifier\":\"AlarmNotifyPlan\",\"name\":\"报警提醒计划\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AlarmSwitch\",\"name\":\"报警开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MotionDetectSensitivity\",\"name\":\"移动侦测灵敏度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"VoiceDetectionSensitivity\",\"name\":\"声音侦测灵敏度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低频\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"中频\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高频\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AlarmFrequencyLevel\",\"name\":\"报警频率\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"MicSwitch\",\"name\":\"麦克风开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SpeakerSwitch\",\"name\":\"扬声器开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"StatusLightSwitch\",\"name\":\"状态灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常状态\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"翻转状态\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ImageFlipState\",\"name\":\"画面翻转状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"不录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"事件录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"全天录像\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StorageRecordMode\",\"name\":\"存储介质录像模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未插卡\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"未格式化\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"正在格式化\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StorageStatus\",\"name\":\"存储介质状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"白天模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"夜晚模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"自动模式\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"DayNightMode\",\"name\":\"日夜模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"INT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"EncryptTypeList\",\"name\":\"加密类型列表\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"EncryptSwitch\",\"name\":\"视频加密开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"MB\",\"unitName\":\"兆字节\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"StorageTotalCapacity\",\"name\":\"总存储空间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"MB\",\"unitName\":\"兆字节\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"StorageRemainCapacity\",\"name\":\"剩余存储空间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"VoiceIntercomType\",\"name\":\"语音对讲类型列表\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AlarmPromptSwitch\",\"name\":\"报警提示开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"IpcVersion\",\"name\":\"摄像机版本号\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不支持\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"支持\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PreRecordSupport\",\"name\":\"是否支持预录\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不支持\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"支持\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DirectUploadSupport\",\"name\":\"是否支持直存\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"全部支持\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"OSS\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"HTTP2\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"UploadPictureType\",\"name\":\"图片传输类型\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"VideoCustomData\",\"name\":\"视频自定义数据\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"侦测报警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"AlarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"宠物侦测\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"越界侦测\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"区域入侵侦测\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"跌倒侦测\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"笑脸检测\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"异响侦测\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"哭声侦测\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"笑声侦测\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"火警侦测\",\"value\":13},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":14},{\"dataType\":\"ENUM\",\"name\":\"人流统计\",\"value\":15}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"告警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmPicID\",\"name\":\"报警抓图ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"告警内容\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"网络异常\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"存储介质异常\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"P2P信令上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"P2PSignalUpstream\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"信令数据\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"图片上传结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"PicUploadResult\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"网络异常\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"鉴权错误\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"文件内容错误\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"上传结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorMessage\",\"name\":\"错误描述\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PicInfo\",\"name\":\"图片信息\",\"paraOrder\":2}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"设备智能事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"IntelligentEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"人流统计\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventType\",\"name\":\"事件类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventPicID\",\"name\":\"图片ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"事件内容\",\"paraOrder\":2}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"智能告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"IntelligentAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001},{\"dataType\":\"ENUM\",\"name\":\"行为识别\",\"value\":11021}],\"childName\":\"告警类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001},{\"dataType\":\"ENUM\",\"name\":\"行为识别\",\"value\":11021}],\"dataType\":\"STRUCT\",\"identifier\":\"AlarmType\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"图片ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[5].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicID\",\"name\":\"事件列表\"},{\"childDataType\":\"INT\",\"childName\":\"图片大小\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"1\",\"step\":\"1\",\"unit\":\"Byte\",\"unitName\":\"字节\"},\"dataSpecs\":{\"$ref\":\"$.events[5].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicSize\",\"name\":\"事件列表\"},{\"childDataType\":\"DATE\",\"childName\":\"告警时间\",\"childSpecsDTO\":{\"dataType\":\"DATE\"},\"dataSpecs\":{\"$ref\":\"$.events[5].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EventTime\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"告警内容\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.events[5].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Data\",\"name\":\"事件列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventList\",\"name\":\"事件列表\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"电量低告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"LowBatteyEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"BatteryLevel\",\"name\":\"电量水平\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'4188935968','PumpValve','泵阀','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'4193559422','Aquatic','水产','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'4209867363','BackgroundMusicController','背景音乐控制器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"播放\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"上一曲\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"下一曲\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"MusicPlayControl\",\"name\":\"音乐播放控制\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"原声\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"古典\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"现代\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"摇滚\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"流行\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"舞曲\",\"value\":5}],\"dataType\":\"ENUM\",\"identifier\":\"SoundEffect\",\"name\":\"音效\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"降低音量\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"提高音量\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"VolumeControl\",\"name\":\"音量控制\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Mute\",\"name\":\"静音\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"列表顺序\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"列表循环\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"单曲循环\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"随机\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"MusicPlayMode\",\"name\":\"音乐播放模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"蓝牙\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"外音\",\"value\":2}],\"dataType\":\"ENUM\",\"identifier\":\"AudioSource\",\"name\":\"音频信号源\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4222937861','Fan','风扇','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IonsSwitch\",\"name\":\"负离子开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"OscillatingSwitch\",\"name\":\"摇头开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ScreenSwitch\",\"name\":\"屏显开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Humidification\",\"name\":\"加湿开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"32\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"风速\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"缺水\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WaterShortage\",\"name\":\"加湿缺水\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常风\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"自然风\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"睡眠风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"静音风\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"当前湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetHumidity\",\"name\":\"目标湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭上下扫风\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开上下扫风\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"VerticalAngle\",\"name\":\"上下扫风\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭左右扫风\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开左右扫风\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HorizontalAngle\",\"name\":\"左右扫风\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启动\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4231460555','Locater','车辆定位卡','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'4236133171','Gas meter manufacturing','气表制造','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'4239274722','GasDetector','燃气报警器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"天然气\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"人工煤气\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"液化石油气\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"GasType\",\"name\":\"燃气类型\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"燃气泄漏\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"GasSensorState\",\"name\":\"燃气检测状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LelPercentage\",\"name\":\"燃气爆炸危险度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"当设备被撬时,上报该事件\",\"eventName\":\"防撬报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TamperAlarm\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4259314376','GuideScreen','导购屏','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关机\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开机\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"state_/ids/checkAPIStatus.action\",\"identifier\":\"MultiScreenApp_state\",\"name\":\"多屏状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"clear\",\"identifier\":\"Clear\",\"name\":\"清空屏幕\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"/ids/materialDownload.action\",\"identifier\":\"Download_material\",\"name\":\"素材下发\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"/ids/materialSendSpot.action\",\"identifier\":\"Insert_material\",\"name\":\"插播素材\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"/ids/subtitleSendSpot.action\",\"identifier\":\"Insert_subtitle\",\"name\":\"插播字幕\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关机\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开机\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"power\",\"identifier\":\"Power\",\"name\":\"开关机控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"/ids/endSpot.action\",\"identifier\":\"Stop_insertion\",\"name\":\"终止插播\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"/ids/endSpot.action\",\"identifier\":\"Task\",\"name\":\"节目计划\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"/ids/runProgram.action\",\"identifier\":\"Run_program\",\"name\":\"终端执行\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'4271324740','MetalProductsIndustry','金属制品业','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'4271834022','SmokeAlarm','烟雾报警器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"127\",\"min\":\"-127\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RSSI\",\"name\":\"接收信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"检测到烟雾\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SmokeSensorState\",\"name\":\"烟雾检测状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"当设备被撬时,上报该事件\",\"eventName\":\"防撬报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"TamperAlarm\",\"outputData\":[],\"required\":false}]}'),(1698826367,0,'431594641','electricmeter','电力仪表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"AQI\",\"name\":\"空气质量指数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"60000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"voltage\",\"name\":\"电源电压\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"EXT_PAN_ID\",\"name\":\"扩展网路标识\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Permission\",\"name\":\"鉴权信息\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"/ids/runProgram.action\",\"identifier\":\"Run_program\",\"name\":\"终端执行\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"SystemInfo\",\"name\":\"系统信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'435417903','ParkOverAll','道闸一体机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"135\",\"identifier\":\"Car_number\",\"name\":\"识别车牌\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"25\",\"identifier\":\"Brake_state\",\"name\":\"道闸状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"135_pic\",\"identifier\":\"Pic_name\",\"name\":\"识别图片\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"description\":\"20\",\"identifier\":\"Brake_control\",\"name\":\"道闸控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"150\",\"identifier\":\"Display\",\"name\":\"屏幕显示及语音播报\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"离线告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Offline_alarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"在线\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"离线\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"eventValue\",\"name\":\"事件值\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'441395548','DigitalShop','数字门店','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'45025795','MoxibustionApparatus','艾灸仪','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开机\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":2}],\"dataType\":\"ENUM\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"温灸\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"啄灸\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"瘢痕灸\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"智能灸\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"处方灸\",\"value\":5}],\"dataType\":\"ENUM\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"eventName\":\"超时告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"TimeoutWarning\",\"outputData\":[],\"required\":false},{\"custom\":false,\"eventName\":\"故障上报\",\"eventType\":\"ERROR_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReportContent\",\"name\":\"报告内容\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'456878733','ParkChannel','社区车行停车通道','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"OrderCompleted\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"OrderNumber\",\"name\":\"订单编号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"订单完成\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"BarrierState\",\"name\":\"道闸状态\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"车辆收费订单\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"CarPassOrder\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"InTime\",\"name\":\"入场时间\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OutTime\",\"name\":\"出场时间\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"999999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Amount\",\"name\":\"收费金额\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OrderNumber\",\"name\":\"订单编号\",\"paraOrder\":5},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"支付完成\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"未支付\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"支付失败\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OrderStatus\",\"name\":\"订单支付状态\",\"paraOrder\":6},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AreaProductKey\",\"name\":\"从属停车区域PK\",\"paraOrder\":7},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AreaDeviceName\",\"name\":\"从属停车区域DN\",\"paraOrder\":8}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"识别锁定车辆\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"LockedVehicleRecognition\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AreaProductKey\",\"name\":\"从属停车区域PK\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AreaDeviceName\",\"name\":\"从属停车区域DN\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumberImageUrl\",\"name\":\"车牌照片Url\",\"paraOrder\":4}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"车辆通行事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"CarPassEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AreaProductKey\",\"name\":\"从属停车区域PK\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AreaDeviceName\",\"name\":\"从属停车区域DN\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumberImageUrl\",\"name\":\"车牌照片Url\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OrderNumber\",\"name\":\"订单编号\",\"paraOrder\":5},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常抬杆\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"异常抬杆\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OpenType\",\"name\":\"抬杆类型\",\"paraOrder\":6}],\"required\":true}]}'),(1698826367,0,'466122741','ImageCaptureDevice','图像采集设备','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'49749100','FaceRecognitionCapabilityModel','人脸识别能力模型','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AuthVerifySDK\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"LicenseData\",\"name\":\"授权文件\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StatusCode\",\"name\":\"状态码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StatusCodeDescription\",\"name\":\"状态码描述\",\"paraOrder\":2}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"授权成功\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"授权失败\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DoAuthorized\",\"name\":\"设备授权是否成功\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"设备授权文件下发\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncFacePictures\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FacePicURL\",\"name\":\"同步文件URL地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下载文件失败\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"解析文件失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"设备同步图片状态值\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"同步人脸库图片\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QuerySyncPicSchedule\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸库组ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Rate\",\"name\":\"人脸图布控百分比\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询人脸布控进度\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAddedUserInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸库组ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"查询添加用户信息的布控状态\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StoreID\",\"name\":\"人脸布控文件storeID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"StoreID\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"FileName\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"URL\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Type\",\"name\":\"类型\",\"paraOrder\":2}],\"required\":true,\"serviceName\":\"查询布控成功的人脸图\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"OnMatchThreshOld\",\"name\":\"人脸比对成功阈值\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FaceSetMD5Sign\",\"name\":\"人脸库MD5签名\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FaceSetID\",\"name\":\"人脸库ID\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FaceSetSize\",\"name\":\"当前人脸库大小\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":65},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"FaceSetAlgorithmVersion\",\"name\":\"人脸库算法版本\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"200000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FaceSetPicStoreAbility\",\"name\":\"人脸库图片存储能力\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"人脸算法SDK需授权\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"NeedAuthVerifySDK\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PackageName\",\"name\":\"包名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ClientID\",\"name\":\"设备唯一标识\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PublicKey\",\"name\":\"包公钥信息\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Token\",\"name\":\"设备Token值\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceEncrypt\",\"name\":\"设备加密信息唯一标识\",\"paraOrder\":4}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"人脸比对事件上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnMatched\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserPicID\",\"name\":\"用户人脸图ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FaceMatchedPicStorID\",\"name\":\"人脸比对图片StorID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Similarity\",\"name\":\"人脸比对相似度结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸组ID\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserInfo\",\"name\":\"人脸ID相关属性\",\"paraOrder\":4}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"人脸检测事件上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnDetect\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StoreID\",\"name\":\"人脸检测图StoreID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸组ID\",\"paraOrder\":1}],\"required\":true}]}'),(1698826367,0,'497705985','ParkArea','社区车行停车区域','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"AddVehicleInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"免费\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"本地系统收费\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云端系统收费\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"本地或云端收费\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PayType\",\"name\":\"付费渠道\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StartExpireTime\",\"name\":\"起始有效时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndExpireTime\",\"name\":\"截止有效时间\",\"paraOrder\":5}],\"outputParams\":[],\"required\":true,\"serviceName\":\"添加车辆信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteVehicleInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"删除车辆信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ModifyVehicleInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"免费\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"本地系统收费\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云端系统收费\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"本地或云端收费\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PayType\",\"name\":\"付费渠道\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StartExpireTime\",\"name\":\"起始有效时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndExpireTime\",\"name\":\"截止有效时间\",\"paraOrder\":5}],\"outputParams\":[],\"required\":true,\"serviceName\":\"修改车辆信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetVehicleInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"免费\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"本地系统收费\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云端系统收费\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"本地或云端收费\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PayType\",\"name\":\"付费渠道\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StartExpireTime\",\"name\":\"起始有效时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EndExpireTime\",\"name\":\"截止有效时间\",\"paraOrder\":5}],\"required\":true,\"serviceName\":\"获取车辆信息\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetVehicleList\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"VehicleListUrl\",\"name\":\"车辆信息列表Url\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"获取车辆信息列表\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"CorrectPlateNumber\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"正确车牌号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumberImageUrl\",\"name\":\"错误车牌号照片Url\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"校正车牌\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"LockVehicle\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StartExpireTime\",\"name\":\"起始有效时间\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndExpireTime\",\"name\":\"截止有效时间\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"锁定车辆\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"UnlockVehicle\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"接触车辆锁定\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TotalParkSpace\",\"name\":\"车位总数\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"999999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RemainParkSpace\",\"name\":\"空闲车位数量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"本地系统新增车辆信息\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AddVehicleInfoFromLocal\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StartExpireTime\",\"name\":\"起始有效时间\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EndExpireTime\",\"name\":\"截止有效时间\",\"paraOrder\":3}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"本地系统删除车辆信息\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DeleteVehicleInfoFromLocal\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":1}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"本地系统修改车辆信息\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ModifyVehicleInfoFromLocal\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserID\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserName\",\"name\":\"用户姓名\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PlateNumber\",\"name\":\"车牌号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"免费\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"本地系统收费\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云端系统收费\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"本地或云端收费\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PayType\",\"name\":\"付费渠道\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StartExpireTime\",\"name\":\"起始有效时间\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EndExpireTime\",\"name\":\"截止有效时间\",\"paraOrder\":5}],\"required\":true}]}'),(1698826367,0,'49816489','VideoIntercomDoor','可视对讲机门口机','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncGroupIdAndRoomId\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"groupRoomMappingFileUrl\",\"name\":\"映射关系文件url\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"同步组号和房间号\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"NotifyPhoneNumberCheckResult\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"phoneNumber\",\"name\":\"手机号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"checkResult\",\"name\":\"校验结果\",\"paraOrder\":1}],\"outputParams\":[],\"required\":true,\"serviceName\":\"下发手机号校验结果\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncSipNumber\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"sipNumber\",\"name\":\"sipNumber\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"password\",\"name\":\"密码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":40,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"sipServerAddr\",\"name\":\"sipServer地址\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":5,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"sipServerPort\",\"name\":\"sipServer端口号\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"颁发SipNumber\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"querySipNumber\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"sipNumber\",\"name\":\"sipNumber\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"查询SipNumber\"}],\"properties\":[],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"校验手机号\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"checkPhoneNumber\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"phoneNumber\",\"name\":\"手机号\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"源类型为云对讲时,号码为SipNumber。源类型为固话对讲时,号码为手机号\",\"eventName\":\"开门事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"doorOpenEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"云对讲\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"固话对讲\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"sourceType\",\"name\":\"源类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"number\",\"name\":\"源号码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"extInfo\",\"name\":\"附加信息\",\"paraOrder\":2}],\"required\":true}]}'),(1698826367,0,'508206400','AirPurifier','空气净化器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PM25\",\"name\":\"PM2_5\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"优\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"良\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"轻度污染\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"中度污染\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"重度污染\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"严重污染\",\"value\":6}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PM25Level\",\"name\":\"PM2_5级别\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"静音档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindSpeed\",\"name\":\"风速\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"5000\",\"min\":\"300\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"百万分率\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CO2\",\"name\":\"二氧化碳浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"当前湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要更换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_1\",\"name\":\"滤芯寿命状态_1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要替换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_2\",\"name\":\"滤芯寿命状态_2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要更换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_3\",\"name\":\"滤芯寿命状态_3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"需要更换\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"FilterStatus_4\",\"name\":\"滤芯寿命状态_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"3\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"HCHO\",\"name\":\"甲醛浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Humidified\",\"name\":\"加湿开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_1\",\"name\":\"滤芯剩余寿命时间_1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_2\",\"name\":\"滤芯剩余寿命时间_2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_3\",\"name\":\"滤芯剩余寿命时间_3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"FilterLifeTimeDays_4\",\"name\":\"滤芯剩余寿命时间_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_1\",\"name\":\"滤芯剩余寿命百分比_1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_2\",\"name\":\"滤芯剩余寿命百分比_2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_3\",\"name\":\"滤芯剩余寿命百分比_3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"FilterLifeTimePercent_4\",\"name\":\"滤芯剩余寿命百分比_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Runtime_1\",\"name\":\"运行时间_1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Runtime_2\",\"name\":\"运行时间_2\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Runtime_3\",\"name\":\"运行时间_3\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Runtime_4\",\"name\":\"运行时间_4\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IonsSwitch\",\"name\":\"离子团开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"3\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TVOC\",\"name\":\"TVOC_VOC浓度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"缺水\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WaterShortageStatus\",\"name\":\"加湿缺水状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"手动\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[30].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致。\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'510888261','EnvironmentalPerception','环境感知','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'529695140','IB_Lock ','锁','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Lock_status\",\"name\":\"门锁状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"Lock_control\",\"name\":\"门锁控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'532419099','IRRemoteController','红外遥控器','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'550468771','MultiAccessControl','多功能门禁','{\"services\":[{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncFacePictures\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FacePicURL\",\"name\":\"同步文件URL地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下载文件失败\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"解析文件失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"设备同步图片状态值\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"人脸-同步人脸库图片\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QuerySyncPicSchedule\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸库组ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":16,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Rate\",\"name\":\"人脸图布控百分比\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"人脸-查询人脸布控进度\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryAddedUserInfo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸库组ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StoreID\",\"name\":\"人脸布控文件storeID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"StoreID\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"FileName\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"URL\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Type\",\"name\":\"类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"查询添加用户信息的布控状态\",\"paraOrder\":2}],\"required\":false,\"serviceName\":\"人脸-查询布控成功的人脸图\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"syncPermissions\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"permissionUrl\",\"name\":\"权限url\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"通用-同步门禁权限\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RemoteControl\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Command\",\"name\":\"控制指令\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Params\",\"name\":\"控制参数\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"通用-远程控制\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"remoteOpen\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"通用-远程开门\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"NotifyPhoneNumberCheckResult\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"phoneNumber\",\"name\":\"手机号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"失败\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"checkResult\",\"name\":\"校验结果\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"可视对讲-下发手机号校验结果\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncSipNumber\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"sipNumber\",\"name\":\"sipNumber\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"password\",\"name\":\"密码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":5},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"sipServerPort\",\"name\":\"sipServer端口号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":40},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"sipServerAddr\",\"name\":\"sipServer地址\",\"paraOrder\":3}],\"outputParams\":[],\"required\":false,\"serviceName\":\"可视对讲-颁发SipNumber\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SyncGroupIdAndRoomId\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"groupRoomMappingFileUrl\",\"name\":\"映射关系文件url\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"可视对讲-同步组号和房间号\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"querySipNumber\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"sipNumber\",\"name\":\"sipNumber\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"可视对讲_查询SipNumber\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"人脸2.0(不推荐)\",\"identifier\":\"QueryUserData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventTime\",\"name\":\"用户信息事件时间戳\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"TEXT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FacePicList\",\"name\":\"图片列表\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"图片Md5\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.services[10].outputParams[3].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"FaceMd5\",\"name\":\"特征列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"算法Id\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":32},\"dataSpecs\":{\"$ref\":\"$.services[10].outputParams[3].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlgorithmId\",\"name\":\"特征列表\"}],\"dataType\":\"ARRAY\",\"size\":100},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FeatureList\",\"name\":\"特征列表\",\"paraOrder\":3}],\"required\":false,\"serviceName\":\"人脸-查询用户是否存在\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"人脸2.0(不推荐)\",\"identifier\":\"SyncFaceData\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FaceDataUrl\",\"name\":\"人脸数据URL地址\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"人脸-同步人脸数据\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SendOssStsToken\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Credentials\",\"name\":\"加密的访问凭证\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BucketName\",\"name\":\"OSSbucket名称\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndPoint\",\"name\":\"OSS的EndPoint名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"ObjectName\",\"name\":\"OSS存储空间名称\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"进行中\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Status\",\"name\":\"OssStsToken下发状态\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"下发OssStsToken\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"用于人脸特征下发,请求参数URL是特征文件。每批次最大100个人脸特征。\\n基于人脸门禁1.0物模型\",\"identifier\":\"SyncFaceFeatures\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FacePicFeaturesURL\",\"name\":\"同步特征文件URL地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"布控中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下载文件失败\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"解析文件失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncPicStatus\",\"name\":\"设备同步图片状态值\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"人脸-人脸特征下发\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"直接查询设备上的人脸权限数,由设备直接返回,不经过SDK统计\",\"identifier\":\"QueryFacePermTotal\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FacePermTotal\",\"name\":\"当前人脸库权限总数\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"人脸-查询设备上人脸权限总数\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"ExtInfo\",\"name\":\"通用-扩展信息\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"加密二维码\",\"identifier\":\"RSAPublicKey\",\"name\":\"通用-RSA公钥\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"description\":\"用于人脸特征下发,标识设备端的算法版本\\n基于人脸门禁1.0物模型\",\"identifier\":\"FaceAlgorithmVersion\",\"name\":\"人脸算法版本\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"description\":\"用于人脸特征下发,基于人脸门禁1.0物模型\",\"identifier\":\"FirmwareVersion\",\"name\":\"设备固件版本\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"支持\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"不支持\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"用于人脸特征下发,基于人脸门禁1.0物模型\\n设备级开关\",\"identifier\":\"SupportFaceFeature\",\"name\":\"支持人脸特征下发\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"人脸1.0 - 上报可识别人脸事件\",\"eventName\":\"人脸-人脸比对事件上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnMatched\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserPicID\",\"name\":\"用户人脸图ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FaceMatchedPicStorID\",\"name\":\"人脸比对图片StorID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Similarity\",\"name\":\"人脸比对相似度结果\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserInfo\",\"name\":\"人脸ID相关属性\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸组ID\",\"paraOrder\":4}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"通用-通行事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"passEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"10000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"code\",\"name\":\"通行结果\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"message\",\"name\":\"结果说明\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"type\",\"name\":\"认证类型\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"content\",\"name\":\"认证内容\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"extInfo\",\"name\":\"扩展信息\",\"paraOrder\":4}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"通用-报警事件\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"alarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"alarmType\",\"name\":\"报警类型\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"可视对讲-开门事件\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"doorOpenEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"云对讲\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"固话对讲\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"sourceType\",\"name\":\"源类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"number\",\"name\":\"源号码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"extInfo\",\"name\":\"附加信息\",\"paraOrder\":2}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"可视对讲-校验手机号\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"checkPhoneNumber\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"phoneNumber\",\"name\":\"手机号\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"人脸2.0(不推荐)\",\"eventName\":\"人脸库同步确认\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnSync\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncTime\",\"name\":\"同步时间戳\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Payload\",\"name\":\"透传参数\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"同步成功\",\"value\":200},{\"dataType\":\"ENUM\",\"name\":\"同步失败重试\",\"value\":201},{\"dataType\":\"ENUM\",\"name\":\"同步失败不重试\",\"value\":202}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"状态码\",\"paraOrder\":2}],\"required\":false},{\"custom\":false,\"description\":\"人脸2.0(不推荐)\",\"eventName\":\"智能告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"IntelligentAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001}],\"childName\":\"告警类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"人形侦测\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"违章停车\",\"value\":10001},{\"dataType\":\"ENUM\",\"name\":\"占道经营\",\"value\":10002},{\"dataType\":\"ENUM\",\"name\":\"摩托车识别\",\"value\":10003},{\"dataType\":\"ENUM\",\"name\":\"行人识别\",\"value\":10004},{\"dataType\":\"ENUM\",\"name\":\"车辆识别\",\"value\":10005},{\"dataType\":\"ENUM\",\"name\":\"店外经营\",\"value\":10006},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":10007},{\"dataType\":\"ENUM\",\"name\":\"人脸检测\",\"value\":10008},{\"dataType\":\"ENUM\",\"name\":\"人车检测\",\"value\":10009},{\"dataType\":\"ENUM\",\"name\":\"摄像头遮挡检测\",\"value\":10010},{\"dataType\":\"ENUM\",\"name\":\"摄像头移动检测\",\"value\":10011},{\"dataType\":\"ENUM\",\"name\":\"重点区域占用\",\"value\":10012},{\"dataType\":\"ENUM\",\"name\":\"区域入侵\",\"value\":11001},{\"dataType\":\"ENUM\",\"name\":\"攀高检测\",\"value\":11002},{\"dataType\":\"ENUM\",\"name\":\"起身检测\",\"value\":11003},{\"dataType\":\"ENUM\",\"name\":\"离岗检测\",\"value\":11004},{\"dataType\":\"ENUM\",\"name\":\"人员逗留\",\"value\":11005},{\"dataType\":\"ENUM\",\"name\":\"拌线入侵\",\"value\":11006},{\"dataType\":\"ENUM\",\"name\":\"逆行检测\",\"value\":11007},{\"dataType\":\"ENUM\",\"name\":\"快速移动\",\"value\":11008},{\"dataType\":\"ENUM\",\"name\":\"物品移动\",\"value\":11009},{\"dataType\":\"ENUM\",\"name\":\"物品遗留\",\"value\":11010},{\"dataType\":\"ENUM\",\"name\":\"人群密度估计\",\"value\":11011},{\"dataType\":\"ENUM\",\"name\":\"人群聚集\",\"value\":11012},{\"dataType\":\"ENUM\",\"name\":\"人群发散\",\"value\":11013},{\"dataType\":\"ENUM\",\"name\":\"剧烈运动\",\"value\":11014},{\"dataType\":\"ENUM\",\"name\":\"跌倒检测\",\"value\":11015},{\"dataType\":\"ENUM\",\"name\":\"口罩识别\",\"value\":11017},{\"dataType\":\"ENUM\",\"name\":\"宠物检测\",\"value\":11018},{\"dataType\":\"ENUM\",\"name\":\"非机动车乱停\",\"value\":12001},{\"dataType\":\"ENUM\",\"name\":\"垃圾暴露\",\"value\":12002},{\"dataType\":\"ENUM\",\"name\":\"沿街晾挂\",\"value\":12003},{\"dataType\":\"ENUM\",\"name\":\"火灾检测\",\"value\":13001},{\"dataType\":\"ENUM\",\"name\":\"消防通道占用\",\"value\":13002},{\"dataType\":\"ENUM\",\"name\":\"吸烟检测\",\"value\":13003},{\"dataType\":\"ENUM\",\"name\":\"客流统计\",\"value\":14001}],\"dataType\":\"STRUCT\",\"identifier\":\"AlarmType\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"图片ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[6].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicID\",\"name\":\"事件列表\"},{\"childDataType\":\"INT\",\"childName\":\"图片大小\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"B\",\"unitName\":\"字节\"},\"dataSpecs\":{\"$ref\":\"$.events[6].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicSize\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"告警时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":64},\"dataSpecs\":{\"$ref\":\"$.events[6].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EventTime\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"告警内容\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.events[6].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Data\",\"name\":\"事件列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventList\",\"name\":\"事件列表\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"人脸2.0(不推荐)\",\"eventName\":\"同步人脸图片失败\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"OnFacePicError\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"SyncTime\",\"name\":\"同步时间戳\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"16200\",\"min\":\"16001\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Code\",\"name\":\"错误码\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"FaceMd5\",\"name\":\"图片MD5值\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"UserId\",\"name\":\"用户ID\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgorithmId\",\"name\":\"算法ID\",\"paraOrder\":4}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"StsToken请求上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OssStsTokenRequest\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"图片文件上传\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"文本文件上传\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"其他类型文件上传\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RequestType\",\"name\":\"请求上传文件类型\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"人脸1.0 - 上报人脸检测(非识别)事件,一般用于陌生人脸上报\",\"eventName\":\"人脸-人脸检测事件上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OnDetect\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"StoreID\",\"name\":\"人脸检测图StoreID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"GroupID\",\"name\":\"人脸组ID\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'558524544','EnvironmentalNoiseMonitor','环境噪音监测','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'560288509','HomeLinkEdgeGateway','全屋边缘网关','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"UnbindDeviceList\",\"name\":\"LCA未配网子设备列表\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'562307570','Seeper','易涝点监测设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'568723993','EmbeddedSteamer','嵌入式电蒸箱','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ChildLockSwitch\",\"name\":\"童锁开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"AppointmentRemainingTime\",\"name\":\"预约剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1440\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"AppointmentTime\",\"name\":\"预约时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WorkTime\",\"name\":\"工作时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PreheatSwitch\",\"name\":\"预热开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"255\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PreheatTemperature\",\"name\":\"预热温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"自动\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PowerLevel\",\"name\":\"功率档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"30\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ProbeTemperature\",\"name\":\"探针温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Weight\",\"name\":\"重量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"230\",\"min\":\"90\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"HeatingTemperature\",\"name\":\"加热温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"230\",\"min\":\"70\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"g\",\"unitName\":\"克\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RemainingWorkTime\",\"name\":\"剩余工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"1\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"WarmDuration\",\"name\":\"保温时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预约中\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"预热中\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"完成\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"结束\",\"value\":7}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PauseSwitch\",\"name\":\"暂停开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地美食\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"云食谱\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RecipeInfo\",\"name\":\"食谱信息\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'570289311','SOCOutlet','SoC插座','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'577126638','WindowLinearActuator','推窗器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关窗\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开窗\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ActuatorOperationMode\",\"name\":\"推窗器操作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ActuatorPosition\",\"name\":\"推窗器位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'614645868','ServoDriver','伺服驱动器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":32},\"dataType\":\"TEXT\",\"identifier\":\"Pnumber\",\"name\":\"产品序列号\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2100000000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"identifier\":\"SRuntime\",\"name\":\"运行时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"identifier\":\"ActIIT\",\"name\":\"电机实际IIT\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"30000\",\"min\":\"-30000\",\"step\":\"1\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"INT\",\"identifier\":\"ActI\",\"name\":\"电机实际电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"30000\",\"min\":\"-30000\",\"step\":\"1\",\"unit\":\"r/min(rpm)\",\"unitName\":\"转每分\"},\"dataType\":\"INT\",\"identifier\":\"ActVel\",\"name\":\"电机实际速度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"StatusWord\",\"name\":\"状态字\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"ErrorCode\",\"name\":\"错误字\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"210000000\",\"min\":\"-210000000\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"ActPos\",\"name\":\"实际位置\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"identifier\":\"DriverTemperature\",\"name\":\"驱动器温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"32767\",\"min\":\"0\",\"step\":\"10\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"ErrorCode_1\",\"name\":\"错误字1\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'618677147','SmartWaterMeter','智能水表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"低电量\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterMeterState\",\"name\":\"水表模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"WaterConsumption\",\"name\":\"用水量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'628691749','BroadcastController','广播主机','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ReceiveEvents\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventID\",\"name\":\"事件编号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventTime\",\"name\":\"事件发生时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventCode\",\"name\":\"事件类型编号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":8},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EventPos\",\"name\":\"事件位置编号\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"执行成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"执行失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预留\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReturnCode\",\"name\":\"返回码\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"事件触发\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'630966711','CircuitBreaker','断路器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"30\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CircuitBreakerAddress\",\"name\":\"断路器地址\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"LineName\",\"name\":\"线路名称\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"分闸\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"合闸\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"CircuitBreakerReclosingState\",\"name\":\"断路器分合闸状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"能\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"不能\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"CircuitBreakerRemoteControlEnable\",\"name\":\"断路器远程控制使能\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"220伏断路器\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"380伏断路器\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CircuitBreakerType\",\"name\":\"断路器类型\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"4294967\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LineElectricityQuantity\",\"name\":\"线路用电电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"65535\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LinePowerThreshold\",\"name\":\"线路用电功率阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"655.35\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LineCurrentThreshold\",\"name\":\"线路用电电流阈值\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"655.35\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LineCurrent\",\"name\":\"线路电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"6553.5\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"mA\",\"unitName\":\"毫安\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LineLeakage\",\"name\":\"线路漏电流\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CircuitBreakerInternalTemperature\",\"name\":\"断路器内部温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"600\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LineVotage\",\"name\":\"线路电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"65535\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LinePower\",\"name\":\"线路功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LineTemperature\",\"name\":\"线路温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LinePowerFactor\",\"name\":\"线路功率因数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'631281185','IntelligentBroadcast','智能广播','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopPlay\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"执行成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"执行失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"预留\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReturnCode\",\"name\":\"返回码\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"停止功放播放\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"断线\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"空闲\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"播放中\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PAState\",\"name\":\"功放状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PlayVolume\",\"name\":\"功放音量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"PlayMediaFile\",\"name\":\"播放媒体文件\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"PlayTTSText\",\"name\":\"播放TTS文本\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[4].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'637385510','PressurePump','加压泵','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'662491773','ElectricBlanket','电热毯','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"70\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"70\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LeftCurrentTemperature\",\"name\":\"当前温度左\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"70\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RightCurrentTemperature\",\"name\":\"当前温度右\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"档位1\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"档位2\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"档位3\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"档位4\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"档位5\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"档位6\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"档位7\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"档位8\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"档位9\",\"value\":9}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HeatLevel\",\"name\":\"加热档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"档位1\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"档位2\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"档位3\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"档位4\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"档位5\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"档位6\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"档位7\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"档位8\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"档位9\",\"value\":9}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LeftHeatLevel\",\"name\":\"加热档位左\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"档位1\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"档位2\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"档位3\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"档位4\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"档位5\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"档位6\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"档位7\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"档位8\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"档位9\",\"value\":9}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RightHeatLevel\",\"name\":\"加热档位右\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LeftPowerSwitch\",\"name\":\"电源开关左\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"RightPowerSwitch\",\"name\":\"电源开关右\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"升温\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"睡眠\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkMode\",\"name\":\"工作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"升温\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"睡眠\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LeftWorkMode\",\"name\":\"工作模式左\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"升温\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"睡眠\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RightWorkMode\",\"name\":\"工作模式右\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'685149721','FireCannon','智能消防炮','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"经度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"纬度\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"海拔\"}],\"dataType\":\"STRUCT\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WorkSwitch\",\"name\":\"运行开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'689027136','Collision data collection','行车碰撞数据采集','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeployAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoURL\",\"name\":\"算法模型文件URL\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法模型文件名\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":2}],\"outputParams\":[],\"required\":true,\"serviceName\":\"部署算法模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"VideoSrcURL\",\"name\":\"视频源URL\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"算法任务号\",\"paraOrder\":3}],\"outputParams\":[],\"required\":true,\"serviceName\":\"启动算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"调用者根据StoreID获取设备上已部署的算法名称、算法版本信息。\",\"identifier\":\"QueryAlgorithmList\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询已部署的所有算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryDeployStatus\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"部署中\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"部署完毕\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeployDone\",\"name\":\"是否部署完毕\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeployRate\",\"name\":\"部署进度\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":3}],\"required\":true,\"serviceName\":\"查询部署状态\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopAlgorithm\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryExecutingAlgorithm\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"查询正在运行的算法\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"DeleteSingleAlgo\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":1}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"删除结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"删除指定算法模型\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ClearAllAlgorithms\",\"inputParams\":[],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"清除结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"清除所有算法\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"设备连接LP后,上报平台属性(X86、Linux、Android等),服务端根据此属性选择对应平台的算法进行部署。\",\"identifier\":\"Platform\",\"name\":\"上报平台属性\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"单条算法执行结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ExicutingAlgorithm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoVersion\",\"name\":\"算法版本\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"执行结果\",\"paraOrder\":3}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"单条算法部署结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DeployedAlorithm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoName\",\"name\":\"算法名称\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlgoVweision\",\"name\":\"算法版本\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"部署结果\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"单条算法停止结果\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"StopAlgorithm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TaskID\",\"name\":\"任务号\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"result\",\"name\":\"算法停止结果\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'693600982','ElectricWaterHeater','电热水器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"75\",\"min\":\"0\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"全日制\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"夜电\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HeatMode\",\"name\":\"加热模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"HotWaterVolumeStatus\",\"name\":\"热水量状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"75\",\"min\":\"30\",\"precise\":7,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"半胆\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"全胆\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"速热\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PowerMode\",\"name\":\"功耗模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"EnergySavingSwitch\",\"name\":\"节能开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未用水\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"用水中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WateringStatus\",\"name\":\"用水状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"加热中\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"保温中\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WorkState\",\"name\":\"工作状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"HeatTimeLeft\",\"name\":\"加热剩余时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"4000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentPower\",\"name\":\"当前功率\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"PowerConsumption\",\"name\":\"功耗\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[12].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'708608142','Health','个护健康','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'714315502','VideoDoorbell','可视门铃','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"StartVod\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FileName\",\"name\":\"录像名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":5}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始录像文件观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"StartVodByTime\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":3},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":6}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始录像按时间观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"StopVod\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止录像观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"TriggerAudioPlay\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AudioUrl\",\"name\":\"音频地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"MP3\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"WAVE\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"AAC\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"Ogg\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"AMR\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AudioType\",\"name\":\"音频格式\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"触发设备播放音频\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":512,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"辅码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"码流类型\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"60\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PreTime\",\"name\":\"提前推流时间\",\"paraOrder\":5}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"设备不支持\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备资源不足\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"推流连接失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"推流结果\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"开始直播\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"StopPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"辅码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"码流类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止直播\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"语音对讲启动指令\",\"identifier\":\"StartVoiceIntercom\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"IntercomUrl\",\"name\":\"对讲地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255,\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Key\",\"name\":\"加解密秘钥\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加解密类型\",\"paraOrder\":2}],\"outputParams\":[],\"required\":true,\"serviceName\":\"开始语音对讲\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopVoiceIntercom\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止语音对讲\"},{\"callType\":\"ASYNC\",\"custom\":false,\"identifier\":\"Reboot\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"重启\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryRecordList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"QuerySize\",\"name\":\"查询数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"所有录像\",\"value\":99}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"录像类型\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"录像名\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[9].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"FileName\",\"name\":\"录像列表\"},{\"childDataType\":\"INT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[9].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BeginTime\",\"name\":\"录像列表\"},{\"childDataType\":\"INT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[9].outputParams[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"录像列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"文件大小\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.services[9].outputParams[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Size\",\"name\":\"录像列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"childName\":\"录像类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"Type\",\"name\":\"录像列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RecordList\",\"name\":\"录像列表\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"查询录像文件列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryRecordTimeList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"QuerySize\",\"name\":\"查询数量\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"所有录像\",\"value\":99}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"录像类型\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"开始时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"unit\":\"″\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[10].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BeginTime\",\"name\":\"时间列表\"},{\"childDataType\":\"INT\",\"childName\":\"结束时间\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"unit\":\"s\",\"unitName\":\"秒\"},\"dataSpecs\":{\"$ref\":\"$.services[10].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EndTime\",\"name\":\"时间列表\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"childName\":\"录像类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"Type\",\"name\":\"时间列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"TimeList\",\"name\":\"时间列表\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"查询录像时间列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"TriggerPicCapture\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UploadUrl\",\"name\":\"上传地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PicID\",\"name\":\"图片ID\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"触发设备抓图\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"PlayQuickResponseRing\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RingType\",\"name\":\"铃声类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"播放快捷回复声音\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartP2PStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StunUrl\",\"name\":\"STUN服务地址\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SignalUrl\",\"name\":\"信号服务地址\",\"paraOrder\":1}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始P2P直播\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低频\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"中频\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高频\",\"value\":2}],\"dataType\":\"ENUM\",\"identifier\":\"AlarmFrequencyLevel\",\"name\":\"报警频率\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不支持\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"支持\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"PreRecordSupport\",\"name\":\"是否支持预录\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"铃声类型\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BellType\",\"name\":\"内置铃声\"},{\"childDataType\":\"TEXT\",\"childName\":\"铃声名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[2].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"BellName\",\"name\":\"内置铃声\"}],\"dataType\":\"ARRAY\",\"size\":10},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"Ringtone\",\"name\":\"内置铃声\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"不支持\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"支持\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"DirectUploadSupport\",\"name\":\"是否支持直存\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"ForcedAlarmSwitch\",\"name\":\"强拆报警开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"VideoMessageSwitch\",\"name\":\"视频留言开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"1000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"identifier\":\"ShootInterval\",\"name\":\"拍摄间隔\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"identifier\":\"MaxRecordTime\",\"name\":\"最大录像时长\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"identifier\":\"DelayedRecord\",\"name\":\"延迟录像\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"10000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"cm\",\"unitName\":\"厘米\"},\"dataType\":\"INT\",\"identifier\":\"DetectDistance\",\"name\":\"侦测距离\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"InfraredSwitch\",\"name\":\"红外开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"WDRSwitch\",\"name\":\"宽动态开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"identifier\":\"VolumeSize\",\"name\":\"音量大小\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"identifier\":\"PowerSize\",\"name\":\"电量大小\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"低功耗状态\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"唤醒状态\",\"value\":1}],\"childName\":\"低功耗状态\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低功耗状态\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"唤醒状态\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"LowPowerStatus\",\"name\":\"低功耗模式\"},{\"childDataType\":\"TEXT\",\"childName\":\"唤醒数据\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[14].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"WakeUpData\",\"name\":\"低功耗模式\"}],\"dataType\":\"STRUCT\",\"identifier\":\"LowPowerMode\",\"name\":\"低功耗模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"BellType\",\"name\":\"内置铃声设置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"INT\",\"childName\":\"铃声类型\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"unit\":\"\",\"unitName\":\"无\"},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RingType\",\"name\":\"快捷回复声音\"},{\"childDataType\":\"TEXT\",\"childName\":\"铃声名称\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.properties[16].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"RingName\",\"name\":\"快捷回复声音\"}],\"dataType\":\"ARRAY\",\"size\":10},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"QuickResponseRing\",\"name\":\"快捷回复声音\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"identifier\":\"IPAddress\",\"name\":\"IP地址\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"identifier\":\"MacAddress\",\"name\":\"MAC地址\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"identifier\":\"WifiName\",\"name\":\"WIFI名称\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"identifier\":\"WifiSignal\",\"name\":\"WIFI强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StreamVideoQuality\",\"name\":\"主码流视频质量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"ENUM\",\"identifier\":\"AlarmSwitch\",\"name\":\"报警开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":5}],\"dataType\":\"ENUM\",\"identifier\":\"MotionDetectSensitivity\",\"name\":\"移动侦测灵敏度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"MB\",\"unitName\":\"兆字节\"},\"dataType\":\"DOUBLE\",\"identifier\":\"StorageTotalCapacity\",\"name\":\"总存储空间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"identifier\":\"StorageRemainCapacity\",\"name\":\"剩余存储空间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"白天模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"夜晚模式\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"自动模式\",\"value\":2}],\"dataType\":\"ENUM\",\"identifier\":\"DayNightMode\",\"name\":\"日夜模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未插卡\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"未格式化\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"正在格式化\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"StorageStatus\",\"name\":\"存储介质状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":256},\"dataType\":\"TEXT\",\"description\":\"设备生产商的设备编号\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MotionDetectSwitch\",\"name\":\"移动侦测开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LowPowerSwitch\",\"name\":\"低功耗开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"INT\",\"customFlag\":true,\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"EncryptTypeList\",\"name\":\"加密类型列表\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"标准模式\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低功耗模式\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PowerMode\",\"name\":\"功耗模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"WakeUpData\",\"name\":\"唤醒数据\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"智能告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"CustomAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"强拆\",\"value\":60001},{\"dataType\":\"ENUM\",\"name\":\"按门铃\",\"value\":60002},{\"dataType\":\"ENUM\",\"name\":\"有人经过\",\"value\":60003},{\"dataType\":\"ENUM\",\"name\":\"有人停留\",\"value\":60004},{\"dataType\":\"ENUM\",\"name\":\"视频留言\",\"value\":60005},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":60006}],\"childName\":\"告警类型\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"强拆\",\"value\":60001},{\"dataType\":\"ENUM\",\"name\":\"按门铃\",\"value\":60002},{\"dataType\":\"ENUM\",\"name\":\"有人经过\",\"value\":60003},{\"dataType\":\"ENUM\",\"name\":\"有人停留\",\"value\":60004},{\"dataType\":\"ENUM\",\"name\":\"视频留言\",\"value\":60005},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":60006}],\"dataType\":\"STRUCT\",\"identifier\":\"AlarmType\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"图片ID\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.events[0].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicID\",\"name\":\"事件列表\"},{\"childDataType\":\"INT\",\"childName\":\"图片大小\",\"childSpecsDTO\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"1\",\"precise\":0,\"unit\":\"B\",\"unitName\":\"字节\"},\"dataSpecs\":{\"$ref\":\"$.events[0].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"AlarmPicSize\",\"name\":\"事件列表\"},{\"childDataType\":\"TEXT\",\"childName\":\"告警内容\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.events[0].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Data\",\"name\":\"事件列表\"},{\"childDataType\":\"DATE\",\"childName\":\"告警时间\",\"childSpecsDTO\":{\"dataType\":\"DATE\",\"length\":2048},\"dataSpecs\":{\"$ref\":\"$.events[0].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"EventTime\",\"name\":\"事件列表\"}],\"dataType\":\"ARRAY\",\"size\":128},\"dataType\":\"ARRAY\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"EventList\",\"name\":\"事件列表\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"侦测报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AlarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"强拆\",\"value\":60001},{\"dataType\":\"ENUM\",\"name\":\"按门铃\",\"value\":60002},{\"dataType\":\"ENUM\",\"name\":\"有人经过\",\"value\":60003},{\"dataType\":\"ENUM\",\"name\":\"有人停留\",\"value\":60004},{\"dataType\":\"ENUM\",\"name\":\"视频留言\",\"value\":60005},{\"dataType\":\"ENUM\",\"name\":\"人脸识别\",\"value\":60006},{\"dataType\":\"ENUM\",\"name\":\"门口有变动\",\"value\":60007}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"告警类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmPicID\",\"name\":\"报警抓图ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":1024},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Data\",\"name\":\"告警内容\",\"paraOrder\":2}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"电量低告警\",\"eventType\":\"ALERT_EVENT_TYPE\",\"identifier\":\"LowBatteyEvent\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"BatteryLevel\",\"name\":\"电量水平\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'727437285','VOCSensor','VOC感应器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"GasConcentration\",\"name\":\"气体浓度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"120\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'730017077','Networking','网络设备','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'735931919','Lamp','灯控开关','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopCountdown\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"停止倒计时\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"4000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentPower\",\"name\":\"当前功率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"16\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Current\",\"name\":\"当前电流\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'738541127','IntelligentLitterBox','智能猫砂盆','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"NightLightSwitch\",\"name\":\"小夜灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"空闲\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"清理\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"清空\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"重置\",\"value\":3}],\"dataType\":\"ENUM\",\"identifier\":\"RunningState\",\"name\":\"运行状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'739294409','IntelligentCurtain','智能窗帘','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurtainPosition\",\"name\":\"窗帘打开位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"反转\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"校准中\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CurtainWorkState\",\"name\":\"窗帘工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"关窗帘\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开窗帘\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"暂停窗帘\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CurtainOperation\",\"name\":\"窗帘操作模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'740988456','Curtain_motor','窗帘电机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"pt\",\"name\":\"打开百分比\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"cts\",\"name\":\"窗帘伸缩\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'74266661','Airer','晾衣杆','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"GetStates\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"获取设备状态\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Getweathers\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"获取天气信息参数\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LightSwitch\",\"name\":\"照明开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"AirDryingSwitch\",\"name\":\"风干开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DryingSwitch\",\"name\":\"烘干开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"DisinfectionSwitch\",\"name\":\"消毒开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"停止\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"上升\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下降\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MotorControlMode\",\"name\":\"晾杆控制模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IonsSwitch\",\"name\":\"负离子开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"-30\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Temperature\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"立春\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"白露\",\"value\":14},{\"dataType\":\"ENUM\",\"name\":\"秋分\",\"value\":15},{\"dataType\":\"ENUM\",\"name\":\"寒露\",\"value\":16},{\"dataType\":\"ENUM\",\"name\":\"霜降\",\"value\":17},{\"dataType\":\"ENUM\",\"name\":\"立冬\",\"value\":18},{\"dataType\":\"ENUM\",\"name\":\"小雪\",\"value\":19},{\"dataType\":\"ENUM\",\"name\":\"大雪\",\"value\":20},{\"dataType\":\"ENUM\",\"name\":\"冬至\",\"value\":21},{\"dataType\":\"ENUM\",\"name\":\"小寒\",\"value\":22},{\"dataType\":\"ENUM\",\"name\":\"大寒\",\"value\":23},{\"dataType\":\"ENUM\",\"name\":\"处暑\",\"value\":13},{\"dataType\":\"ENUM\",\"name\":\"立秋\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"大暑\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"雨水\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"惊蛰\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"春分\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"清明\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"谷雨\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"立夏\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"小满\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"芒种\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"夏至\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"小暑\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"不存在\",\"value\":99}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SolarTerms\",\"name\":\"节气\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"晴\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"小雪\",\"value\":14},{\"dataType\":\"ENUM\",\"name\":\"中雪\",\"value\":15},{\"dataType\":\"ENUM\",\"name\":\"大雪\",\"value\":16},{\"dataType\":\"ENUM\",\"name\":\"暴雪\",\"value\":17},{\"dataType\":\"ENUM\",\"name\":\"雾\",\"value\":18},{\"dataType\":\"ENUM\",\"name\":\"冻雨\",\"value\":19},{\"dataType\":\"ENUM\",\"name\":\"沙尘暴\",\"value\":20},{\"dataType\":\"ENUM\",\"name\":\"小到中雨\",\"value\":21},{\"dataType\":\"ENUM\",\"name\":\"中到大雨\",\"value\":22},{\"dataType\":\"ENUM\",\"name\":\"大到暴雨\",\"value\":23},{\"dataType\":\"ENUM\",\"name\":\"阵雪\",\"value\":13},{\"dataType\":\"ENUM\",\"name\":\"特大暴雨\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"大暴雨\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"多云\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"阴\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"阵雨\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"雷阵雨\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"雷阵雨伴有冰雹\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"雨夹雪\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"小雨\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"中雨\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"大雨\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"暴雨\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"暴雨到大暴雨\",\"value\":24}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Weather\",\"name\":\"天气现象\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无风\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"软风\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"轻风\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"微风\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"和风\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"轻劲风\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"强风\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"疾风\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"大风\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"烈风\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"狂风\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"暴风\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"飓风\",\"value\":12},{\"dataType\":\"ENUM\",\"name\":\"龙卷风\",\"value\":13}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WindLevel\",\"name\":\"风力等级\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"PM25\",\"name\":\"PM25\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"Humidity\",\"name\":\"湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"30\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"DisinfectionRemainingTime\",\"name\":\"消毒剩余时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"180\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"AirDryingRemainingTime\",\"name\":\"风干剩余时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"120\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"DryingRemainingTime\",\"name\":\"烘干剩余时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"120\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"IonsRemainingTime\",\"name\":\"负离子剩余时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"180\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LightRemainingTime\",\"name\":\"照明剩余时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无此功能\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"最上面\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中间\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"最下面\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Position\",\"name\":\"衣杆位置\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"获取状态\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"GetState\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"获取天气信息\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"GetWeather\",\"outputData\":[],\"required\":false}]}'),(1698826367,0,'746413772','EnvironmentMonitor','环境监测设备','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SoundModuleStatus\",\"name\":\"声音模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"CO2ModuleStatus\",\"name\":\"二氧化碳模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"500.0\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"毫克每平方米\"},\"dataType\":\"FLOAT\",\"description\":\"Cube环境监测设备\",\"identifier\":\"PM25Value\",\"name\":\"PM25浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"PM25ModuleStatus\",\"name\":\"PM25模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"Lux\",\"unitName\":\"卢克斯\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"LightLuxValue\",\"name\":\"光照度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LightModuleStatus\",\"name\":\"光照度模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"ppm\",\"unitName\":\"百万分率\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CO2Value\",\"name\":\"二氧化碳浓度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"55.0\",\"min\":\"-40.0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"500\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"dB\",\"unitName\":\"分贝\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"SoundDecibelValue\",\"name\":\"声音分贝值\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"RelativeHumidity\",\"name\":\"湿度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HumitureModuleStatus\",\"name\":\"模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"FLOAT\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"FLOAT\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"FLOAT\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"FLOAT\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"FLOAT\",\"childName\":\"高度\",\"childSpecsDTO\":{\"dataType\":\"FLOAT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[11].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'755397846','Cateyecamera','猫眼摄像头','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"FormatStorageMedium\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"格式化存储介质\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RestoreFactorySettings\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"恢复出厂设置\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"Restart\",\"inputParams\":[],\"outputParams\":[],\"required\":true,\"serviceName\":\"重新启动\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"TriggerPicCapture\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UploadUrl\",\"name\":\"上传地址\",\"paraOrder\":0}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":128},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"PicID\",\"name\":\"图片ID\",\"paraOrder\":0}],\"required\":true,\"serviceName\":\"触发设备抓图\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"副码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"码流类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"6\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PreTime\",\"name\":\"提前推流时间\",\"paraOrder\":4}],\"outputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"成功\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"设备不支持\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备资源不足\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"推流连接失败\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Result\",\"name\":\"推流结果\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"开始直播\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopPushStreaming\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"主码流\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"副码流\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"StreamType\",\"name\":\"码流类型\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止直播\"},{\"callType\":\"SYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"QueryRecordList\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"所有类型\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"主动录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"报警录像\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"计划录像\",\"value\":3}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Type\",\"name\":\"录像类型\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"QuerySize\",\"name\":\"查询数量\",\"paraOrder\":3}],\"outputParams\":[],\"required\":false,\"serviceName\":\"查询录像列表\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVod\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"FileName\",\"name\":\"录像名\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":2},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":5}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始录像观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopVod\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止录像观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartRecord\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"本地录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"云端录像\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RecordType\",\"name\":\"录像方式\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RecordDuration\",\"name\":\"录制时长\",\"paraOrder\":1},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"20\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PreRecordDuration\",\"name\":\"预录时长\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"UploadUrl\",\"name\":\"上传地址\",\"paraOrder\":3}],\"outputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"RecordID\",\"name\":\"录像ID\",\"paraOrder\":0}],\"required\":false,\"serviceName\":\"开始录像\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"stopRecord\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"RecordID\",\"name\":\"录像ID\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止录像\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVodByTime\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9999\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptType\",\"name\":\"加密类型\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EncryptKey\",\"name\":\"密钥\",\"paraOrder\":1},{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"RTMP\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"RTSP\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"Scheme\",\"name\":\"流协议\",\"paraOrder\":2},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"PushUrl\",\"name\":\"推流地址\",\"paraOrder\":3},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SessionID\",\"name\":\"会话ID\",\"paraOrder\":4},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"BeginTime\",\"name\":\"开始时间\",\"paraOrder\":5},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"EndTime\",\"name\":\"结束时间\",\"paraOrder\":6}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始录像按时间观看\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StartVoiceIntercom\",\"inputParams\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"IntercomUrl\",\"name\":\"对讲地址\",\"paraOrder\":0}],\"outputParams\":[],\"required\":false,\"serviceName\":\"开始语音对讲\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"StopVoiceIntercom\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"停止语音对讲\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"不录像\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"事件录像\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"连续录像\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StorageRecordMode\",\"name\":\"存储介质录像模式\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"MB\",\"unitName\":\"兆字节\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"StorageTotalCapacity\",\"name\":\"总存储空间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"MicSwitch\",\"name\":\"麦克风开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SubStreamVideoQuality\",\"name\":\"辅码流视频质量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"流畅\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"标清\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"高清\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"StreamVideoQuality\",\"name\":\"主码流视频质量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"StayAlarmSwitch\",\"name\":\"逗留报警开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低灵敏度\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"高灵敏度\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AlarmSensitivity\",\"name\":\"报警灵敏度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"RingLEDSwitch\",\"name\":\"门铃灯开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"5分钟\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"10分钟\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"30分钟\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AlarmSystem\",\"name\":\"报警间隔设置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无操作\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"拍照\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"录像\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ActionSetting\",\"name\":\"按铃抓拍动作设置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BatteryPercentage\",\"name\":\"电池电量百分比\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未充电\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"充电中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ChargingState\",\"name\":\"充电状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RingVolume\",\"name\":\"门铃音量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"StorageRemainCapacity\",\"name\":\"剩余存储空间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SpeakerSwitch\",\"name\":\"扬声器开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"侦测报警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AlarmEvent\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"移动侦测\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"声音侦测\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"逗留侦测\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"按铃通知\",\"value\":101}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"告警类型\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"无无\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'76177630','gateway','边缘网关','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":2,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"memory_usage\",\"name\":\"内存使用率\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"gateway_version\",\"name\":\"网关版本\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":2,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"cpu_usage\",\"name\":\"CPU使用率\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":255},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"system_info\",\"name\":\"系统信息\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":1,\"step\":\"0.01\",\"unit\":\"B\",\"unitName\":\"字节\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"memory_total\",\"name\":\"内存总量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":1,\"step\":\"0.01\",\"unit\":\"B\",\"unitName\":\"字节\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"memory_free\",\"name\":\"内存剩余量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"128\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"cpu_core_number\",\"name\":\"CPU内核数量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":2,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"disk_usage\",\"name\":\"磁盘使用率\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'766145699','SmartTemplate','智能模板','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'77823959','SmartBuilding','智能楼宇','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'780467258','AutoDoor','自动门','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RemoteOpen\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"远程开门\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RemoteClose\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"远程关门\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RemoteFreeze\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"远程冻结\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"RemoteUnfreeze\",\"inputParams\":[],\"outputParams\":[],\"required\":false,\"serviceName\":\"远程解冻\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"RunTimes\",\"name\":\"运行次数\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"0-25kg\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"25-50kg\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"50-75kg\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"75-100kg\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"100-125kg\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"125-150kg\",\"value\":5}],\"dataType\":\"ENUM\",\"identifier\":\"Payload\",\"name\":\"负载重量\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"LockEnabled\",\"name\":\"启用锁\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"AutoCloseEnabled\",\"name\":\"启用自动关门\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"60\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"identifier\":\"OpenedStayTime\",\"name\":\"开门端停留时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"DetectEanbled\",\"name\":\"启用人体感应\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"identifier\":\"DetectDistance\",\"name\":\"人体感应距离\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"就绪\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"学习\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"已关门\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"已落锁\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"已开门\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"开门中\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"关门中\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"错误\",\"value\":7}],\"dataType\":\"ENUM\",\"identifier\":\"AutoDoorWorkState\",\"name\":\"自动门工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"DoorOpenDirectionAdjustment\",\"name\":\"开门方向调整\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"AntiPinchEnabled\",\"name\":\"启用防夹\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"LinkageEnabled\",\"name\":\"启用双门联动\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"ExtInterfaceEnabled\",\"name\":\"启用外部接口\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"identifier\":\"CurrentDoorPosition\",\"name\":\"当前门位置\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"DetectMoveEnabled\",\"name\":\"启用检测位移开关门\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"BOOL\",\"identifier\":\"DetectResistEnabled\",\"name\":\"启用检测遇阻\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000000\",\"min\":\"0\",\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"时\"},\"dataType\":\"DOUBLE\",\"description\":\"累计运行时间\",\"identifier\":\"Runtime\",\"name\":\"运行时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"200\",\"min\":\"-55\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"电机工作温度\",\"identifier\":\"Temperature\",\"name\":\"温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"WiFi信号强度\",\"identifier\":\"WiFiRSSI\",\"name\":\"WiFi信号强度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"非正常状态告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AbnormalBehaviorAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"学习错误\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"开门遇阻错误\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"关门遇阻错误\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"开门错误\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"关门错误\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"减速超时\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"霍尔错误\",\"value\":6},{\"dataType\":\"ENUM\",\"name\":\"位置错误\",\"value\":7},{\"dataType\":\"ENUM\",\"name\":\"双门通信错误\",\"value\":8},{\"dataType\":\"ENUM\",\"name\":\"电流过大\",\"value\":9},{\"dataType\":\"ENUM\",\"name\":\"温度过高\",\"value\":10},{\"dataType\":\"ENUM\",\"name\":\"制动错误\",\"value\":11},{\"dataType\":\"ENUM\",\"name\":\"锁错误\",\"value\":12}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"告警类型\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"开门通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DoorOpenedNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReportTime\",\"name\":\"上报时间\",\"paraOrder\":1}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"关门通知\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"DoorClosedNotification\",\"outputData\":[{\"custom\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":64},\"dataType\":\"TEXT\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DeviceID\",\"name\":\"设备ID\",\"paraOrder\":0},{\"custom\":false,\"dataSpecs\":{\"dataType\":\"DATE\",\"length\":64},\"dataType\":\"DATE\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ReportTime\",\"name\":\"上报时间\",\"paraOrder\":1}],\"required\":false}]}'),(1698826367,0,'793181414','HazardWarningLamp','危险报警器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"80\",\"min\":\"-40\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"250\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentVoltage\",\"name\":\"当前电压\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'816271725','Stove','燃气灶','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"泄漏\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"GasSensorState\",\"name\":\"燃气泄漏检测状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"LeftSwitch\",\"name\":\"左炉开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"LeftWorkState\",\"name\":\"左炉工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"LeftWorkTime\",\"name\":\"左炉工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"打开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"RightSwitch\",\"name\":\"右炉开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"待机\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"工作中\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"RightWorkState\",\"name\":\"右炉工作状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"1440\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"RightWorkTime\",\"name\":\"右炉工作时间\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LeftFociFire\",\"name\":\"左灶火力调节\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"9\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RightFociFire\",\"name\":\"右灶火力调节\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"5999\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LeftFociTimer\",\"name\":\"左灶定时关闭时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"5999\",\"min\":\"1\",\"precise\":0,\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RightFociTimer\",\"name\":\"右灶定时关闭时间\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"LeftFociTemputer\",\"name\":\"左灶温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"255\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"RightFociTemputer\",\"name\":\"右灶温度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"TEXT\",\"length\":254},\"dataType\":\"TEXT\",\"description\":\"\",\"identifier\":\"Auto_Cook_Param\",\"name\":\"智能烹饪参数\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在进行固件升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在进行固件升级\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"燃气压力过低\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"燃气压力过高\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"通讯故障\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"点火失败\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"Error_Code\",\"name\":\"灶具错误码\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"左炉告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"LeftWarning\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"右炉告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"RightWarning\",\"outputData\":[],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"健康油温\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Health_Oil_Temperature\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未触发\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"已触发\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"Health_Oil_Temprature_check\",\"name\":\"健康油温监测状态\",\"paraOrder\":0}],\"required\":false},{\"custom\":false,\"description\":\"\",\"eventName\":\"固件升级成功\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"OTA_Success_Event\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未在进行固件升级\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"正在进行固件升级\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"OTA_Status\",\"name\":\"固件升级状态\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'83088517','UnmannedAerialVehicle','无人机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'840385897','other','其他设备','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'843538563','PowerSwitch2','入墙开关2','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_2\",\"name\":\"开关2\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"翻转\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ChangeSwitch_1\",\"name\":\"翻转1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"翻转\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ChangeSwitch_2\",\"name\":\"ChangeSwitch_1\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"全关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"全开\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SwitchAll\",\"name\":\"总控\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch_1\",\"name\":\"开关1\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":1}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'856614269','SmartHives','智能蜂箱','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"-55\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"FLOAT\",\"description\":\"蜂箱环境温度\",\"identifier\":\"Temperature\",\"name\":\"温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"100\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"FLOAT\",\"description\":\"蜂箱环境湿度\",\"identifier\":\"Humidity\",\"name\":\"湿度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"50\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"kg\",\"unitName\":\"千克(公斤)\"},\"dataType\":\"FLOAT\",\"description\":\"蜂箱重量\",\"identifier\":\"Weight\",\"name\":\"重量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[3].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"altitude\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"pcs\",\"unitName\":\"只\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"EntryHiveNumber\",\"name\":\"进箱数量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100000\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"pcs\",\"unitName\":\"只\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"ExitHiveNumber\",\"name\":\"出箱数量\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'878272704','FloorHeating','地暖','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"55\",\"min\":\"-20\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentTemperature\",\"name\":\"当前温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"32\",\"min\":\"16\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"TargetTemperature\",\"name\":\"目标温度\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'886097085','SmartWaterFlowMeter','智能水流量计','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"ForwardIntegratedFlow\",\"name\":\"正向累计流量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"BackwardIntegratedFlow\",\"name\":\"反向累计流量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m³/h\",\"unitName\":\"立方米每小时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"InstantaneousFlow\",\"name\":\"瞬时流量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Velocity\",\"name\":\"流速\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"kg/m³\",\"unitName\":\"千克每立方米\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Density\",\"name\":\"密度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"100000\",\"min\":\"-100\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Temperature\",\"name\":\"温度\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000000000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"MPa\",\"unitName\":\"兆帕\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Pressure\",\"name\":\"压力\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"表计通讯故障\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"通讯中断\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"通讯正常\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"M_STATUS\",\"name\":\"表计通讯状态\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'894390761','RemoteTerminalUnit','远程监测终端','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'89512605','ElectricSafetyDetector','用电安全探测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'911261627','GeomagneticSensor','地磁检测器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"BatteryLevel\",\"name\":\"电池电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无车\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"有车\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"MagneticState\",\"name\":\"车位状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"异常告警\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"AbnormalAlarm\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"强磁干扰\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"低电量\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"AlarmType\",\"name\":\"告警类型\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'915505066','SmartElectricityMeter','智能电表','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"通信正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"通信失败\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"设备异常\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"低电量\",\"value\":3}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"ElectricMeterState\",\"name\":\"电表模块状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"FLOAT\",\"max\":\"2147483647\",\"min\":\"0\",\"precise\":7,\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"},\"dataType\":\"FLOAT\",\"description\":\"\",\"identifier\":\"PowerConsumption\",\"name\":\"用电量\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"电阀门状态报告\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"ElectricValueStateNotification\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"分闸\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"合闸\",\"value\":1}],\"dataType\":\"BOOL\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ElectricValveState\",\"name\":\"电阀门状态\",\"paraOrder\":0}],\"required\":false}]}'),(1698826367,0,'915849602','irrigation','灌溉系统','{\"services\":[{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"ActivateAlarm\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"停止报警\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"系统撤防提示\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"系统布防提示\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"防盗报警\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"火警\",\"value\":4},{\"dataType\":\"ENUM\",\"name\":\"紧急情况报警\",\"value\":5},{\"dataType\":\"ENUM\",\"name\":\"110报警\",\"value\":6}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"AlarmMode\",\"name\":\"报警模式\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"触发报警\"},{\"callType\":\"ASYNC\",\"custom\":false,\"description\":\"\",\"identifier\":\"SetSpeed\",\"inputParams\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"未设置\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"加速\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"减速\",\"value\":2}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_INPUT\",\"identifier\":\"SetSpeedMode\",\"name\":\"速度调整模式\",\"paraOrder\":0}],\"outputParams\":[],\"required\":true,\"serviceName\":\"调整速度\"}],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"-35\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetHumidity\",\"name\":\"目标湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"未感应到\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"感应到\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SensorState\",\"name\":\"感应状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"时\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"Runtime\",\"name\":\"运行时间\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"低液位\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"高液位\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"WaterLevel\",\"name\":\"水位\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"DOUBLE\",\"max\":\"10000\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"},\"dataType\":\"DOUBLE\",\"description\":\"\",\"identifier\":\"CurrentWaterVolume\",\"name\":\"当前水量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"上\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"下\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"左\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"右\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"DirectionControl\",\"name\":\"方向控制\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'),(1698826367,0,'918772023','AlarmButton','手动求救报警','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"BatteryLevel\",\"name\":\"电池电量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"危险报警\",\"value\":1}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"AlarmState\",\"name\":\"报警状态\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'938809676','Wristband','手环','{\"services\":[],\"properties\":[],\"events\":[]}'),(1698826367,0,'942488825','AromaDiffuser','香薰机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"IonsSwitch\",\"name\":\"负离子开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"正常\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"缺水\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"WaterShortage\",\"name\":\"缺水状态\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatSwitch\",\"name\":\"加热开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"静音\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"低档\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"中档\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"高档\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"最高档\",\"value\":4}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SprayLevel\",\"name\":\"雾量档位\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ConstantHumiditySwitch\",\"name\":\"恒湿开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"TargetHumidity\",\"name\":\"目标湿度\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"100\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CurrentHumidity\",\"name\":\"当前湿度\",\"required\":false,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"ScreenSwitch\",\"name\":\"屏显开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"childDataType\":\"STRUCT\",\"customFlag\":true,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"定时时间\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":255},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecs.dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Timer\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"childName\":\"启用\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Enable\",\"name\":\"本地定时\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"childName\":\"可执行\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"无效\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"有效\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"IsValid\",\"name\":\"本地定时\"}],\"dataType\":\"ARRAY\",\"size\":5},\"dataType\":\"ARRAY\",\"description\":\"\",\"identifier\":\"LocalTimer\",\"name\":\"本地定时\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"恢复正常\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'948313020','ArcExtinguishing','电弧灭弧','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'964019542','ElevatorBodySensor','电梯人体探测传感器','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"DOUBLE\",\"childName\":\"经度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"180\",\"min\":\"-180\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Longitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"纬度\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"90\",\"min\":\"-90\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[1].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Latitude\",\"name\":\"地理位置\"},{\"childDataType\":\"DOUBLE\",\"childName\":\"海拔\",\"childSpecsDTO\":{\"dataType\":\"DOUBLE\",\"max\":\"9999\",\"min\":\"0\",\"precise\":7,\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"},\"dataSpecs\":{\"$ref\":\"$.properties[0].dataSpecsList[2].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"Altitude\",\"name\":\"地理位置\"},{\"childDataType\":\"ENUM\",\"childEnumSpecsDTO\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"childName\":\"坐标系统\",\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"WGS_84\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"GCJ_02\",\"value\":2}],\"dataType\":\"STRUCT\",\"identifier\":\"CoordinateSystem\",\"name\":\"地理位置\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"GeoLocation\",\"name\":\"地理位置\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true}],\"events\":[]}'),(1698826367,0,'976812332','FoodDispenser','取餐柜','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"HeatingSwitch\",\"name\":\"加热开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"SterilizingSwitch\",\"name\":\"消毒开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"CoolingSwitch\",\"name\":\"制冷开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecs\":{\"dataType\":\"INT\",\"max\":\"500\",\"min\":\"0\",\"precise\":0,\"step\":\"1\",\"unit\":\"\",\"unitName\":\"无\"},\"dataType\":\"INT\",\"description\":\"\",\"identifier\":\"CellCount\",\"name\":\"单元格数量\",\"required\":true,\"rwFlag\":\"READ_ONLY\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无加热器\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"整体加热\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"单独加热\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"HeatingMode\",\"name\":\"加热模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无消毒\",\"value\":0},{\"dataType\":\"ENUM\",\"name\":\"整体消毒\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"单独消毒\",\"value\":2}],\"dataType\":\"ENUM\",\"description\":\"\",\"identifier\":\"SterilizeringMode\",\"name\":\"消毒模式\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"编号\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":100},\"dataSpecs\":{\"$ref\":\"$.properties[7].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"CellCode\",\"name\":\"单元格门开关\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"childName\":\"状态\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Status\",\"name\":\"单元格门开关\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"CellDoorSwitch\",\"name\":\"单元格门开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"编号\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":100},\"dataSpecs\":{\"$ref\":\"$.properties[8].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"CellCode\",\"name\":\"单元格照明灯开关\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"childName\":\"状态\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Status\",\"name\":\"单元格照明灯开关\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"CellLightSwitch\",\"name\":\"单元格照明灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"编号\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":100},\"dataSpecs\":{\"$ref\":\"$.properties[9].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"CellCode\",\"name\":\"单元格指示灯开关\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"childName\":\"状态\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Status\",\"name\":\"单元格指示灯开关\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"CellIndicatorSwitch\",\"name\":\"单元格指示灯开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true},{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"childDataType\":\"TEXT\",\"childName\":\"编号\",\"childSpecsDTO\":{\"dataType\":\"TEXT\",\"length\":100},\"dataSpecs\":{\"$ref\":\"$.properties[10].dataSpecsList[0].childSpecsDTO\"},\"dataType\":\"STRUCT\",\"identifier\":\"CellCode\",\"name\":\"单元格加热开关\"},{\"childDataType\":\"BOOL\",\"childEnumSpecsDTO\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"childName\":\"状态\",\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"STRUCT\",\"identifier\":\"Status\",\"name\":\"单元格加热开关\"}],\"dataType\":\"STRUCT\",\"description\":\"\",\"identifier\":\"CellHeatingSwitch\",\"name\":\"单元格加热开关\",\"required\":false,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[{\"custom\":false,\"description\":\"\",\"eventName\":\"故障上报\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"Error\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"无故障\",\"value\":0}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"ErrorCode\",\"name\":\"故障代码\",\"paraOrder\":0}],\"required\":true},{\"custom\":false,\"description\":\"\",\"eventName\":\"前门状态反馈\",\"eventType\":\"INFO_EVENT_TYPE\",\"identifier\":\"FrontDoorStatus\",\"outputData\":[{\"custom\":false,\"dataSpecsList\":[{\"dataType\":\"ENUM\",\"name\":\"已开门\",\"value\":1},{\"dataType\":\"ENUM\",\"name\":\"正在开门\",\"value\":2},{\"dataType\":\"ENUM\",\"name\":\"已关门\",\"value\":3},{\"dataType\":\"ENUM\",\"name\":\"正在关门\",\"value\":4}],\"dataType\":\"ENUM\",\"direction\":\"PARAM_OUTPUT\",\"identifier\":\"DoorStatus\",\"name\":\"门状态\",\"paraOrder\":0}],\"required\":true}]}'),(1698826367,0,'978010745','CirculatingFan','环流风机','{\"services\":[],\"properties\":[{\"custom\":false,\"customFlag\":false,\"dataSpecsList\":[{\"dataType\":\"BOOL\",\"name\":\"关闭\",\"value\":0},{\"dataType\":\"BOOL\",\"name\":\"开启\",\"value\":1}],\"dataType\":\"BOOL\",\"description\":\"\",\"identifier\":\"PowerSwitch\",\"name\":\"电源开关\",\"required\":true,\"rwFlag\":\"READ_WRITE\",\"std\":true}],\"events\":[]}'); +/*!40000 ALTER TABLE `thing_model_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unit` +-- + +DROP TABLE IF EXISTS `unit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `unit` ( + `created` bigint DEFAULT NULL COMMENT '创建时间', + `modified` bigint DEFAULT NULL COMMENT '更新时间', + `id` varchar(255) NOT NULL COMMENT '主键', + `symbol` varchar(255) DEFAULT NULL COMMENT '符号', + `unit_name` varchar(255) DEFAULT NULL COMMENT '单位名字', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unit` +-- + +LOCK TABLES `unit` WRITE; +/*!40000 ALTER TABLE `unit` DISABLE KEYS */; +INSERT INTO `unit` VALUES (0,0,'1006642213','stepCount','步'),(0,0,'102261567','°C','摄氏度'),(0,0,'106691095','min','分钟'),(0,0,'1140231420','pF','皮法'),(0,0,'1161862607','mPa','毫帕'),(0,0,'1173619607','mV','毫伏'),(0,0,'1181555398','KB','千字节'),(0,0,'1229259959','ml/min','滴速'),(0,0,'1230350383','°','度'),(0,0,'1233456347','A','安培'),(0,0,'1277068183','kVA','千伏安'),(0,0,'1300689574','MB','兆字节'),(0,0,'1328339543','N/C','牛顿每库仑'),(0,0,'141821694','μg/m³','微克每立方米'),(0,0,'1431048548','t','吨'),(0,0,'1485421387','J','焦耳'),(0,0,'1547565369','mmol/L','血糖'),(0,0,'1556893455','m/s','米每秒'),(0,0,'1573221141','nF','纳法'),(0,0,'1573601051','L/s','升每秒'),(0,0,'1588262815','km/h','千米每小时'),(0,0,'1635207605','m³/h','立方米每小时'),(0,0,'1637794274','F','法拉'),(0,0,'1640178685','mm','毫米'),(0,0,'1674888694','kn','节'),(0,0,'168151671','Ω','欧姆'),(0,0,'1735019750','μg/L','微克每升'),(0,0,'1785602265','h','小时'),(0,0,'1788404373','g/mL','克每毫升'),(0,0,'180465916','km³','立方千米'),(0,0,'1890682844','mA','毫安'),(0,0,'1903203569','N','牛'),(0,0,'1926119586','g/m³','克每立方米'),(0,0,'1941990587','cm³','立方厘米'),(0,0,'194396362','kW','千瓦特'),(0,0,'1954338893','c㎡','平方厘米'),(0,0,'1964323189','mm/hour','降雨量'),(0,0,'2016600739','var','乏'),(0,0,'2019261069','mg/m³','毫克每立方米'),(0,0,'2056360214','mL','毫升'),(0,0,'2114920267','grav','重力加速度'),(0,0,'215487406','dB','分贝'),(0,0,'2178658019','cm','厘米'),(0,0,'2182751906','kVar','千乏'),(0,0,'2330278368','㎡','平方米'),(0,0,'2340661527','mg/L','毫克每升'),(0,0,'2342005985','Pa','帕斯卡'),(0,0,'2355042637','kW·h','千瓦时'),(0,0,'2448222347','Lux','照度'),(0,0,'2475431594','lm','流明'),(0,0,'2556225864','h㎡','公顷'),(0,0,'2563648866','mmHg','血压'),(0,0,'2599308772','只','只'),(0,0,'2619272415','bit','比特'),(0,0,'2649114851','cal','卡路里'),(0,0,'2658946736','month','月'),(0,0,'2689883446','kcal','千卡路里'),(0,0,'2756522800','μA','微安'),(0,0,'2804743673','cP','厘泊'),(0,0,'2825740822','GB','吉字节'),(0,0,'2855035971','Hz','赫兹'),(0,0,'2872437198','uS/cm','微西每厘米'),(0,0,'2891598374','cst','厘斯'),(0,0,'2922962278','KCL/h','千卡每小时'),(0,0,'3042511189','m','米'),(0,0,'3076390685','μW','微瓦'),(0,0,'3082469414','℉','华氏度'),(0,0,'310356388','r/min','转每分钟'),(0,0,'3164248175','year','年'),(0,0,'3167855867','kg/m³','千克每立方米'),(0,0,'3168843897','eV','电子伏'),(0,0,'3182224232','%RH','相对湿度'),(0,0,'3193889551','pcs','个'),(0,0,'3215634087','dm','分米'),(0,0,'3230789520','mm/s','毫米每秒'),(0,0,'3277870970','L','升'),(0,0,'3316762981','g/L','克每升'),(0,0,'3402732190','dS/m','土壤EC值'),(0,0,'3417984881','V','伏特'),(0,0,'3423160209','kJ','千焦'),(0,0,'3427710186','week','周'),(0,0,'3433836473','ppm','百万分率'),(0,0,'344268300','Wh','瓦时'),(0,0,'3450019278','kPa','千帕'),(0,0,'345230036','nm','纳米'),(0,0,'3470831628','ppt','纳克每升'),(0,0,'3495736543','″','秒'),(0,0,'354457134','m㎡','平方毫米'),(0,0,'3568728692','%','百分比'),(0,0,'3663171926','day','日'),(0,0,'3681339410','r/min','转每分钟'),(0,0,'3740414524','″','秒'),(0,0,'3743083023','uw/cm2','微瓦每平方厘米'),(0,0,'3831238779','V/m','伏特每米'),(0,0,'383577235','','无'),(0,0,'3848860101','kA','千安'),(0,0,'3923805452','W/㎡','太阳总辐射'),(0,0,'3957396342','pixel','像素'),(0,0,'3959908457','Nm3/h','标准立方米每小时'),(0,0,'3990624972','rad','弧度'),(0,0,'3992435553','count','次'),(0,0,'4008456420','t/h','吨每小时'),(0,0,'4021919699','mW','毫瓦'),(0,0,'4062896558','k㎡','平方千米'),(0,0,'4082401494','kg','千克'),(0,0,'409889817','g','克'),(0,0,'414836052','kg/s','公斤每秒'),(0,0,'4154703861','Mpa','兆帕'),(0,0,'4162697846','mg/kg','毫克每千克'),(0,0,'4163856077','K','开尔文'),(0,0,'4275704235','hPa','百帕'),(0,0,'4281466554','W','瓦特'),(0,0,'4286117683','kvarh','千乏时'),(0,0,'465015215','μF','微法'),(0,0,'48087574','m³/s','立方米每秒'),(0,0,'494614137','mg','毫克'),(0,0,'510221131','′','分'),(0,0,'544886775','bar','巴'),(0,0,'586439012','NTU','浊度'),(0,0,'678078412','m³','立方米'),(0,0,'718717383','ms','毫秒'),(0,0,'752528360','aw','饱和度'),(0,0,'76171577','pH','PH值'),(0,0,'769400593','km','千米'),(0,0,'774548128','μg/L','微克每升'),(0,0,'820430538','gear','档'),(0,0,'837669673','μg/(d㎡·d)','微克每平方分米每天'),(0,0,'875466850','mm³','立方毫米'),(0,0,'889901696','μm','微米'),(0,0,'906595223','B','字节'),(0,0,'945879529','kV','千伏'); +/*!40000 ALTER TABLE `unit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user` +-- + +DROP TABLE IF EXISTS `user`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `user` ( + `username` varchar(255) DEFAULT NULL COMMENT '名字', + `password` varchar(255) DEFAULT NULL COMMENT '密码', + `lang` varchar(50) DEFAULT NULL COMMENT '语言', + `gateway_key` varchar(255) DEFAULT NULL COMMENT '密钥', + `open_api_key` varchar(255) DEFAULT NULL COMMENT '密钥', + KEY `idx_user_username` (`username`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user` +-- + +LOCK TABLES `user` WRITE; +/*!40000 ALTER TABLE `user` DISABLE KEYS */; +/*!40000 ALTER TABLE `user` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2025-02-05 16:18:56 diff --git a/manifest/sql/language_sdk.sql b/manifest/sql/language_sdk.sql deleted file mode 100644 index 2b6f8b0..0000000 --- a/manifest/sql/language_sdk.sql +++ /dev/null @@ -1,15 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:34:32.2820 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "language_sdk"; -CREATE TABLE `language_sdk` (`created` integer,`modified` integer,`id` text NOT NULL,`name` text,`icon` text,`addr` text,`description` text,`sort` integer,PRIMARY KEY (`id`)); - -INSERT INTO "language_sdk" ("created", "modified", "id", "name", "icon", "addr", "description", "sort") VALUES -('1692347065093', '1692347065093', '94369901', 'Go SDK', 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAFYCAYAAAB6T+FsAAAACXBIWXMAAAsTAAALEwEAmpwYAAA4KmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwMTQgNzkuMTU2Nzk3LCAyMDE0LzA4LzIwLTA5OjUzOjAyICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoTWFjaW50b3NoKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNS0wMy0wM1QxMjo0NzowNS0wNTowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE1LTAzLTAzVDEyOjQ3OjU4LTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wMy0wM1QxMjo0Nzo1OC0wNTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDo0ZWUwM2Y1My1jZTI4LTQzYjItOWNkOS02MDM1Y2IzNWY3Zjg8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpEb2N1bWVudElEPnhtcC5kaWQ6NGVlMDNmNTMtY2UyOC00M2IyLTljZDktNjAzNWNiMzVmN2Y4PC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06T3JpZ2luYWxEb2N1bWVudElEPnhtcC5kaWQ6NGVlMDNmNTMtY2UyOC00M2IyLTljZDktNjAzNWNiMzVmN2Y4PC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpIaXN0b3J5PgogICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjRlZTAzZjUzLWNlMjgtNDNiMi05Y2Q5LTYwMzVjYjM1ZjdmODwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNS0wMy0wM1QxMjo0NzowNS0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjI1MDwvZXhpZjpQaXhlbFhEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zNDQ8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pk8zyaoAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAn5JJREFUeNrsnXecHHX5x9/fmdl+vaV3SIAECBAChN67ICogvf8UFJGqqKAiAoIiWBHpRVQQkN5JIJTQQ0gI6T25frd9d2a+vz9mdne2XS717swMryN3u/vZnfnuPN+nfp5HSClxD/dwj//tQ3GXwD3cwxV093AP93AF3T3cwz1cQXcP93APV9Ddwz3cwxV093AP93AF3T3cwz1cQXcP93APV9Ddwz1cQXcP93APV9Ddwz3cwxV093AP93AF3T3cwz1cQXcP93APV9Ddwz3cwxV093AP93AF3T3cwxV093AP93AF3T3cwz1cQXcP93CPfntoGwMSQrgr1/8ODyBKbOQVgBcwS32VQBKIbMDnmIDuLnffHRvT0FVsFMgV9K19CCDzRfmBQOY7t398BY+ZjtcLx+tKWXQCMAper9h/C8fm4Xxt1P5XFHxGDEg5HndbDLuC7h49aGafLSSqrZEVh/B67L8NW7Oa9u9mThiFCggECuARQtQipeZQ+CYCRUq6QUYyLpywBVlKp/aXZsHmYdqWoGL/qPaPAqTtc1FtcEbwsZ9Lul+vK+jb2uF1CErI/jejnVWH0KQdGlUBTCFECCGqBKIaIaoFBIE6KWWjaRo1QCNQBdRiPVfteH/h+DdqC6NTa3cC7fb5xey/U0IonUKIOEI0A3EgjJRxiexG0i2l2e3Q4JlNQbE3Jo/9d9L+N2W/h3Rcp3u4gj7gD9Uh1EH734AtYBmNbDgEWxNC1CBENYgqkI2YcoREDgYG24JcC9Tb/1Zn4i0erw9PIIjq86F5vWj+AMHaelSfF2ma2e/P1HVi7e0YRhohBAKBlJJ0Io5pGAggnYgjdQNDT6MnE047XAc67I2g3f69HVgHNAuhrBRCrJbIDqBbmrIdZNzePFTHj2YLf8q+7phjY3MPV9AHxKHYwuy3NXbG9wVI2AEwxRJmqoUQTUKIcSCGY8qRpjSGA8OBIRmNr2gePF4f3lCQYH0jFY2DCNbVWz+19XhDIYJ1DQRq6vBVVuGvrMRXVYXi8SCccToBmBI9nUJKM++5WEc7ejKJEBDv6sRIptATcRLdXaTjcRLhLpLhbhLdXSS6Oom1txJrbyfW2Y6ZTJLObQhJoBVYrghlOYqyBORypJxvSrlKQLeUMmxbMNX2Wen22jgF33RvJVfQ+9vhswU7aJurmn3DRmwzVQNRIRRljBBiPDDGNPTxwHiHlvYoQqFi0GAqGwdROXgowboGqocNo3LwMEKNTYTqG/AEgniDITyBIL5QCMVraWxpWnE3KaVtSEtLk0sJIvsQIFBUxdLkGdGUgCKyewHCisVZ/9iPKwp6IkE6mcBIJEjFY+jJBImuTiKtLUTWraF79Sq6160msm4d4bWr6Vq9CkNPYVssbcByAV8ommeulOYCaZqzpZSdtqB7HXGJZNZNyPn6rqC7gt5nvnbAFm6f/Vgqd4OKwQixgwI7mNLcHZgEjLYFG48/QGXTIKqHj6J+7HY0jN2e2tFjCNU1EqyrI9Q0CM3rR0pLWLOCbBoYhgmmiTSNrGBLpOWEl/hepZTZ707KrOw6nnc+JrLRuexzisjGCBVVQSgCoagIRbF+HJuBaZrEOtqItrQQaV5L18rltCyYz9q5s+latZyu1asyH5QE5gOfC6G8BfIDKeView2r7I0z87qova5pV9BdQd8ah8fWOgFyEfKkbWpWKIoyBMSupmlOA7kzsBugKYpKRWMTtaPGMminnWkcP4GGseOpGT6SUGMTipoTGkPXMdM6pp7OamSZ+bGzZUKKokSWFPYfUuQLcsHzmxuLyFkAiiIQQkHRNBSPB1XzIJGYpomZShFet4bWhfNZO2c2a+fOZu0Xs+lesxrTNABaBOIToSivSnhXSnMRUsZsoffanxgFumwz3xV0V9A36yFsrV3l0NwJICGE8CPEaKTcR0q5L7CX7V9T0dBI0w6TaNx+AkN22Y3BO06iomkIgbo6PMEQ6WiEdDyGkUrZwmx/kSInZcIZKLe1NkJkVbBwSpuUSGHb6KIfYKXIbhJCCIQQaH4//soqEJDo7KJ77WpWf/4pqz6exYoP3qVlwXz0dAo7yPeqoiivSsRMaRpryBUBYWv3TraxtJ0r6FvONK+ytbc36zcKoSpCTBCKsreh64cAU4AGX6iC+jHjGDxpMiP33IdBE3emZvgogrV1mIZBOh7D1C1NbRpGkUmdTXw5TOasu1zC3h7IWCEEiuZB9XrxBIIoHg9dK5axbt4clrz9Jis+ep+1X8wmnUwALFEU9RkheNkwzU+RMmELvLqtaXhX0LeMgFeQyznriqIORxFTTF0/GDgAGOmvrGbQjjszfPcpDN9jLxrH70DV4KGoXi9ISMej6MlkgZ1b7Bw7ZSJfPgrT3/+LWEv4vaEKNJ8f09CJrFvL6tkfs+CNl1n67tt0LF8C0C7gdUXzPGWaxrvSNDvs78hjB+3C/+sC7wr65vO/qx0C3gVIoagTBRxumsbxts/N4J12Ycy0/Rmz30EMnrQrwZp6FE0jHY+hp5JII1eJmmeNixK3f6FWpCAQti1hAUUoaD4f3ooK0vE47YsXsuDNV5j/8nOs/OQDsCL0r6ua5yHT0F+Xlh9fa79Ft232m66gu4JeToNX2vdcB+BVNG1PAScZun4c0FhR38SY/Q9i+0OOYPjuU6kcNBRF09ATcYxUCkNP561Pqeh2mXu96IltHZvR8qpd+KMoKuF1a1gycwZfPPM4S9+ZgZ5OmYqiviYU5e+mnn5VWqZ8ja3V221LbEOOTFFTTze5YccHTFfQB1aQrZ5c7rbDzjFPlVKeL03zKKCybuQYdjjqeHY48lgad5iINxBETybREwlM07Dy0balKhzWubRvYlH2Syt+XjpiXi7WuRsoePx+PIEg8a52lr43k/f//ieWf/geQEpR1H8guNs0jI+BOjtoGsYq3OnpRvfZwu23Bd1jWwyZasXMHpWp5nPW9cftn5Qr6P33CNk3RMA292KKqu4G4mLT0E8CtMbtJrD7Geex41Ffo2rIMMx0mlQ8ZqW97LUTjhsYZyCqlEbPc9NL+a/5m4SLdWDttJ4QAtXnxxeqJBnpZt6L/+Wdv95By4IvAbpVzfNr09Afts35hjLa3UMuT+9MkUYtIRfVICsQBJDChyCFlFGs4qcucilWr32GMfvxuCvom0f7UuJW2NBDs827ansn7lYUdTzIs0zTPBOobhg3nt1PPZtJJ36T6mEjSEUipKJRq/rM/uiSxSfZIjNbtTtz0jJ3V2dSVaJQnbnYXmLtLzIQJFBTS9fqFcy67y4+fvR+Yh1tCMRbQlV/bRr6O/b37AeabUGusn8UWzATQogqhBiJae4hYQdgFLlqxQpbkFvt91ihCGWeFHyIlIullEnbInASgRKuoPfu8JFjPTn51k6Bj9sLKhxm1PqOgL3Le4EOoSgBoajfMvX0D4GRNcNGMuWsC5j0tW9SN3ocsc529Fg0K8l2mjiXUy44ISsIZd2kmboSmc2F51RYVllJkKVy1gMYa2ldu3pOVVEUFaGqtpCSl2c3DRPTMDANA2kY2QrA3n+ulb/3hSrwVVSybNY7vPnbG1n89hsACVXz/MI09HuldaNXkqPRRgUihSLGWEFW8wg7yFoLEKprIFTfiL+qCm9FJclYhFR3N5HmdcQ62jLn1Aa8raja81Kab0jTbLE3EI+t+dvYAk06BrqgC/LLSf12sCNlL1ah3Zf5W7M3AsXhL8XJUSKdR4NDi8cU1bOXlMbl0jQPDdbUses3T2O3U8+icfxO6Mk4yXA4R/pwmo/kgkeZ37PmO7mbvbSwyHyCicMkyNShi4GIRaJ4vXj8AeuNTImRThHv6iDZ3U0y0o2pGwhh19ZLUFQFTyCEv7qaQG0dmt/ey6WJHk+gp1PF91q5c5agaBr+mloS3Z18/OgDvHf3H4m0NqOo2lMgf2Eaxgr7HksrqrqDEOIUO8g6OlTXQNOEnRi2+54M2mEnqoeNwF9Vg6+iAi0QQo9HSUWjxLs66Fq5wirw+eQD1s39nGQsCvCR6vE+YBr6c9I0w7bFmATWsJlLdgeyoAcd5pVha+kEQoSEEA32TlyHpNb+piWCdqATSVhKs9nGZPwt1V7kbttU89i+eAXQKRSlQhHquYaR/i7QNHa/g5n23csYNXUaQigkurssAXfmemV+qqis41BYHy7KRJjJK34rSjkPFKzqsSLiHr+feGcHXWtWsm7+PFbPncPar+bRuXY10bY29LYWSKfzgxeqhqiuobKhkarBQxi0/Q6MmLw7QybsSM3I0XgDIdJJizgjdd2679ZzzlLKLNln6btv8epNP2P17E8APlFU7RopzYVCKGeahn4msF31kOHscNRxjDvocAbtOIlQbR2Kx4uUJnoqhTR0pGEgFBVFVVG9PoQiMNI60dZmVnz0HrOf+CdLZr6BnkqhCOV5oaq/M/T0LDvIawBrN6ewD0RBD9mmTsheiA4hRJVQlIkIsZc0jN2klKOBEbawexzilbYFeaUilPlCVeZJU74vpTnXpj9mAiVxh/C3Kaq2o4DrDUM/Mlhbz36XXM7kk88kUFNLoqsDPZXKu8aS5A/7LsswvIQQKIpqFcgoCqqmoahq1s2UhoGpG5h62irttP38QoqoM6WU9xlFz9kxgj7EKpoHf1U1RjJBy8L5LHn3Lea8/CJrZr0Ftnk1uL6Ocdttx+AhQxk+YgSVlZUYhoFEoioq8XiM5nXNrFixnC/nzqO5vd3uQKEw+qDD2OnQoxiz34E0jNsePZUi2d1VIOBlzllKFE0jWFdP56qVvPWHW/nokXsBVmte7ypTN/YMNTSyy0nfZuevn0zThB3twqYYRjqNaeiOfbxgrezPVzQN1evFG6wgEe5i+btv897f/8SS994CaFM93p8b6dSjthJTNqdmH2iCnmmcoAPtQogmRdUOMfT0N4A9gHqPL0DdqNFUDRtBqL6RQG0diiIwDZNYeyvR1habIPEVhvXltAEfqx7v86ahvyJNc6VtKViLr3m+ZejpnwDbjd3vIA649BpGTt2HdDxOKhbNfqHS4XRnlblDjaseD95QJarHg5FOI02DZKSbSEsL6WiUVCxCKhaxTVjwVVbhDYXwV9cQqqtH8wdRPBqKopCKRknHYwVqKd81KJuXLpWO2oJYKU1Ur49ATR3JSDfL3n2b9//xAIvfeAX0FEMbG9hn2jT22/8ApkydypixY6mpqSEUCvV4I8TjcdraO1i1cgVvTX+Tt6a/xeuvvkIklYLKGvY57Wx2PelUBk/chVQkTDISsZl0PZ2z9YSvshqkyTt/vYMZf7gVI51i8E47c+zNdzJyyt6kohFSMSuLIsrk9sqtlbSCBnj8frzBCqJtzcy6/y7e+evvMXTdVD3e24x06hbb0tQ2l7APFEH3OPLW3UBcUbVjpDQvl6Y5FWDY5D3Y7sDDGTFlL6qGDqdy8FC8gUCOY61Y+3cyHCbS1kLnsqWs/Ph9Fs14jVWffZz5nHmK6nlYmvrfpJQRVfNcZejpXwLsc/4l7Pu9KwjW1hHv6sTU9ax5Lh3uqRA5G1FRNTzBAL6qalKRGO3LFrFmzmes/PxT1sydQ+vypSRaWiARKR+CqK6latBgmsZtz4jJezBs0q4M3mkXqocOs5o7hLsx02lMU9o3bHE6qvdU082Itf8M1tWjahrzXnqWmff+lRUz3wTgiEMO5uzzLuDQww9lUNOgzWLqLVy4iGf/+xT3/O1u5syfDx4fh1x+LVPPPB9/dQ3RthakYVlGPV4vAk8ggCcY5LMn/sHz1/4QQ09z2LU3sO93f0iyu9PeOJRNXCuBNxRC8/mY++yT/Pfq75OKRVA9ntsNPX0jkqAN3WQzfiAIuh+rY4oKtApFGaso6hWGnj4NYPyhR7LHaecxaq9p+Cqqsn6SmU5jmAZCypyrLARC0VA9GprPIpMlIxFWfTyLz5/+N3OffYp0Mo7m8b4hka1GOv2tykFDOPTq65n8rdNJJeKkwuGcGehM9TorJHxevKFK9GSC1oVf8uWrL/HV29NZ9+E7WY3fVFPLuHFjGTVmNIMHD6Guvp76hgYQAj2dZs2a1XR2dLByxUrmz5vHshUrSNptnTyDh7PjgYew4+FHMWrqvviraiwtn4xtdappEdY2ZTSfH191NWs+/5Q3fv8bFrz8DB7gnHPP5ZIf/IBdd9211zdouXun3HNSwsMPP8StN/2az+d9ScOOu3DM9b9mzD77k+juRk8li1NzhdckTTSvn0BNDYtmvM6TP7iQSGsz0y78Pof++BekEwnSsWhO2DdhrVSvl4qmISx47QWevOxCws3rUDXPjYae/p0doEsBqzYhNdzvBd0PDLUj6V2K5tnf1NO3ADs0jN2eA374Y3Y86ji8oQpiba0Y6bQjCFSQUil1gwhQVI/FEjMNVn3yATP/fDtfvvwcAI3jxvO13/6FEXvuTaytzaKFCooZWPa/ms+HNxQiGYmw+J0ZzHrsIZa9/iIAdQE/hxx1NPsddBB7TZ3KjjvuRHV1Va8WIZFIsHr1aj744AM++OADXvzv03yxYKH1vpN2Y8o3T2OXr32DYEM9qXCEdCKeZ1lsNaqpXSfgr6pCmpIPHr2fl39+DSA57dvf5uof/Yhdd9llg25OK7gpN+r+iScS3PTrX3PDDTcAcOQvbmXKt89GSkkyErZt6x6u15SoHo2KpsEseO1FnrzsIiKtzez73cs47NobSIbDpOMxe7PYFFouIBSqhgxlwWsv8tgF3yadiCcVzfNdU08/ZWd+Wuxc+/+coPuxmhoKIKx5vN/W06kbBaJyj9PPZf9Lr6Z21BiiLc3o6aSdqhLZQIjMJlELPjsv1SIz3zWhpkHEuzp55qrvMe+Fpxk77UCOv+1P1I0eR2TdGkzTzAbSpON9BBIhVLyVVZjpJF+9+iJv/vVO2r74lJCqcOyJJ3LKaaez33770dTUtFlM1LSe5oP3P+A/jz/OQ/fdQ3NXN6FRYzns0qvY8egT0Lw+Et1d9k3UE13Umch23hCiF1TTfKyUEqEoBKpr6V6zkpd+fR1fPvckO43fnt/87naOPfbYHjVxvtlb/vmNwb49cybf+7+L+OyLuUw5+yIOv+Z6hKrZws56rtdEUT1UNDay9L23+deFpxNtb+XQa37OvhdfTrK7Ez2VcrTR2sh1BoSqUjVkGLPuv4vnf3wZUsrVKOJk0zCW2AG6lRtbVNNfBV0Fhtm+eZuqec419PRNHn/Ad9Dl17Ln2RehqBrxrg7y5xQI52aaZUNljHdn4ERK+38KBGrqCK9ZzZOXXcjyD95lhyOP4+hf3krVkGFEWppLY63SDXyBEN5giBUfvc+bd93J4pefpdrv45yLLuLc8y9k11127nHhnTdouXXq6bmFixbxr38+xu9uvpm2cIRxhx/L4Vf+lKYJO5IMW2aqEErpvPJmpIsqqoq/uobVsz/h8Su+S9fC+Zx5xpncetutDBo0qKRAbsj1bgoWYPXq1Zx95pm8+vrr7PKt0znuhttACMvXFvR8vYBQVEKNTSx+63X+9Z2zSHR1cPwtd7LbyWeRiHRjpHrI3/dynaXt8mg+Hy///Ed88PA9KIrymCnlj5Eyw6Ff+78k6A12hH2tqnlOMvT03b7KSs+RP7uJyaeeTSpimUyZL0WIgkiqoxhFiBLRYcfeEKytpWvtav57+XdY+t7bTDzuJI6/5U40f5B4Z3teHrYQG6iuxkil+eDRe3n1xutAGlx0wfn84IdXsNNOO67Xn1yfJuqNn5o5lixdyq9vuIG/33sval0jX7v+JnY58WQrQhyP2dZHidKhEn9uKF0UIahobGLZ++/wj4vPJrFuDb/5za1cddWVG21mbmxMpydsLB7n3LPP5l///jdTz7+EY37xGxKdHaSTiVw6rNz1AigK1UOH8cWzT/LY+aegebx848/3s9PRJ5Do7sqmSgGkrpNOJDD1dH56bz3rjJQEqmvoWrWSf33nTNbN+1xXNc93DD39jJ1W3iit3h8FPWRr8zZFVSebhvGYoqoNx9/yByaffAaJ7jB6Mp4ze8qkNXIVULmUV95rpEmgto5YWytPXnYhS96Zwa7fOI0jfvZrfBUVxLu68tJl+Ru8JFhXT2TdWl688afMe+YJJk+ayK9/cytHH330Rt2wmyromePxxx/n4gsvpKWzk0N/9Av2Pv/iLKmmSNhLpMiEKC3Q5eii0jQJNTax8pMPePCsb2J0d/LYv/7Jyd86eZMixJtT0J2PxRMJjjzkUN569x2O+uVt7H3exURa1oIp877sUtcrpUTVPATr6/n40fv579Xfo6K+kVPv+zf1Y8axdu7nVnwESaixifqx49E8XuLdnUgzVy3Z8zpLBArBugY+e/wRnrn6e0gpZ0rk2ba0xu2U24AWdC0TfBNCKEKIx03T3HP/717OIT/+OYmuTrs4xdFt1CHYssD6Kqw2y+S2JRJ/qAKhaTx56QXMff4ptjvgUL5+5912MUN31pzLx1pvXjloEK2LFvDv75/Putkfc9q3v80df/gDDfX1G+V3bu5N4NPPPuPcM87g0zlz2Oe7P+Swq35mRYkzVtBmootKaVLR0ETnqpXce+pxhJcv4aGHH+aM00/fJEHelE2vN2u6atVqpu4+mdWt7Vzw1GsM3WU3Ym2tpa32oly4RPX58FVU8vIvf8x79/6F+rHbUdU0hLalizH1FFKCJxhk5B57sec5/8fw3aYQ6+zATOsIRfRqnb3BEKlYhH//3+ks//B9U1GUM0zTfN1OMa9gAymuGyOzW3Jscg1WRVpSqOr3TNPcc8cjjuGQH11PKhazhFyIvKIUKfKtq0wMrqAC1VG7IvF4vXhCFbzyy2uZ+/xTjNhjL77227/gr6y1hNwKsRVgrSaMFY1NNM+fx/2nn8C62R9z469u5JFHH80TcqefmOnCWuhvFj6/OQOZk3fdlRnvvMMhBx/Eu3+5nRl/+h3B6moUVSuyUAp4NsUmq6PoR+QJucQXqkRPpfjPDy4kvHwJ9913X1bIN+bG2hw1F+vbBACGDRvKv598CkyDZ6+7knhHK55g0JKwMteb07wCPZkgnUhw8FU/Y+evfYu2xQtZ8t5bdK9dRaS1hWhbC50rljH7qX/x8OknMve5p/BXVqOoaq/XOR2PUjloCDsd9w2EEIo0zePJTa0JsRWOLSXomW4tYUVVp5q6fmGoroGDrvwZCEEqEkY4qRNSZsd2ZthfAoFqlxmqXh+qx2strh1ZFxIUVSPUOIhZ9/6ZWQ/+jephI/jaLX+kctBgyyfP3xayWCSE6urpXLmCh87+JpGVy7nnvvu49ifX9rhzZhoaOgW6UMs7/+5JQEo9Xw5bWVnJf558iimTJzP9t7/ikyf+QbC+IXsuzps61w66OAiVe95RSmYH37yhEK/degMrPniHyy+/nHPOOWe957W+5zb2ejcECzBt2jSuvupK1n76IR//+x94g6FsTrzU9TrXCiFIRSOoHh8HX/UzmsZb8RiP14fm8+Px+vH4/Gg+P8lomBeuv5pVn36Ir6qqOBFeZp2llKRjUcbufxCN201AwmEoynCsqtDgQBb0KkARCFUIcRZQs9f5F9O0485EW1usL0EU9wnL9CtXPB58VVVowaAt3JbQe2zusScQAEUhWF/Houmv8sL1V6N5vHz9jrtp2nESkZaW7HvJwvA6El9FJalwF09cej7hlcu48847Oc9xY68vGlzq8VJR5fVFkgsjz4UbivOorq7m0X//m0H1dTx59aWsm/s5wdq6nBq3TR9BbrqKdHbByJhGIjfpOJMnDtTWsfjtN3jvb3ey++Td+O1vf7tZznlrYDPHT392HcMGD+Ltv/+JrlUr8GbKbktcb+FagSDe1UHt6DEc+qNf4AtVkE4l8zoFAWgeH5GWdbzz199jptOoHm9eJqjcOiOsOXY1w0cxfI+pAI1Cyt3tyHtmDt2AE/RM//OEUMQuhq4f0bj9Duz6zdNIx6N5AiekQ0hsTasFAqgeL8vee5s3f3sjT13xHf590ek8+6NLeeuPt7Fo+mvEuzqoHjKUjuVLeO7HP7AKKK6/mTH7HmQFY7LF6s6qJesX1etDUVReu/0mVn74LldfdRXf//73826icuZ4uVRRqX97sgzWp73K/b39dttxz4MPQSLGc9dfjaGn8fiDmdV09GpwpCCzzkruy3FmoDyBILHWVl6+9UZU4K9/+9sG+4Xru74tic08X1lZydXX/Jhk8xo+/e/jCFUDVcm7XpFNpeavVebrTHR2sP2hR7H3BZcAWEVbThfSHmG1cPprrP78E3yhkGPDKL/OQlrEJs3vzwg6UsrdbN/cuzW0urYF3tNv/0SllIcCNTsefQKVg4YQ72jP5iJzWofs/zyBEKaeYubf/8SHD/6dWGd70Zv7QpUM32NPdv3GaSye8Rqtixcy+Zuns8fp5xFra8XUDTIOWV60VVhFOL7KKua/8jwf3n8X06btw00331xSW5czzQt/L6XZezIz1/f3+l577DHHcN4553Lv/ffx2ROPscdp51gppTzzSORfOGTLOJ0vy7RXnvPfx1n78ft8/7vfZc89p2ywBbMh17clsWecfRZ/vOP3fPiPh5h84sn4q6rtyHnhWhSvlRACPZVCjceYctYFLH33LZbNegcVjyM4JNG8XtLJBMtnvcvwPfa2UnCm2eM6g7BHaUHtyLF2cC46glzXWmUgavQQoAshhkgpD6pqGsy4Aw7BNHTM7NjegkIDu3xV83p5685bmXHnb4h1tqOqGprHZ/lIHi+qqpGMhu165Qv49Il/MGjCThz2kxsw0tZoX6HkKpQKjUFvMEh43Rpe/PV1VAcC3HPvvSiKslmimr3VSBsSnCr3XrfcditNtbW8/odb6V69Em8glP96UeSl5/ntmd89gSDRlmam3/UHGmpquO6Xv9zkgNrmvN4NDeTV1dZyxllnElm2kKXvvY3m96EIxxBJ4dz0i9dK2P56RdNgDrriJ3j8AbuW3hnhtH5vW/gVeiKGUlDAVGqdM+pdTySoaGyiasgwsDgfGb66GGiCrtiCnkIoY4GJQyfvQf247UgnEjlfXOb+zYTa/dXVLHlnOrMesExHrz+AomlZOqJQrFlems+PxxdAAh5fgEN//AuCdQ0kIt25dk8yl07L5jmFgurz8flzT9G1ZAGXXXklO0zYYYtHikul4Xq7sZQ7j4b6eq665hpiq5Yz76Vn8QaDYA85tIKZIlsxW/hetkODlKD5/Cx5fybdi7/ijDPPpKGhoddme2/PeWthM8cJX/8GCjDnleeRuolQtez1yiLLq9RaCWLt7Yzd7yAmn3wmUkpMXc+PqhcG2dezzpmnjXSaQHUtwbp6sBqhVLIJ5Ja+FPSMa6JimhMB/9BddsdfVYupp/I3VUcqSPV4MVJJ3r/nzxjpFJo/kPN5S3yIaVi+055nXsB2Bx1Boqszq8GdBQyZmIiUEm8gQHTdWt69/y7GjhjB93/wA7bWsSkpt3LY8y+6iMqAn3cesZohZhh8JdtnyuKbNNOL/rPnnsKnKJxx9tllP7fU+W3MOW9pLMCknScxZfJkln88i+51q60Kt8K1KDMwJxuN162ipGnfuZTaEaPze/Xb/1QNH4HHH7AGYPawzvmfazXEUDQP5FpHy4Go0TNRCY9EjvP4AzRsP8Ea62ua2SsWSEchjMQb8LNmzqcse2+mvQkUTzeRMmvlY+g6w3bejT3PvQgjlcBIp3LCLWTuXzuXJoRA8/n58rUXiS5fwkUXX0y9nSsvlSor9M17eq6n53vjV26IlnP+Xltby9nnnEP3V1+w4sP3rUxE1l2x88aZNRA5MzXzHXgDftqXLWbRqy9w2GGHsfsee/QoULqh88orr/LLG37FxZdcwuVXXsWDDz3EmjVren3Om3K9vd0MVFXl2BNPILVmFeu+/ALN583eD0JIq1lE5r4ot1ZCkAx3Uz96LPt/70pbG1vFXelkAl9lFeMPPdpuZGn2uM5FnyuK5EXZGoK+uYNxIfs9BdDo8Qctf0Q6Va2z4aB1rZovwOpPPyadjKMoak7IHdVxwuYcG6kkQgj2uvB71AwfSaytNc/ft/V61iRDWB1h9FSST55+gkqvl5NPOaWk0G6I5ioVnCsXwFtfqm59DK9y2G+cfAp/+stfWfTuW2x/yBFWYEg6CfW5NXA2eLS4/Cqrv5iDTMY5+LDD8moaCq/9v888yy233MQ7M98tUlfDhg/nrLPO5rqf/RS/379eS2BTrrc3WCEEu+8xxerdNG8uEw490nrOlNmyYVmyPVTBWklBrKOdnY47kY8fe5CVn8wi0y9i73O/y7DJuxPv7Mgv1SxYZ2fbG2G7n6lYFD0eh/zBEAPOdLcnXYgKoNpbUWH5j1hRSZGtF8wPlCmaSqytxfpdUfNqG3BodGkamNJkhyOOY8IRx5KMhLMdRXNxD/u9HeaA5g/Q/NU81n70PkcecwxjxozJ08ilbp6Fixfz3HPP8/TTT/P000/z3nvvkUwmS6Z3ykXgC/PE5YJrPZmj5bAAe06dys477sDc118h2tqCx+tz3LhO81TYyiZHoQTJovffRgMOO+Lwkp8JcPWPfswJXzued2a+g1Xj4LWDoz4QCqtWruSmX9/IIYcdxsqVK7PYzX29vcUCTJw4kab6elbN+QwjrduMP5GXKssX8tJrpScSeCsqmfadH6CqGoahs9e532Xvi75HOhazpuHmmfT56+xIsln3oddHrK2ZyLo1kBsooQ1EQbfCa8KaQhqsq0fz+pDWgPv8dqpSZAvaTcOgwm5BZNqvzUbmM+uoCHQ9hb+yht1OOxdPIGAH+ER+0jIb4Mva8mg+H6s+/xRMnSMcXGrnTZk5Pvr4Yy648EKOOvIojjvuOE488UROPPFEjjrmWI499jgefuTRvIKYDQm+lSr66G2OuRQ2FAwyebfdiS75inDLOhSPJ6edKIo+5X5VVVLxOM0Lv2L08GGMG7ddyc///e/v4NZbrPSjxxfA4/NnsxRCCKv82BdA0Ty8O3Mmp595FtFodItdb2+xI0aMYOigJpoXfGmZ3IrI9jMoXIv1rVU6GmHMtP0ZvtueAOx49PFW2i7bpKI8trB+W/V4iba2Em5dBxaZpWOgCroAVGmpcD0djdi7npKnmXPCaa1AOhZnxJ774AtVYpoGilKiSsqeJb7j0cczeu9pJLu78vOjMifY2feWloWgJxIs++gDqgIBpkyZUvamue+B+zns8MO55+9/Z9HCBdZ7qSooGl0d7bz22qucecbpnHHmWXR1da/35itX8bU+C6A32MwxeffdAVg7f65lIqpKbk1Eqa8HVFUj0tJCZN06dpo0iYqKiqL3f+edd/n5L36RFfJcEU5hIEuiqSpCUZnx5hvccutvtsj1bghW0zRGjxlDtKOdWFeXzQvogXlSbq2EQE8m8VVWsdPxJwEw/5XnSScSdkBN9LjOTkaWUBSkabL2i9kY6TQCFmCx1yRbYMjDlhZ03c5rRYBwrLODZDSS14sr16VDZs2mdDxK046T2P20c6zAh65n02NkUxMp/FXV7HH6eWheH0amVxgyv+GbzH9vIQSpWIwVsz9h9MhRjN9++5Ja4O577uGCCy6gs70dRbM0lcfrxaN50DQNj8+qeQZ49JGHOf2MM0k5GhQ43YD1RY43Z55+8uTJADQvWmgF45ytscpkbhRVJdreQqJlHWPKaPM77ryTrs4OFI+3fAbIEQ7QPFZhyZ13/oGVK1dusevt7TFi1ChkJEykeR2qfW49X4cs+/l6MsHoafsTqmtg7rNP0bliGZrf73AZ13eOEtXjJdbRzrJ337LkRCif2Om1FNYYpwEl6FFHkKEzHY8TbW0pvWs6qmYMXcdIJtn34ssYOWUfDD2dDbpZcmuVHow78DCG7jLZSqcJRyM/IfN24RxVSYKikIrHCK9ZzbjtxuW1Hs4IxZfz5/ODH1yGqRt4fH5URbEFNneqmd89/gBC1Xju2f/y29/9br0aaUsfw0eOJKSpdK1bY3++Y15ZORWmqCTDYUgnaBxU3LV19eo1TJ8xw9L+ygbcIkKlq6ODZ597jr4+mgYNAj1FItyFUNQy+TTWv1ZYhS41w0cx/tCj6FqzklUfz7IbU4j1YjP3qL+qilWffcQKa7b7PCnNRdhTY9gK45c3t6DbzjimEGJpKhZh3bw5KIpqB4RLJDBlriLJV1nNSX+4hwmHH4MpTdLJOEJYhQaaz88ep5+DUFTLHSiIlpbb+VWPh2hbC0QjjB47puRrrrvuOuLRCJrXX7RfFPULlxLNyoPyqxt/zbKlS3tlgq4vhdRbzVX43hUVFQxqGmT120smstaTKDmWVNpyrhDv7ARg8JChRZ/x3vvvsW7NalTNk6+sZIHyEqDrOulkAsMwslr9jTenb5Hr3RCsqmqUjL6VwJZfK+t30zDQ/D7GH3GMpRhefBZpmCiqul4sSLRAgFQsyqePPUiiuwshlJewJq8a9r9yoAk6WUFXlAWAseqTD0lGui0T0GFqZ+mVGaFXBImuTiqbBnHi7//GQZf9mGBdPYauI6XJdgcexph9DrDGJWW/MJGN62VcAllQ5aRqHmId7SANGhoai77cefPm8dRT/y2KoxSHGPPsORTNQywS5oGHHi6Kwpcy/9YXSOopndQTNlRRweAhQ4h3d1tDKBSRO2HHYsgCYTdMyy0MBAJF77nU3rwUVXM0CyhWXOlkAmnohCqqMPW07XLB2jVrttj1rg9bNkpvp3ilsyTW+eWWXKucm2kkUwzdeTfqR49jyTszaFv8Fd7M2pXDSglCwVdZxZcvPcdXr72IUJQFEvkmVg/FMPmjnAeURo8CmjTNhcD8lR/Nonn+PDyBYK6OwBlRzzCI7DeIdbajKAqHXHMdp9z9KNXDRlgpk+NPQvF47QaJxdhs00iRK5qxrEnNynciLXOu4Hj11VdJpxLgyN/jcPedWRLDMEmn0pimiWo3Hpg+ffp6/cve0DA3FpvFOxYlW1pcmLrIXIhjFE0poYrFYnmbgjOJkYl56qkkldU1/P2ee5j92Sdcfc01SHvzQKx/PbbUWhVpf9N0zFgQJVpK9bRWuYtPJxJUDB7MhCOOIRWPsvTdt1E8vnzzrxALBGvqaJ73BTPuuBlD100hxKNImfFn27dGIG5LCLppC7oqpWwWQsyItDUz97mnQVi16nlTEpxdGjNUYduMN5JJAjV1pMLd1I/ejlHT9ife7iyOKcAWJkalKArAaI6uIJmbY8HCRVlTr7DBXy6MIEindauMVxoYegrDdh+WLltGZ2dH3k26Ps1e6vlSdNjeYEXR62XxaKFs0VauvDCzjrpefJ9VVVVl3106MkSZjzENEyklF154Aeefdx5jx47llptvZr8DDrT9erVkkHJzXG9vsABtba2ganhDlY6qTOsinGvR41plLl6ANKx8/Mip00DAV6++QDoeRVGVklgpJf6aWsIt63jl1z+jddECFEV90jSMt23fvANrUpEYqKZ7NGuOCDEdIdZ9/uQ/WT37YwI1ddke2EXbvoOor6gaEsGXL/6XaEcbE48/iYr6Jpsf3DO2uAukyAZjEo6Cl8yNmMoOVSzYlJ3BmHQaTVM5/4ILuPfee/nmt75ldQQFwuEw3d2Rkn56qRx74U8pTdZbbObElUxFXLkGZtlGCLbGN01C1TUALF+6pOh6x44dawdJ00W8AQGY0oodFQ5w2HVX6+/hI4aXPe9Nud7eYgGWLVkCgRAVDY02KUVQ/EWvZ60K8u2pWJRBO+1Mw9jxLP/gHbpXr0KzMzH52TSFioYmkpEwz197GQvffAVF1WZLaf7DDr7FgXWOmNaA0+jCNkXaAUWa5hJFVf8b7+7ktZt/TiLcib+yOq/uPV/rWiul+f3E2luZ99zTqB4P4w87CtOwfPViZkJhgE/m/UgjTbDGov2uXbu2SKNnTPCiKryM9jJNpKlz8snf4u933825557Lo488wv4HHgSA1+vF5/OW1EQ9+Z8bq+EKn9d1nUQiaQXhlBLFH4UXJCVGKkXd6HF4mobw0az3iz5r6p57MnT4SHuqqCiqVMyUKb/3Xj727bffBuDAAw4oWufNdb29wRqGwcIFCwg1DqKiocEWdFlyLda3Vs70mZlMUjVoCOMPOZJ0IsHSd9/GX12T996K5qFi0GBaF83nP987j/mvvoAQ4ispzd9LKZttq3eNrQy3ijbfksG4SNaEN4xnFUX9cOm7M5h++y1owSC+ykqr9jivt7rDxPb6WDt3NmvmzmbE7lNpnLBTXu/3vOCQLIh25u0DwqIG1taBotHZXtzIYuiwobZAG3nfcaZ8OWOiH3H4EVmMx+Nh32n7WFHrwYOpq6sr7TeXiO6Wm1BSqKV6i41Go6xZvZJgTS2+CttMzfKtZVEqE2HN9q4cPIT60eOY9f77tLW15aemmpo47LBDbKHRnVBb0C0r6YEHH+S23/6ON9+czsWXfI/PPvmE6ppajjryyLzz3pzX2xvs4sWLWb5yFYO2n4Dq9dp9EBx9w0V+cVVPa+Vsx2OaJormYcSe1ne//IN3rOIXRUMIQbCunkB1NfNeeJp//d8ZLHrrdRRF/RghbpWmuQKLsbYKaLU/0ByoGj1zpyewRhgjpewA+SchRPt79/yJ6bffjL+qBl9VdU42HVVWQlGQwJKZVpBr+8OOxuPzYaZTpZznPGx+Ht2SVCOdpqK+HkIVLFm0qOiE9502zULbN7QosNgyJZ8rV64oyjUD7LbbZDx2WqlUb7OeIsHl/MsNwba3tdHc1k7N0GGomgdpmjmedVG/POtX09Dx+AIMn7w7a9o7+OTjj4vO4aorrqCuvtFyUUR+BERK0DxeYpEoV115BYcefjh/+fOfALjmmmsYNmzYFrve3mBnzfqA1q4uxkzZK7smebOwHYuxvrWSDqWBlKRiUYbsPJnKpsEsmvE6XatXUD10GNXDRtCy4Eue+dGl/Ps7Z9GyYD6Kqr1gSvMmaZqZHOxKW5vrbOVjS2j0zEp1YI2cUU3TXIgibgY63vztr3jhp1dgpFIE6uoRioKQIrugqtdLtGUdi2e8ga+ikpFTp2HqOqYpi81SKbLkfmeL3ey3JCwTz+MPUDV0BCtWrnT45NYXu9+++7LbHlMoFS4WWTNV8Oe//pVnn3+eZDLJPffeyxNPPA7AmSX6npfTOD1pplLWQG+or7M/+5Q00Dh2OyQSmaVN5gffshupkEhpmbIT9j8YgOefeaboGiZNmsQdv7/dSqMl4jn31TEu2OPzgqJl4xUnffObXO2Y6LK5r7e32Ndffgk8XkbuvqftJppZ6mhOe9tstvWslZPuLIF0PEb10GGM3md/Yh1trJ3zGc1fzeOFn17Bg6d9jY8fexBDTy9TFPVW09D/iJRh+82X29o87QhcD2hBz6xa2r6w1YBHGuZ7QlFuFUJ0vnvPn3jy0gtoW7yQUEMD3opQtjOs5vHSsWIZa+d+zvDJU6gbNYZ0MlGgVfJ9dOGohJPObp9SgGmi+fwM2m48q1auZMmS/OCTpmn86Jqr7bxwPN89sK03zetj9YoVnHDCiUzYcScuOP8CopEIxx53PAcU+KOltNLG5IZ7i/1o1izLhdhhJ+vcTed+l8s+SMccb0zQkwkG7ziRmgkTeeqJJ2hpaSkSojPOOJ1bb7sNVVVJJxOkkgnSqRTpdNr6SSbATqmdeNJJPPzgg6iqukWvtxw2g2lubuap//yH+kmTaZqwE3oinufKicxgzUKaarm1KsTatNSRUy1L8PXf/JIHTjmWmX+7k2hrS5eieR5HiBtM03jZNtUTtpCvtGVCbm0h39KCjm2irLSFPSBN810hxLWKEHO+ev1FHjnjRGb+9U7iXZ0Ea+vwVVYiVJWl77yFlCaj9z0Qf1U1pp4uS3EtDKrk01QtDacFAozaY0+au7p47733im6uk7/1LS686P+yRSAUDGEUAjw+P6aeZtmSxYBk2PAR/OmPfyipZXvyN3ubG14fFqwRzDOmT8c/bDRN47bHTKdytN0eaKogMFIpgnUN7HbSqSxZvZonHn+85LlcecUVvPHmm5xw4olUVNVY96hpWD9CYbfdd+eOO+7kySeeyBbf9AVNNfP4Px5+mPZIhN2P+zreigoMvThTk7cWvVgrCtpLGuk0I6bsRaC6juav5pldq1YsEYr6uBDKNaaevgcp12AVxKwBviQ3jaVPhNy65i07e021NxMfMAoYDphCEUOFon7N1PVjAP+ovfZlt1POYuz+B1E5eAiPnPENFk5/hbMfe5bhe+xFMtxdYJY7IuxClM7LOzZtf1U1q+d8xr3fOJJTTvwajz3+RMkikYu+8x0eeeihXNDN50MIBWlK0nraurmBUaPHcN+993LwwQf1vNuVuTl702ShJ2zm8ZkzZ3LQfvsx6YwLOPbnN5GKRHKtjUqM9y2c+OmrqKJj+RL+cvzBTBozik9mz85q5FLnNHPmO3wx9wtaWloIBAJsN24c06ZNy/aa21LX2xPW+XhHRwfTpkxhcUeYi554kcqhQ0nHoo57A8oOrFvPWjmxms+PlCb/vugMFr8zPS0U9XppGrNs4VaxylrX2UG3qC3c0vHvpmnRjZDZLc2FNR3BuaX2RY6QpmyRpn6voqizpWkcuez9mVOXvz9THbHH3gzfYypr5nxC43YTqB05Ouv/5bSryGetFX6JzpGr9peXjscZNGEnGibtxksvvMi6tesYNHhQ3g0dDAZ56IEHmDJlCnfecQdLFi8mXdBowucP8M1vfoPrfvYzxo8fX9aU7I2Gd0akNwYL8OiDD6EDEw461Ko9MM38CMN66JPpeIyGcduzxyln8OH9d/HoI49y5llnlv3sffedxr77TttgBbA5rrcc1om78447+XLxYg688jpqRo6yZ6aXm1HFBq2V83kjlaJq6DAGTdyZxe9M9yClz77HTTsu1WpnnnSHgPeJJt9aGt1p+yhYHWgabc1eZUdJKoSi7CxN42BgVyzqHlPOPJ8jf/ZrUrFYfhmjU8CL+piXbgIghMBfU8e79/yFV3/1Y/54551c4hjaUJjGWbFyJW+++SYffvghiVgcoamMGzuW/fbdl3322aestuntGvV2xHJPx5q1a9l+zBh82+3E+Q89gebzZjvt5hTSephVUuKrqqZr+VL+dvIxNGkKn8+fT011da984w3RQBt7vb3Fzp07l9132QXfyDFc8O/n8VdWk4qEy486LVLe62Oh5c8Vqhw8lE//9QhP/fAipJT/AH5n++ArsSreMopusxfF9EeNXpDkJmn763GsvtZNIJPSNN4DPheKMlqa5hmqou4yaIeJ1ryrcNgmqRX31s5x0R3Bk7x0m8yORjZSKcYfdChv/qmBP//hD5xz3nmEQqGSUdsRw4dz5hlncOYZZ/TKJC81uWVLH7+/7TaiiQQHfftMgnX1xNpbCxa9oC9a6R2bVCRM/XbjOej7V/Hyz6/m6iuv5G93391r4esvx3nnnEPSMDjuimupbBhErKOtBEupPE11vWuVz7Em2d3NoB0mEqiuJdbZPs422cO2+Z6mnx3KVvoc6djdMpVzC4C5dmQ+BXRL0/wESFQOGsygHXe22gAJkW3ZTKlo6XpoqhmqaToRpX7Mdkw9/VzmLljAgw88sEnCWa6mfUvTVMFi3N3629/SOHEyE4/7OslId4HZTq/ok2AVCiXDYfY64zxGH3g4d//979xzz72b9Zy3NPb//u87vP/BB+z9f5cy8fhvkLBnmJesoNwImmoprJ5KUjl0KA3jtgcYqSjqEPs+FvTDQ9mKn+X0VUxbuzcD8+3oZCdC1ADjq4ePonbkaIy0XrChyhyrzMnAEs6bIJ+mmnXhDQMjnWbKKWcQaBzMr37xC1odFWHl0ju9McvXlxranDRVU0rOO+ccJHDENT8jUFtPOpFwFA45blJ7MYTdYkpRNauvuKrYDROtxUkn4whF4cSbbifQMJiLLjg/23hic5zzlsT+6sYb+dvf7mL7Q4/i0MuvJR2LYqRTyDz+Q05Qe0dTZf1Y08QbCDJ01z0AGoWijLHvaW0ry1W/E3Tnyhq2sKfJtdJpRcomoKZh/I54Q6FcIE6KXE1DXg9u68EcTVUW0VSd2HQ8Qs3IMRx46VWsbm7m6iuu6FEL9zQppLdtjXvz/htC27z+Zz/jvVmz2P3MCxh/2NHWeOgSJqqiaHiCIQI1tfiravAEQtaPP4jHH8JXUUWguhZ/VTWq10e8q5PaUeM4+Y9/x0RwwtFHlaTgbg2qaW+xN990Ez/76U9p3GlnTrjtzyheH6lo1O4+5PCpM41Ie01TXT9WSonmC9A4fgew2JqjMzFb+6dfHVoffa4z1eC1zyOClYKjYex2eIMhYm2tJQKghcR+gZPPXpQOyZu3ZZKOhtn1xJP58tUXue+BBzj8iCP49mmnldQW5QYmlgrgFf6+oUGUwgmupY4HHniAX914I0277M6hV/6EVCSMkUrnSrKRaH4/Hn8QQ0/TtXoFXatWElm3lnDzWtKxmPU61WJXVQ4aQuXgwdQMH4W/qppkpIux+x7EKff8g39edAbHH3UUTz33HIccckjJ81/fOW/K9faEjUaj/ODSS7nn3ntpnLgLp/zpfkJ19URam63Cq4wOyHR+dW4cmSEXWSVRgqbaC6yUJqaepmbkaHyBEMl4dEchRK2UMt6HctXvBD3fQsqNWh7r8fmpHj6C7Dxrh6SWN/lEcURV5D9vYRXS8TiBmlqOuvYX3D37Y75z/vlsP2ECU/bYoyy5otQGUM5/7E2qqJQpuj78Sy+/zMXnn49WXcfXf/NH/JXVxDvaEYp1fprXi7+6hkR3F1+99gKL33qDNbM/oW3JIqv/vWnkLbgiFFSvj8rBQxg8cRfGTDuA8YcdhTdUyaTjvo5+x9088f0LOP7ww/jTPfdyzjnnFG1q6zvnTbnecmv4+eefc9n3vsfrM2aw3SFHcvxNv6eicZAl5Bl3RJROi+UHcqEsTbWXWCOVombEKKqGDqdl0fzRQLVtnVbYgblt2nQvtdnoQA0wvsb2z9OJWJlAyIbRVIuxEO/qYPBOO3PqHXfTnUhw/FFHMnfevB79xEJqZDnttiVoqk888R+OOfJI4oEQp/31AYZM3NnqmpOZKxcMonp9zH/5eR6/+Gwev/hsPnjo76z87CPidmBKCAVVVVEUNVsUk07GaV+2mLnPP8VzP72cR889mdmPP4qRSjL5W6dzxsNPYA4axrnnnsvZZ53FqlWrioJiW4pqWviYbhjcettt7LXbbrw+YwbTLr6cr//ur1Q0DiLe0YFw3so9UE03haZaiu5bNWgINSNHAwwC0WS/i8f10Yv3zwrAtANxY0INDVQOHoqRSjlqkLGj7+Voqg4joYCmWoS1XxZrb2X7gw/nuJv/wNrWNo476kg+sllcpRodbA6/fWOol7/77W/55je/gayo4tQ/3sPoffYn2taajR/5KiqQpmT67Tfzn0vPZ9GM1zF0Hc3rw+O3hi5oPh+q14uieVA9HhTNg+bzZVtYZwYzrJs3h6euvJg3bv0VqWiY8Qcfwdn3/pNxhx/Lgw89xP57TeXe++7LUne3JNXU+dizzz7LflOncvVVVyGGjuTkux7hkCt+gubzE+9oL0ip0iPVtORzcuOwUpogFKqHDce6j+XITMzUFfRiQVexusaOACpqRozCV1GJaZg5UnjhCMwimmpBMzoHTbUc1tR1Yh3t7HnmeZzw27+wZPkKDtx7b/5t13yXMsd7GjJQ+PyGUi8LN5BINMoFF5zPFVdeSeXocVz4z+fY/qAjSHR2YBoGEonH5wMTXr3pOmb+9XZSsSiaN9N/XpSIIjv2yQKDSPV48Xitev7pd/6GWff9DSOtM2jCTpz6x/s49uY7WdIZ5vzzzmOfKVN44IEHiUQiG5Qi25AUYjgc5sEHHuCgfffl+OOP5/2PP2bf713Fd//zEjseeSzpaNTuUVAiy9IT1bRAe28K1jRNhCJo3H4HBEKRUo7orwG5vhb07OhoJOMAUTtytHVjSDNLTMndsxtOUy2LRcFIp4m2tbL7qWdxyt2PkAxVcvK3vsXVV19NZ1fXem/ecib6xtBUnc/947HH2HmHCdxzz73sdMLJnPeP/zJk512Id7Zj2rx5VVPxBEN8+Mi9fPjwPZa96AvkDabMfk6B1+McWe1cNikyU1ngnb/dwfIP38U0DQw9ydQzzufSF99mn4sv54Mv5nHOOWczafvt+PE11zBj+vSiuXTl1qynGoNoNMrzzz3H9y/5HhO3G8vZ55zD9HfeY/Lp5/Gdl2Zy+DXX4auqJtrehqGn2Ciq6abQVAuw1iRVQe3I0faMQcbYwWVPfxP0rVEC29PhxSqHjQrEjRJ5/om338XOXz+FeHubI4ieqV2y7kbnJNZcVVxGg9pR+LwJl+WxEmtySaiugdWzP+H5G37CyvfeYucdd+CmW27l2OOPW28+t6dpqhuybjNnvs3tt93GE089DYrG0T+/iSlnXoA0DOJdHWSokgC+yiralyziH+eeTOeq5dkpMnlKqbBQsKCgMLt8BQrNNHRMQ2ev877LYT+5gVQ4jGkY+Kuq8VdWs2bOZ3z+3yeY9fijJFcvB2DciOEcevjh7D5lT7YfP57hw4czaNAgqmtqSu7vLc0trFmzhlWrVvLlvHm88/ZM3p05k1U2XbZy3AT2OPFb7HjU8QyeuAt6PGZ387XN5oKJuXlaV2TCuKLkgmxOrK+iirVzP+fJyy6kfenidxHiCqRsxap53yIBuY2S2T4W9GpgsL0gf1c1z9FnPPIUo/feN+uHOvIZBUy1TP5Tlh5svwFYiURRFKvrbCzG+/fdxRt/ug3iMQ498EC+/8MfcvjhRxAMBnr1JWxIXXc4Eubll17i/nvu4dkXXgRg55PP5MDvXEbTjhOJtrVagxkyJX4CVK+PVCzKRw/fy4w7f4OqeRCqmjdLvqePddIG8pYnm1eW6OkkY/Y5gJP+eA/eYMgykyUIoeCtrMQbDBJuWcfyWe+x4J0ZLH5vJl1ffQmmVftQU1lJbU01VVXVVvDPtDdVRZBKpejq6qKtrY2Y3QiEyhoax+/I+P0PYtxe0xiy82SCtbWk43GSkQhSNxw+M45puaL0Bec9Xxiv3XxYTzBIpKWZZ6+5lCXvzlgiFOUSaZoLsKo/2/uLoPd1vk/BKp6pB5qC9fUEa+swdYOCUq/iSazOW1aUoan2Epsx/6PtbXiDIfa/+Idsd9AhzHr4fl577AFemz6dvXbbjeO/fiJHH3Ms222/vaMlcvlNsJyQt7S08MWcObz8wvO89MLzfDxnLgA7nvAtppxyJqP22hcBdK9Z6ZhXlzttzecnFYuz6pMPrc9RlDzNLQrux1JKvWTWKH/4J6ZpoHp91kDBLH3bJNndRbK7G08wyA5HHMP4Q44g3tVJx9IldCxfzLrFi2lbuZz2FctY19meNylF2o1AanYYzdhBgxk0bnsaRo2hduRIaoaPwhMMWdNeI2HCa9fmLkIpuIiSE1EdG4HzOxeFtRWbDysNg0BNLcH6RoAmEFV2FqkC6Owvgbm+FnQBGEKIOillY6i+CV9VtdUsQFD0BWwsTbW3WCEE6XgUPRln8I47c8JNv2fKaWfx2VOP88F/n+D9667np9ddzy4TJrDXvvsyaZdd2GGHHRgxcgRNjU14fT78fj+KopJKpUgmE0QiEVYsX87q1auZP/9LPvvoY95/5x2WrVsHQHDM9uxzyRXseMiRDNl5NxSPRrK72+pcWqDBFI8Hb2WVpR31FF2rVhZvKIUp4GJ6fomJqKX/TkWiRNespn7HiXh0PavVM69Lx2PW+GBFRfP5GLLLbozcc29M00RPxEkn4tYU3MLsiKKgebyoXi+aP4A0TfRkAiOZtCbxZOr2C3PesNmoppsLa5omnkCQKmu0VQgph9qvzpTCuoLuSEVUATWh+gb8VdVW//ZsO1aHtimcZV20GcjiMpyNwErDJN7ZgeLxMGTirgyduCt7n3UBKz/7mAXvzGD5F7OZff+DYOr4PB6Cfj9+rwe/z0dDfT1ej5eu7m46u7pIGzrReIJoPG69fU09g8bvwJTjv8V2+x7I0Em7EqytRQiFVCyKEUnnzEkHM89bVY2RSrHqneksef1lFs+aReviRfaEmR66Bq/PyyoM3Alhd02F9oULePGKS5h4wtcZd+zXqRg6gmRXJ0Y6mRvoKCXSNDBSBkYqRbIbhGr15lc9XoRX5J+eyEWs0/E4yWgETLPoesv7ILK0yd1HWGlaF2YLOlKaQ2y56lcMtr4WdL9t5oSAymBdPf7qGqLN6xzmk8xp41K2Zi9oqhuHtVoGJTo7EKpK5aDBTDr2RHY+7utE21vpWL6UjpXLaVmymLali4l1dhANh2nr6sCMpvEEKghNGEkwEGTo8BHUDR9J45hxVA8ZSvWwEXgrKpCGiZFOWVRcp9/l8PEVVcVfV0/nwgV8dt9f+OSpJzHCXUybsgOj99yBGR98ga4beDxKUW/6DQ+lCFKJBCA55bj9OGD3HfjzfS/w3K9+zvavvMzU//seIw86HFMPkIp0l/wQiQQTDDPd+3td5Hq1CUp9VyV2rhKf2ydYe9ZAReMgNI8PPZ1syFcxrqCrQABISUQTSBGoqUPzeO3FE3nrnvsyStBU7dRH6Rz3pmIBW/voiQRCVfEGKxi26x4M322qda7SzO4bmRy3IhTbd7Y2EGvKqcTUdVvzddu97c0cl7agMEfRNLxVlax6+w1ev+5HrFk4j0OnTebisy/gqIMnk0ikOPzcm3n3o3mkpIbHo2X3rrL9Fgqj7HaIQzcMpGEJ5gWnHs5frj8XrbGa4w6ZzN8ee4O7H3iRf553GvucdS57XnYN/tp6Eh3tRectSn5wwdDCMkGwgYjN7K5VQ4fjCQTQ08lB5DdaiW7rgq5kz0HKKoBgfZ1ttjv9Iueiy4IgnXDIrChxI29erJQSaeqYaR09mcjdJIrIJWRslpMuba/ExiElEjOX6stWW5GlQOJI3SiKwF9Tw/I3XuHFH/0QvbOFX11zFj8450g89VXQHSVUXcGjv7uES35+L8+/8THpZGbIoQaqgiIESobC65gzb5pW00zM/A5Hu00cy7XfOYFvnrg/6AaJNW2MHDOYX11/Jsccujs/+81jzHjwbtbOm8sB115P0+Q9SYa7kel0QcCzOHRSivJJniYdoFg7rR6orsFXVUW8u7PeVmCmbalu84LuOAfZCBCsrkWaRgFLzVI7QsiCvFDuixBZ84uSabQthQWLHy4M6zFZoC6lLGRHlaBAOmJBzvigp6Ka9q/m8cYvf4LZ1cYfb/4up556EMRSJNZ12O+dZPTYoTz3t6u574np/OuF93nro6+IRiKgr79RmdA8jB0+hH0mb8exB03mpCP2xNtQg9HWRSptBQPj3TE0RTDtgJ15docR3PDHp7njrv/w7Pcu5LAbfsOIg48k1d2J1PVc/lmUCQKUu95slmBgYk1Dx+MPUNE4iM6Vy2uFEPVSygj9qAlFXwq6s5dcSFFU/DW1mIZBT1TTkjRVKR0WVX/AynzDoCD11TMF0prfZSQTzPrj7+hcsoAbfnoep55yEITjxBMpx2kI4u1hAkEf5559FGeesC8fzVnKnAUr+HLxGta2dtEdjdPaEUEATXVVBAM+BjdUM3ZEI9uNGsT4UYMZPXow+H0QTxJf02ZbJTm/2TBAX9dBoCrIr39yGmNGNPGzmx7kpR9fwZE3C4bvexDpWAQMc6Oud1PWqj9gTcNA8wcI1TUA1ICoBbnU9dHzt04VqNZ8PvzVNXZqpVRKoweaqugtTXVrYjeeAumrrmHpKy/wxbP/5aRj9+fCUw+CeIpYIlWcShPCEv5ECq+mstc+E9lr30kQS6CnDQzDJKXrCARej4pQFDweDfxeUBWIp0jFExjRhHVKiijQXMJWaoJYd4xgwMeFZx2GIgQ/uuE+3rzxeo7+3Z9omLQryUzl2gZeb/lU38DASlOi+X34rWGeNQiqkP2L2NIfSC0K4FUUFc0XKDExdXPTVLcCVoqNpkCqHi/peJwv/vNPKj3wvbOPJFBfRTwaR8kaFzLP2BBSIqQkrRvE27tJtocxdQNNVfD5PFRWBKmo8OP1etAUBVM3SHVFSbR2EY/EMA0zO2e9aAC1/d6Zv+PxJCRSnH/WYdz007PpXrKQWX+4jWRXJ5ovsMHXm//cwMRKQ8cbDBKsbwDwIqnEKgQL9RP3uE8FXTqi73WKx4O/ssoqsFgf1XRTaKpbA+scJt7LSZ2Z57RAgO4li1j2wSymTduVPXYdg9ltT9gVIj9dKCl630zNfTJlkEimSSRSJOJJEvEU8XiKZCpNKq1jGGYumFhArMnP9OV/rshYEMk05516EN866SC+evVllk9/DdUfyF+cDaaLygGJtdKgHgL2zHnLfEeQ6560TQu6UxV6FY8Xf5VV9dVbqmkuVrLhNNUti3W2mu7lpM7sN6LQvnghejTCPntMQKsKkUyms+chRBG4IECU/1z2sc2KhUQsiRLwccGpBzO4vpJ5/32SdDSMoqpsPF1UDFAsSGngr6qym3qYjbaAb5bJLANd0EPkOnFITCNbkdVrqqkd9dwomuoWw+b8vA2nQFovCa9egV9TGDuqEXQj18AhmwwQVqon85h0xPvt55yv3yJYAWYkzpRJYzhw351ZM+dzupcvRfP72Np00f6AlYZJoKYWb7ACoM4WdNFfIu99KeheezUrgZC/uhrV67F3ytzUylx6Q5TQPA5KambB+xyb8dGdamE9kzpl/pTPZHc3ipBUV4ZyzSNkXngwyyt3Zu1knraReYSrLYE1dBPFo7LT9iMwk3HCa9egaN4Nvt5NWav+gpXSxF9Vg+YPZJSYUibct0366KZABIGAv7oW1a6Ks3ZS8ihYedNUC/dJ5zTVPseSa0UtHb5cT5M6s1Roq6gm1NCIbsLa5g5QlNzbyIJ8fPatRXaKrFMTO4PFuVPPaaJeY8t8bmaTM6UE06p5typ0enu9heUFAxcrpdUjwLJoqLWqlpD9xXTv6zx6pgG3lKbhiGiW2Ai3IE1182NlPnYDKZBVI0aR0E2+WLgaFKvtoSlzzTSkyE/ZOwdYOPcgVVXweq0qORSl2MUwTIy0Tlo3igpBMqcqCy4DR/hCVRXMlM78RatRvD5CjYMw0+mCUcRbhy7a51gp8QZDqF4vWCQtxXGPb/OCXqTiZZ65vHVpqlsCu6EUSDOdpn7CRGqGj+TVNz/mypVHUz+ollhXtCDFm4/NnIYqBB6fBxHyg2GSCsdY3dzJijUdxJMpDN3A69UYMaSOwQ3VVFUFUatDEE+SSqTsmhdJ0RR6x+dmhF+pDPLBe/OYPvMzBk2cQu247dHjiT6hi/Y1ViLxVVWherwAlQgUJKptxse2ZUEvKfmi2DHMBcBKTlPtLU11K2Pzxmv3ngKpx+NUjRjJTscdzxu338Q9/36Lqy/7OgGfh0QinS1oyXsrKQn4vRD0gSkJt3bxyQfzmfXZEt79+Es+n78Mjy+IRCEWjZHWk3hVhaGDapm623j222MH9tp1DMNHDQJVxYjESKX03HQSu847e9amxF8dJN0d4457XmRte5RjvnEynlAFye4u8ktI+z/VdHNgpWmiah58FZUAQSQ1WHMFvdu6RnfKtpR5fbvyi1ByuWPhlDw2jKa6NbFOTbthFEhpmqQTMcZ/7ZvMf+ZJ7vjLE4wb1cQ3TjuYQCSBjKdygUBVBZ8GXg9mR5jZHy3ghRmzefXtz/nwswV0J+KM324Htp84hTlzv2DFiqV8+9RT2G233fn4o49ZuHARf3n0dX5//7PsOn4Mxx26B988ak8m7zqWQG0lROKkk2lMM5dWUwR46ypBN7jxD0/xn+ems/PXvsHoQ49ET8Rz9f29vN58URrAWNNiG/qtXLoXZCD/hnA1usMflD0+1zc01Q3F5pfFbgwFMhUJUz16LAf+5AaevfRCLr7mLyxf1crJx+xFY10lqiJIp9N0hGN8uWgN73yykDffm8e7H80lmkoxetR2nHTyqZx40onss8/eNDY1sdseU1i+fAlnnX0WRx55BADpdJpPPv6EZ595lv8+8xw3/uVxfvf3ZzjhyL359vH7MG3XsTQMrQevZtWxKwpoCmsXrObGPz3N3Y88z5ip+7LXD3+M6guS6u7c5miq2SIjrNbPqtcH4AdRUXJ0q2u6l3ODSlBNC3ohFc1P73NsuZumDAWSfAqkkIJkdycjDjqMo275Pe/8/jf89KYH+dv9z7PThJHUD2qgO5Lgg8/m09zWTTxpMGzYMI494USOOfoojjn2GBqbmrKf2dzcTHdnZy5FaB8ej4epe01l6l5Tufqaq3jqP0/y78ef4OnXZvDK21+ww6gmDthjOybuOJKKoNVldtHyZv711Nt8Mn8xE/Y9iAOu/zWVw0eRDncVEHx6f72bslb9BSsNier1EqqttQVdhrAKZhR6bAG0jQl6cdlxL+iiogTVFNEPsLlSUlFk7vWOpmqmdZJdXYw5+gTqd9qZr55+glWffcyH65rp/OxT4uEuDjhgP75tC+qeU/dkyJAhJde2vb2dsD1soa6uruRrKiorOePsszjj7LP43e9u54orLmdZfSN/ePw90t0vEAz60HWDSCrBsLETOOyqn7HDyWcSqG+wyCzOZdrQ692UtepPWJmnCTTXdC9jnvdmIur/HE3VUXiRR4EUAmnoJDo7CA0dwR7fu4LJiQTRdWt47OJzEIkuHnr4gSLhLjVGqrOzk+5wGNXjpaKyouzrM27IpEk7ATDq8CP52nFfZ83sT0nF4wCEaqponDSZmnHjMXWdZEdb9ssTchOul4GNtbrb+vDX1mdu5xppEVtc072csVuWploYNCnMZ/ZENd3q2F7SVEWZAJAjtJ6OhEEIq4tJbR0d7W1MHDOmpAYv5UqEIxFS8Th1jQ3UFgxUKNWe2qtZlckpw2DIPvtTP2kyRjoFCBRNxUylSIa77aaOSnnfa2Oud8BiJUJV8fiDmftYpR+VwPYHQbeWVlFKm+1ZLZr5VZbxg0X/wUpR/kaSBfOQxAY8JyXhdWvRm9cydPLORZq5XLygtaUVkISCQYKhYAm3KR8bCAZREERbW4k1r8PUrcktlubKjLYXxb3u5Ga83oGGzdIksjR0lfKt9Lf60V/YaxjpdK7GuiRdlE2gmm5lrHAmDgs2AVFqE5Cln5PFm0+Gr6+q6no1eaF5XlVVRXVVdVFQrhBbVVVNKBAg1tmOqaezaT+rKUjBAqzvnDflegcQVpommtdLyOKkg0VV7Teme18KugmoUprdQCTa2oKeTCIU9X+Mpup05DZtyqewBa4nwS41xTWdttpPaVrvxnYHAgECAT+JSARD1/N46ltqMulAx2bGemk+n1OjF95E26SgR+0dTwfSRjpd3Bhym6Op9kyfNA0dXzCEEqqirbW1x7nszo1grT0VRnW4Rz2NMm5obKCuro6u5rWYqSRCVdgWqKabis20+7YP3eEea9uyoKdsQReWi65aTQtMtnmaajmsntbxV9cSHDKUlcuWEY1GSmr3zDjnjBCbpiyp+XsqFMpU08s8O/V/m2q6qVjTNFE0T2ZNq2wB92G1f95mBT2zFRpAytB10rE4QhXbME21wPcrwJrpJMG6OhpHjGT5unWsWLGyh3RlrgWWx+MpCjX2NKs8u6Fla903/pzFNoSVhk6wusbZfMLXXwJyfc1HF7av3mmkkkTbWhGqmt1Bi9NWDvNYOlJbji+pf2EFZckyFGwIRc8VY03dwBMI0jh6LABzPp+z3gAc5IpkpJQlny9+rIc00gae8zaFlVb2SLFcJNlDGmmb0+i5hJST6pndJfMpoVniS343BFvQ+hO2oPZdFEpNOQpkiaRuwY2lJ+KM2H0qAK+88vJ6tTlAvS3o6XS6xyh95jFVVVFVFdM08sv1NuacN+V6BxrWLjqSORNIkMunb/OmuwQS1rDBLivqnjEdC/KUObpoQVlq3u/9BJvXFbpg+mHJZSjxXAlsKh5j+O5T8VTV8OzTT7PODrTJHvgTbe1t1r9tbUTsUthy2h8gHosRj8fw+PwWkUWySee8LWGlaWQyI2Z+WmbbFXThiE52GHa1laIojlQVuWhnXsWSKChaKJEC61MseTRVNoECWYg1kkmqh49g4te+wZqWFv7x2GM9ptsWLV7Mr274pRV9X72Kx5/4T1lNnhX0eIJ1LS1UNw1C8/mtbMgmnPM2g5US1evLdJmpJtMXsR8c/cV0NyXCTk2Up4sWmU6OkTnlNNrWxxbEqovIEk5DpgdNUQZr6jqmrjP1tHMRXh+//sUvWLBwYcnz//Cjjzj+mGNYsmQpk048BW91HZde/F1mf/55j1/GAw8+SDSRYPC47fFWhDB1fZPOeVvBGuk0gdpafFU1GUH3uIKekwoDITqkNIk0r0XRNMpHggopbr2hmvYFtvxNI0tuCBYFUpaM3xRgBSS6Oxm80yQOuvRqWjo6OOmEr7Fo8eK8T/7HY49xxMEHMW/+fPa7+ApO/usDHH7N9YRjMY489FDefHN60dm2tLTws5/+lJ/85Fr8NbVMOvbr1g1s6Jt2ztsS1p5sQz8qf4X+MXsNJHHLvykTqNzWaKrrw5qSVDTKPhdcQsfKFXz62P3sPnEi3zzlFBoaGnnrrRm8O2sWCIVDr76ead/5AalolD3PvoBkdyev3nw9Bx98EOedcw7fPuMMTNPgqf88yT8feYT2cJjKYSM44aY7GLHn3sS7OvOHDf6vU003GduPJiv2I0HH0uiEkRDraEPRVAcNlG2XptoTFkgnYniDFRz1018xaPx4pv/tL9z7wAO2neZh9P6Hsv93fsDoffYjHY+TjkXwBENM+79LqRkxmtfvvJV777+fe++/P3czNAxmn9POY/eTT6d+3ATine1gmjn75X+carrJWGT/lPI+FnQDSNtLFQFIRsIWi01sQ9NUN5I+KRCkYlE8/gBTz/kO4w89mub589BTSaqGDKNp/I54QyGS4W5MXUeoGulEAlM32OnYExgxZS8WzXiDxe/OQE/E2f6AQxi1zwHUjhiJNAxibS35wcfNcM7/+1il8DHXdLcFPQ5UCohJSKeiUU8qYs3vMrN+IeSVHLIJVNOthZViq3zFQgj0ZBwjnaJy0BBqRoyylIppoqeSxDNjjB3176aeJtbejr+6msnfOo1Jx38d09DxBEM2zzycZay5x4Y6onmNQYUr6I5ou/1vCkimYzFPOpm0tLpeoDWFo/o6rwzR2aG1sMKpr7AZM85ZNykKJiMUDIGQBVojjwffM1YaBqloBGK9wNo3ZDoaJRWNomqaNWO9o528iB9b9pz/J7H92EnvDwUzikTGgGiiu5N0NGZF3vNy1oWVZpnnhGN4Qgm6aF9hM6yyvNLZ/IIMaVMbi0iMWwtr35qmrtvTVQbAOfd3rIOiTD+apNpfgnEgSQBRPRFHTyXxhkK5lEZmRnn2b+FQTM5gWI55Jvoam43YZ7aBAgacw88u9P8zhJIMU8rFDiCslAihZF7rt+XLzaPbh4rFTQ/HO7tIRcOOXLpVsy3KNf8QIn+oi3OaSB9jC6MxMktjFvZgw3wLMa+poxAudgBiDT1NoKYOv1UwU0c/qozrD3l0BWs2VSwVDZOOxy0GW2HsUpaegSV66v3VV1jpzK070zIOHzAb6MtMM8uZhHkRfhc7cLBSoqiqlSLuR4G4/uKjC1vQw4lwF+l4HEXVSgud6GH2RXEnoL7H0ttZHaIkyMUONKzNXjOLCO3bvEaPY+XSdSAsTZNkJAy5Tpr520GBb1z4AkmJfHdfYfNM/jK7gbPJhXSxAx5b/IJ+o9X7WqNnhFwVQnRLINHVadH8nCZUhk0mHCo270vJGMrOWeZ9iLWDNNmgjpQl6I2yrNaXNq/ZxQ5gbD87+kMwLqM3uwDine3ITNmlyN8pcwJVovUuBZtqH2NF2U2eouiuKKcGXOyAwvbnEqP+M6lFEgZIhrvtxc1pSZkJhpScW13gDhURDPoAm3l9ifRa1rdzzB4vwpKzClzswMHKflxNqPSbMxGiEyDe0W6b7rbZLGVef4ciC0kWM8YyQthXWBxuXcHI9aIITa59fI4iKaVwsQMU62r08ma7teEIupAYsc4ONTfWRuSKz2z1WLRpivwRts6gWV9hydRU2TlZ5y4hHBuFLOHfC4fJ6GIHGrb/Snp/afesSCk7gHS8o6OYLeZc5xL+k203lWYJ9gE210syv7Amb8qLEPnmYt71Shc7QLFWBsYV9MLDxMqhg5RxIJqOx0lFIvlDF7N2sCyoVivYDESpWYhbH5tPX5dFNfAijwwhi30DFztgsdkJPq6gFx0pWzrSQHcqFiEVjSBUrYB1JXNDUsrlPJzfUF9ihbMirtw45KI/8jWHix2YWNd0Lx+Gw6o6SQHd6ViUVDRijWcqsIGKilJ6spH6GptHZXfkWQsCfuU8Oxc7QLGuoPfop0sgCYTT8TipWNQSdErtrD29RYnX9QW2lInn3AiEIKsLRIFOEMLFDmBsv+oI2Y+i7k6tngS6kpEwyXDYFnQnXTSTttoYqulWxtrRnJ5pqgLKUSBtK8LFDjCsEOUqZV1Bdwh6CujWU0n0ZMKa2OJMc5Xony+EyBO6fBO7b7H5XYUccT1ns0Gc8R+ZHaVUlMd1sQMC6+bR1x95zzSK7Egn4tbEFmd/d5em6mIHAjZzQ7jptZJHwhZysBpQkAiHrekgJdJYLk3VxfZvrHB7xpVZvQyDTcPR9tnQ0yiFTfiktAYqlOzISulihb7COuM2BTna/HunvAZwsQMMK6wOvPaQRekKegkD2anRU5EwpqHnimaydFHBxlNNtyJWCKtgrtcUyPznNow+6WL7DdaUqD4fms/XX2Sr3wh6YZPkCEA6Fsk33fOoguXoouVa8vYN1qVtbntYU9fxV1Xhq6wCq2ecj1xLczfq7th04kAyEQ77TMNAEUp29+wdXZRiqmlfYF2a6raJFVYXWHsb8GE1PnU1egmJCQPxZMQOxili/XRRNoFquoWw2XsDl7a5bWGtG8W2AkxE/6mf6U8aXYBIgkynohGkriP8fkdOswxdlE2gmm4hrEtT3bZpqg4Gs9JfgnL9SaOrQtAJRBPdXcXBOJem6mIHAFb206qZ/lLrHgEMKdEzwQvTMPPSWy5N1cUOFJpqCVmXrqBbR8qxIO3pWJRoe5tDo7s0VRc7cGiquQ5JmPYbaK6g5+96JpCWprQWy6WputiBhgUU1ZPZITJR92BfB+X6VVIfpAEkjXSKdCxakKt0aaoutn9jJSBUlVBjI4BXCKUee25BXwt6f2KvZfrHtaUTCZLdXVZ6DTkwaaq4NNVtD2v9pno82MLtddzb0hX0wv1UKCiKmlu6gUpTFS7lc5vCZt4gv9ZdQN/T1PuLoJuOfw1pGhh62iFluDRVFzsAsNbvNqklcz+bgAcYBnQ7As+prSn8fSHoqiMSGSo4DwPoSMeixDo78jvBiuKgdqlIacnn+wrr0BK981zIezMXO/CwUihogYAd/5IC6HAE4yrtuJhKjp6dxCZz/S8Iuh+r9tdjX7QzEKjbAh62/+2SpmmVwDoLjv6np6mKTZjy6WL7E1ZRFEL1jZlnDxBCtCKIIWkD2SUhipRdQACoITc2PIbF9UgNNEFXbQEP2ppbsXeuLjtIoQohQggxCESVtQlIQ5rmkExVWb7WtKaaFpEPRK7iOFeqKPKIJX2BlXbKRYgyXSscJoDM61Biz/BysQMPmx2wmcGYpwLHI4nbQrwSlIWKqs4B5piGMQ9k2JaTBlvpRYD2zW3WbylBrwaqbIFOAZ2ALoQyRsIOSKaAOV5KOQQp64AKh6qsyAp6ARcwv/WeKD/VVNDDRNStg81+/+uhQApKUyAlLnagYtNpq2HSiYdP9Ywa0lCzcGVLzZqWTlY3d4xdu671ANMwsYRZfCJU7Vmk+Zo0zcW2aV9nC34HmeEm/VDQfUCtLeQJoBmoV1T1aFOKE6WpTwOGA3j9AQbVVzG4sYahTTUEfF4UReGL+cuY/dVyTNN01Jm701Rd7MDACkXBX9cAwNH778JFV5wCa9oxdINlq1r4aulaPpqzhGemf1r30ezFh+p66lBglap5HjFN81FpGkttYR8GrLVd2n4l6AFgiP17i1BENainS1M/2zSMvQHGjhrKwXvtyJRJY5m0/XB2GDuEgN+L36uhqirUVvKvh1/mlB/eSbS1FaHYTDAp8nq35ctcMV1UZCex2l/CVsaWDM7JAsXvNAQyqiGTtpHCxQ5ArBWrUfAFrBhzW0cYkmn0VBpFURg7ZghjJ47mqGP34coLj+Ojzxdx3xNv8fjLHwzr7Oy6Gviaomq3m6bxb6QMAIPs0+juL4IeBAbbPkZY9XiONNLmD0DfO1RZwaF778RZX9uXg/aeSP2YIdbKJZKQ0sEwMU0TaVr+TlWFFatLp1K2ryPyUh0uTdXF9l9sfm2MbphgmKR1AzAQKR0ZiaMqCj6vxrQDJjPtwN24evYibn/wJe77z/QdErH4XYrq2VdK45fSNLuBJvsNw30t6BkhTwihCEVTrzbS6csQmv+Ew/biivOOZv89JkB1CBIpkmvbMQwTRRH5iwX4kykStn+jKErO/RHFu20hNpPvlqLAn+oDbM5dL0i/2DeFtJ8TZTvL5ob1udgBhLVuXCqbrKj72tZO0NSiQI4hTRKJFGYiiUfV2H7iGP5844WcdPgUrv3dv/jgs6/OEpqnScD3pWlGbWE3NyUNt6mCHrCFPCmEoqOqNxrp9AXDhzTyi0u/wbknHYioCmJ2R0mu67CFIz8VlR9dF/mCJQujnw4znlKReRsjSkVOtx5WFNwQhakb4XxOlsrRkqXHutiBhRWKgsfnt4NyOo5KGksnSPv9hECRoBsG6bYufB6Vw46ays47juLsK/7MS299cpSiem6WyB+CTNtR+aRtNW/wsSmkFhVozNgqQlV/KfX0BbtP2p7XHvwJ5513DEJTiLd0kkzpjpRDIScgf8tU7SKZYhKBS1N1sf0fKw0DRfMA0BmOQSyJpgrbAcil36TjPhFAKm2QaO5k0MhB/PPOS9lnj50wjfQ3VE29BEHSSj9TvbHCuimCXmGnz7pVj/cUU0//34hhg/jnHd9j/K7bkWzpIh5N5tV7F2lDh+mbWctEyjLdpWmWLzvN2wDKmVYuTdXFbn2sNAy8wRDgIRKOQjyFqip579VTKi/R3EH1oDr+9otzqK6uwtD1CxVF3c3Or9v1JltP0FWsqp6YoqgTTUO/0uP18vBv/o/tdt2OVEsHpimzZoss0IJ55E4nacQ0aW7ttPz16iqkKUvsrJRZ8oFHU838vTH0SRfbP7EZqioeH/FkGlM3corCJsTk3SaOuouM55pq72bS1B254rxjAOok4uv2Dea1U9hbTdD99o8hhThRmubQi087ggMOnUKquQPDMO1ghaMnepbxI+2otFNMZNYU6gpb8QZfRSUSE5nxbexX58mQzBc0KZ2OgLWD9gk2k4O3BznkJnnYr7UjOHkmXMHzLnZgYo10Gl9FJd6GRlpaO4hE4whVtQN7Mg8rhM14k+D1ePDXVREI+DBME+IpzjhuH8aOHoY0jH2FoowgN7psqwm6AuhCiMHSMPYdPKiB8795IKQNDN0g4PMSqK7E69HsUlDhKCEUVmDLEcvIRi4Nk9aOSC6ynfmvTPv0wuZ8Im/nFUVR062JpcQ0VWTmtQ4Gs8hYfg5WVMEQCBc7gLCAomoomoZpGFbhV7ZCWuTXxtsPa16Nta2dPPPce7S2dxOorwIpGTOiiR1GDwFkDVbVnNzagm41iRCiHuSQSduPYMKYIZBMEaiuIBxL8PbMz2lp70bTVHuzs8gfhVWhGUJIZlkjsYQd25IF6TWR78/n+c89DLbrC6yUOVqj829Bfl2s3Qs8ayRm6uNLvZeLHRBYU0/jDQapqK2hubWLrnAcNNW686UjsGt/hhACT2WQNz/4kq9ddAvf+MGdfPnFUqgI8OXiNXy1bA0gYkiMjfXPNzUY57FyeyK9Ym0bzW1d0FhDR0snF//yAfb/9vW8/t4XeKpCeXIjCiQj47N4/F7we1i5rsN6XFWLhc6dpupi+znWlBLV68UbDBGP61RW+KEyaPvfBfP5Mn8mU+y18zgO2XcXZrw3h32+eR1XXfs3LrnhARYuWY2iqe9LaXbY/vlGafVNyaP7pGl2KKrn3fkLV479/q8eYr/dx/PHR15i6Yp17Lj9SHaeMBJS6WwwLteZRVr7owSfV0OpsqrhZn8wn1mfLQLVR7C2Pkfgd9JFSy68gy5KD1TTrYnNM/nXR4FkE+iTLrY/YaVpovkDhKqrWQvc+8R0vnfmkfjrqkh3RUnrhrPWEyklyWiCcWOG8OQffsjf//0Gv3/wBW7729OWJtY8b0tD/ze5acOJranRk1jccU1K43FVU9996uX3uPLmB2ltD3Px6Ufy3F1XMmnHUSSjiVyVmMPfURVBoL4SRVN49ZUP+e5Vf+HE799BW1eYQEUI1aOVmGpKHj205FRTUW4i6lbEiuJMQ0+qvmiIpxAudoBipa7jC4WorKnGBK66+VGOOu8WXnnlQzy1lQRrK1EUYfvuufGd8Wicquogl//wW7x8z4+oq6sFWC0N/W9SyjZb0DtsudtqGj2NxSuvlabZbEr5Z2B0qKJiyGv3/5ip+06CRIpEJG5pO5kTciEE/qAfqkN8MWseN/z5SR5/+QOMVApgFeBRVaUJSZ9TTTcHTVX0wINcHwXSxQ5MrDRMVK/XfkKumv7+nOHvfrqIy845kh+ceSRDJ46CrijpaBLDNLP96GKROMHqCtJpg3giCbBSSrnSVsitWHRvtqagg0WODwKD7ZNZZpjmEL9PA7+XWEtnNmAlhXWmPr8XaiqIr+ng7/c/zy/++B/aOroB5oN4AcEnSPldTzDYFKity5ruLk3VxQ4krGGkCTU02TeG/JdQlEgqGb/gN3c9NfSRp9/mktMP56wT9mPYuGF4NBXiSdANqAyAovDrvz1DPBZDKMoH0jTD9o3WxkaWv26qoCeBdXbYX0NRP0nEYnvffv+L3LffrgTrqyGZshZIU0EVpDoi/OfhV/j9Ay/w/qdfAcQUTXta6vrzErkaScB+LxSPJ5vP7guqqUtTdbEbi5USlFwwWZOm+ZoQYqWiaieuWtt64LW//UfoD4+8ygmH7s7h+0xiwpjB1FSFaJ7TzQNPzuCxZ2YiVM8qTP1FciPL4mzCrPVNEXSJ1T0mAQSFNJ8Tqnb8/U9MHz5iUB1nfeMAvJpKKqmzpq2L19+byxMvf8Dn8xbbylJ9VxHyCVPX59qmiWa/X4Xm9eINBB2tesClqbrYgYKVukFFQ1Mm+FxpxbLkckNP/0kRyksm4rA1a1v2+OsjLw396yMvUVtbQ2VFgNXrOtBTCVC0xQLzt6aUa7GqUDtsxUpfCDq2YHYBVVLKZiHl7SCuuuHPTwx+4OmZ1NdWEE+mWb6mjVgkguVjKHMVVUw3DeMTUxK2LyQCJARClUiv6vXiq6pyNNJn4NFU7T5zJSmQ9nOicIqn43pd7ADGIlF8HtvxkxkueSWgmdJcACxBiBdUVZ1g6ObYjo7OQR0dnZW2hbsQw3jZNOUSrF6La2wZoy8FXdq+ehUwyDSNjxRFuVGiHbd81drhy1eh2FHCDqGoi5HyCynNxaZB3BZw3Q7A6YAioR7war4AQlEdJIMBSFPtiQLpfC5rNcgSPr6LHYhYaRr4K2tQvT7MZLzK1sZp2/SuAWqQcrWh64uxqN6VWHUpSVPXO+3XacBq+yfNJg6B2ByNJ1L2yXgtYTe/AvMvCFFjm+QSKaPSNOL2yZr2ia+1ffwuLAH3g6wAAv7qahRNzZFaHHRRUVIQnbtuYSfXPsI6u8CWshJk7rrKUiBd7IDEStPEEwihaBok0TIZNPt+X4fVEy7TQDVpu7/S8ckRrH6La2yc2BT/fHMJeqYv9UpbezcCPqTsKHidYV9AxI4gdjsCDJlJqgHA5w0GURS1iNY34GiqGbOuJJtN5tVhiDLZOhc78LDSNPGGgpmAXGZog2kLdcyWAb9tmnsL3lq3XxO2lajY2Nz55hb0zPWG7Z2pzb441f7JDE+M2xeYcpgxzlFMEovjHgzW1KJ6vUjDzHd6ezwFCmKl9B3W6bjJ0huBdERxhSzDnnGxAxIrTYNgbT2q14d9T0tb1jSHckvb8qCQK1yTDrlwyofsD4JuOu72tO2zd9kn77R7TIfQOy8q+7uASglC9fkRioI0dMek0v+9aapiE6Z8utj+i7WJzZl7xGP/6LbFmplIZJbWLnl+gslmOjbXfHTnDmTYAp8q+EnbF+t8rfOiDGn5LMJfXYvi8WY7w7o0VRc7kLDSkHj8fiqamgAqhVCqC4pdnMrPKPgxC5TgZjk2Z1/3jLYWhenIgosrjB4q2aCd3T3DV1GBqqmkMqQWd5qqix1AWGHTTxXN67yTlDJ+31Y5lC3wnrKMryHLXGBmAKNh+/b4KqvQNG9+MM6lqbrYAYKVSBTNgy9UAbnZgya9Gdo6gAR9Y6wK1Rb2GlXz4A2GMA2jeO+zKa7Fe4XMLrAQZfbNrY11mvzZhmAlKJCUn9nrYgcmVpommteLv7rGUmTCFXSnBeAFKjz+gCXoplGaLsp66KL0QDXdWtgNpqkWsJ82iD7pYvsj1vLpza1uovdnQXea8LWeUBBvyNboZemisjhCVqiF+xibjcdJ8lsJ590MsmQwI29Sp4sdcFhpmmg+H8G6RisYh6hkM+TCB7qgZ85BBYKeQBBPMIR0mO4yT5OuJyNRgmq61bGO9Ix0GgMiXyMIR3ENhWOiXezAxUoQmoY3GATwIDauRfP/okY3bI1e5wtW4KuotH10m6bqDILKsqq0wNrqO6z1t3D0oRDZJpOFXeAzlMfMZiJd7IDHSgBTYhp6mUhe3wTC+oOPDgIvkgrNH8ATCCJNK1PXV1RTl6bqYjcaa5vuofqGjDKtYjPnxQeiRvfZ8uIBaj3BIN6KijzTvZAuWjJAIoU9o7qcM7X1sDl3Pb+wxtkjDCHKNpRESBc7oLESRdPwBitwuKWyLwNzfS3oClaeUQohQoDmq6hC83hzHWCzkWx7cQsq0vKE0tGjsS+xRdNUC9IveZM6S1XcSBc7kLGZFxi67nRNLX+9j2Suv6TXTBC1gCdQU41QCtJT7jRVFzvAsNKUeAL+jAWYYbD5sNLI26SgZ1aqElB8lVU4OjwUrK07TdXFDgysaeiZghmkadY4BFzZlgVdImUVgL+qBqEoJZxed5qqix0g2GwAt6gxWZ9F37V+IOTYYeoaJHhDobyuHn1GNd1Umqp0aarbLDbLj8juAmZfC3tfC7qTd1sBEKipQ1GUPE63MxZSTBeVjhnrIm8P6UusLEFTzUysQRa5emQG7glRIo/rYgcWFlFK2/dpKWx/iLor1kYoqwQCf2UlQij55q87TdXFDjCsqRv4q6rRPF6wesR5t2VBD9oLYGt0ia+yClSltNANFJqqozGBLJWcL+oiK3IYJwvKxQ5QrNUJ1hsKofkDgD2YpA+1el+b7pnPDwEhb6gCzR/IL5aBgTdN1enjlZrUmWv8nt81tmQA38UOPKzIRNszfvpm6/02UDV6pkGFHwj6ghV4Av6coG8z01Rdyuf/HLafHX2t0e2NRgRA+jW/H9XjzfB43WmqLnZAY11Bzz8MkAGgwl9TizdUianrBTI0gKepyuL+YhmNsN5JnS524GLzw7HQxwy2/lIC6wE8UlqVSP2BarrpNNUSxoGkDAXSeYMUUiBd7EDDOt37/qLs+4VGF0JUSCmrg7X1+KuqkVker0tTdbEDECspLqToHz5ynx6ZpVA0rxdFVTFLNehzaaoudoBg+1WDtn4k6JmZa37F40HxeMA0i6OfLk3VxQ4Umqp0Bb2koEurcMYTqK7GF3K0et5WaaouduBjXUHPO/w4pkVKQHHORd9WaaqOWmoXO1CxrqA7A4F+QBU2ocXjC2CaZrEguTRVFzuQsP1Qwfdl1D1XcyCpBQjVN2LoaYdH5NJUXewAxGbbQAunQhXbqqBnFiC3Jyr5UyxdmqqLHag0VUXVSIa7SSdiYM1BT7ONNp4QhZGOIjJLnu53p6m62AGCFaCoCslIONMgstsWdKUvNWpfHpkV9QEompYzm8tsCwNmmur63rPwgVJllC524GIlKGpWj6q4JbAoIOuFEFQ0DcLQjZ6nmrIJE1H7AFtyUmee3edsWFAiruNiByw2S87qB3G5/lIZpwoEiubJj2RvDF20P2Bdmuo2j1U0jXhHh3V/KErXtuyjl1CNZq5WuB9QTV2aqovdWKxQFMx0OuPPR2TOR9e3ZUEvMJf6AdUUl6bqYjcOK4TANE0MI11oPSeA1LZsupcJYLk0VRc7ALFCQU8miLa2gsXlCNsBOZM+qp3rD33dRckAVsZo7jVdtP9gy9NUxSZQIF3sQMEKAZgmRjKZuavTsG23ey4V4N5IuiibQDXdvNjyNFXH8xtMgXSxAwWLoqCnksS7OgCiUspIX8tav/HR8zrqlmKL2SpWSOGoVhNFi9wfsEU01QKfJI8CKQt2lLzAnosdkFghMFMpEl2dAEnbN9/m02t5ciWzwoFLU3WxAxIrhIKeTmc1OjLrowtX0AGh9MASwqWputiBgRVCYKbTJLq6AGISGe5rWesvgq70FOhyaaoudiBhFUUhHY8T78xodBmxX5ncVn10idV0otOUJtHWVoSqujRVXMrngMZqGpHW5kzUvZ3coJL4thyMkyC6QZKORRCK4tJUcbEDGasoKtHWZtKJOEAbVjWcSW400zYbdfeAzV4rGeiiF3TRMtVrfYHN5Fpl7i4pokBm3YIyFEjHvC8XO7CwqsdDeO0aDKtteUbQ5bYs6BlRSkogFYsjFKW03K1HJp3TS/scmzXpcjt9fli2IEXjSN3lXAPhYgckFlSvl3Dz2syG0Cyl1KFkyfw2IegGNqNHCtqREO9oQ1E1RGE3hwE4TTWzw2/MpE6Rt4e42AGFFQpS14nYgi6hpT9odKWPBT1h/24CGHrKavWsFCy6O03VxQ4QrOrxEOvqzNS5xwV02XIWo4+Ya/0hvWZgiXUUSCa6uknFoqiZzhxl6aKl20HnpTv6GJuN52TIECVuCllYheX0Z1zsgMSqXi/xjvaM6d4iJR12DMroS0HrD+k1BSu/mEzH4z49mUAoSsGLXJqqix0IWInq9RFrb6V79QqAZpCtWFVx2zypRUgpY0AkEe4iFY0isr22eqaLygJhk/SearpFsfRMU3VGIDZqUqeL7Z9YBIoiCK9bSyLcDbAGy3SnrzV6P+GjixgQSUcj6Ik4iqpmn8rtliJbhEKBh5yjhhZSTfsImwnRSZmvAXB0K7FHRJeiQAqnT+hiBwxWCIGp67QvXZiJuK9wWKzRbV3QNZARoCvW3kYiHEZoWhmHaFuZpupiByQWgWmYdC5flnmvZbbZbvRlxL0/CHrGQgoD3bGOdlLhbtRCQd/mpqlKFzsAsUIR6Mk4bUsWAaSQcpktY2Yfy1mfC3rCTjmkBaLdNA2ibS0gzfy8pUtTdbEDAGsVyqwj0tIMsFJK2W6/QXxb99GTtqCrCNECEGlZh2kYuZJCymjScmmuMs+5NFUXu6WxnkCQzpXL6Vq5DGAR1oQWYSu0bT7qbgIKgrUAnStXYBpmcQGaS1N1sf0ZKxSEUGhd9BWJSBhggSPi3ufDlPtDrTt2kHoVILtXrxDWhAurBfaApani0lS3Jazq8ZCKRWlb+FXmxl4urZs4Tq4CdJvV6Kbtu6hSmuuArkhLM8lIGEVVyKS5hCy9mRZGPYUonMTad1hK0FQz3UecsdxMKMJ582Sr61zsgMEqmkYi3EXLV/MAOqVgPuC13dM+ndLSHwTdwBopC1aecVW0tYXwmtVoPl++3pciRxkt8p9FeeOoL7DZWW0FfwvH3ZS1/C2rQTh8PVHqvVxs/8Vi1bh3LFlMx4plAEuRrLPRCfqwn3t/8tEzFL4IsCK8bg2RlnVovkCx0A2UaapCWKSHku9ZUC6b1/7W9g3LTup0sf0SKyWK5qFl4XxibS0IxAKsiSySPuwq0598dOdSdgNLktEI7cuW5PyjTDWKS1N1sf0UqygqejLB2rmfY+g6QlHmYMqk/TKjPwhYf9DoSXv3E8KqDaZ9ySJS8WiuQs6lqbrYfoxVvT6i7e2s/WI2QDOSBeSoqWlX0C1JSdo/fgkLgVj7kkXosZijQs6lqbrYforN+OdLF9K6YD7AV1KaK7BKXyMO13Sb1+iZoJwCYhWwumPFMiKtrSiaasuQU5OW6shTXgj7BJt5fUazO3w7p0YQwtF5Mu956WIHCFYoCiiC1Z9+RDIaRgjxhe2Xpx2B5m1eo2ckJWYJu4wBi6LNzbQunI+ieSz/N48uWmhOOeii0sEYK0k13UpYXJrqtoJVPB6S4QirZ38CkEKIObYW1x1mu9zWBT1zZEoEk0IonyciXayb97nd+rmQLiqKU1wZuqjIp5cWU023EhaXprotYJESj89Py1dzWf7BewDzpJSLbbM9Sh+2juqvgq7bfroEuQhINM+dQ7yzE9XrLZpvVzJAIsvktPsA69JUtwWstBSRqrHqs4+JtK4DmIOUrbZcRegHrLX+JOjCjrrHAE3CUmDJmrmz6V67Klc4k5lcuR66KD1QTbcW1qWpbgtYy2zXkwmWvj0dwBCK8pFtrsfsH1xBL2e+Wzvil+E1q1k3bw5CURFCoTd0UYncaKrpZsW6NNX/fawQeANBmr+cy4qPZwEskFLOs5+N2cpLuIJebOlmfBpDKMpsU5qs/uQjpKEjVKVYk5aIkud9YRtINd3sWJem+j+NFUIgNI1l771FItyFomofImUzuSpPST86+pNGT5IrF5wPrF35ySw6V69C8/p7GbwHl6bqYrc4FovEEmtvY+5zT1lKSsp3rcxRXn846Qp6sbFkYpXBqtI0VwKzm+fPo3nu56g+L9mCc1loQpdp1Wq3aZbCIZBbC2vHboUQuao6pw9o+/5587scz2fH/bjYfomVUhKorWf5B++xbu5sEOIT0zS+xCop76QPxyP3d0GXDt8mCUSEEO/qqSQLXnsRTGkNYCysWSkTMXWEVPP7wG1FbDmaaqaU1kFnz6NA0gN90sX2D6zi8SKlZO6zT2IYBoqivGkLuG4rK9MV9J61etw2ewRCfA6sWfzOW7QvX4IWCJQ0hHJ0UVn+XddLNd3MWJvy6MzRFlEgpR3kK0OBdLH9F+uvrGLVJx+w8I2XEbBKmuYsrNx5vwvC9UdBz0hMBBDSNFcpivpR95qVLHn7TTxeP0IoPdBFy9FC6QXVdDNjbZpqcTtgh8bP+H1lKJAuth9i7e9W8/mY9/zTJMJdCEV9U0q52n5BBzl6qivo6xH2KFYuMo4QbwGpL/77BPGuDoSmZuailNwjJMUNAbIvzTaD2ApYKRHZbiQU5GhlPjtOOrRIQVMDF9vPsICvopKWBfOY8/S/AbpMab5gvyqK1ba83wl5fxR0sPLpXYAmDWM2iNkrPp7Fio/eJ1jfSF45g0tTdbFbESsUBdXrY+7zT9O1ZhVCiBlIOZ9cJZxOPz36o6AbtqBLiWxWFOUV09D5/InHEEg0rweXpupitzYWKfGGKuhauZx5zz2NZXWK5x3KqcO+d4Ur6Bum1a2SWGnOFEKsmP/qCyx66w381bUlvo/+SFMlvyCjAJ5PgSz8bOli+xlW0TRUn5/Pn/oXa+fORiBeldKcg9UAspN+mDvv74IuHDukkFKuEUJ5IZ2I89HD9yJNE1XzOHbb/kpTdVAghchG70tTIEWeye9i+x/WV1FJx9JFfPLPh5BSphA8Ta7Iq7M/ptT6u6BnJKYLKyepmKbxDLBi/ovPsPitNwjU1uanuDK+8kZTTTczFoq6wOKILmTqcHqkQLrYfoPNdDr6+B/307FiKYqiviil/ByrQKaNftRgYqCZ7pkWU11Y+cm1QlGe0PU0Hz1yP4muLjx+fwFdtFDTFjpi+VZVcSHc5sPKki8kG7CT9u89USBdbD/BCoGvoopVn33E7Mf/AdAm4VnbH0/ZlqfpCvqmafVOe7f0Smm+Any14NXnmff803grq1AUxeFPOTVtwZtlH3ZqZbYYVmTbPeemuORYLnZnWGlH6vPeO2MLuNj+gQXN70dPJ5l1z18ItzajKMoT0jTm2Qqo1b4/RX/1zfu7oDuDcm2AgaRNKMojup5m1gN30bVyBb5QRVabimwPIFmkTUXBkHOZrXraUthcek44wULk32vO+yNbc51zEF1sX2MFvopKPv/PP5n34n8RivhSSpmJtHcDzf01yj6QBD0jbe22eaRJ05ypKOrba+d+zkeP3IuieVA9HgqkqkQEXRT8I4p97c2KFQWRe1HYjSL/d0HJ9I+L7TuslBCoraNj2RLe+uNtmKZpIpTHpEVFBWghN1NNuoK+6Ufa3jnTQFwiHwBaZ913F4veeh1/dQ1O8rd0lDQWutfSoXBltjkEmxUriwI8Ze4EuZ7bw8X2HVZKPP4A0jR55Vc/oWv1ShRVfVIaxgzbZG/JZIUGgn8+EATdJEfkb8WisH6lKOqDyWiY6bffTGTdWvxVNY4Zpnm9H4qUsijcvEWJ5zcBK/JjOvkWZC/vQIGL7TOstJiSFY1NvHf3n5j30rMoivKlNM1/2AG4OLDOVjySAXIMBI0ubYFfYwfnFNM0nlcU9fWVn37A67/5BUJT8fh82eommdctROZ47LZazo/WO5/fjFjhDORlXp7vv0shSnsrLrZvsHZQLtTQxLwXn+H1W34OEJWIO6WUa2xBX+MIwOEK+uYV9Ey6bbXtFyUl8n4hxJJPH3+UD++/C39VDYpmlcc6x9rmq2m76b6zxjnLZnI0GtgMWIsHkZdNL4jO503kztMtLrYPsLaQB+vqWfXphzz/08sxpYmian+XpvEpVgVcqx0cNnvhFLiCvpEmPLZGX2eb8MtQ1HuA5Ou33cBXb7xMRWMTQlEhLxLuiKnKbN1akX+W55RvErZ0XbXjTfLvj1LpeyFd7FbFWv/6q2uJtDTz6q+vo2P5UhRVfcY09GdtIe9wmOwMJCEfSILu/Jpa7OCcIg39baGof0lGIjxzzfcthltdg+1Iy7zoeabMUTgjrEKUiJZvKtbuHGunb4RjMACyRE7Bkf7JBQKFi92KWKTEV1FJoquT539yOYtnvokilPdN07wbi5EWAZZj0VAZKAG4gSjozq8sAay0tbsqTeNZRdWeDK9dzTPXXErrwi8JNTTm57Z7ercyEdhenUlZrCgI1jkbHlAQ0csVczi9BBe75bFIicTEX1mFKU1m3HkLX778LEIwXwr+hJQZfvnagSzkA03QsYMhJhZTaLUdATVNw7hbEerra+fO5rmfXE73mlUE6xs2wbbafHEWKUW+WV+0mYii56RwsVsDC+CrqELRvLx648+Ydf9dAEuEUO6wG5RKW6m0DDSfvOiOlnLDz12IPg04ZvZvDRgCjAQ8QohqIZQrTNPYd8y0Azjx9ruoaBpCvKMtvxkETh6yzLuWPMZSied6g82+h+0jSnu9imZ9yPLcdpnpZ+ZitxhW2r3fFI+Hl2+4lvfv/QvAHCHEb6WUy+23WWab7JnRx0a/MG03QmaVAbg5ZXZW3dbqywFDStllmubvFEV9e8k7M3jikvNoXfAllU2DEapaxFgSJTYsUbiZOainvcVmmw9m8vr2+whHCyNKpugcLY6EcLFbGBusq8PUdZ6+8pKMkKNo3lVSssQOvHU7ZMQcqCb7QNboTtnKbFTDgFGAByGqBeIiKc3DG8aNV0/47V8YvtuexDvbMXU9b1xSUROCQnHPU9MOXdELbOYl+RpG9sotcLFbCCslKCqB6hqiret45keXseD1F9lzpzFIzcOHs78CRZ2lCG4wDeNjoMqOCa3GYqr1D023jWh057dpYJUkZobOJ5FymVDFcyhauHXRVzx47qnMf+V5gnUNeAKB0nTU8tvg5smkZD+yTAuq9QUNXexmwEpUr5dQQwNrPv+ERy46iwWvv8hRB+zGsw/9jCf/dBknHbk3mMZU0zBuVzXPAXYQTgEG266iq9H76FDtL6EKu/WUomrfMg39fBBjd9lxtDJn3hJMBEdedxNTz74Q0zRJhrvyNHBPumN9eqXc81kjgPyhi/mevMyb4Jk9H+FiNzfWG6pA8/mZ99KzPP2TK0i1reOsE/fnrl9diL++CgyJjCb48e/+xS13/RcwoqrmuczQ008ANbaruJZcHn1AafSBLOghoA7wAe2KogxGUS43df1Mj9fnvfb/vsbFZx/FW+/N5YKr/0BnLMWU089j34svp3bkKGLtbRi67rDAHaN3ihoJFRiFUlr9xArHMjmaSmbbHWTbDBekepzvbz+XvS2zp+FiNwlrC3ywvoF4ZwezHriL6bffApj8/Acnc/2l3wRNIdEZQQpBoCoICP7y4Etc/uuHSCQSCdXjvc5Mp+6WUGsL+Vr6uNvrtiTolcAge+FbFVU70DTMa8Hcd8K4Edxy5amccPReoCrg0Xh3xmdceO1f+WLhKhon7cbxv7iFkXtNIxUJk4pGe/Db1+MY9vCYdCigDV0uF7vpWClNNJ+fUEMTzV/O4bnrf8SS6a9QE/Lx95sv4RtfmwZpg3gskbeP+H1eREWAf/zzNU67/I+AlKrH+10jnXrEvucSWBVyuivoW/aoshc8AiKlatp5hp7+ORA895uHcsuVp9A4ehCyK0YimUTTNDy1lXSubuPSG+7joafeAlQOvOwq9j7/YgI1VtkjtpamMLhj/5K1Dp1Kw6nQHa8VTs1vF2gUp31KhPqdNy8uduOwVlPPYH0DCMHHj97Pizf9Er27jSP2mcQffnkB43cZi+yMkEikcnPWRE6I/D4PoqGaRx98iXOu+SvpVCqhap4LDT39LNCIVazV4gr6lhXyRqBTCKVKqOqPTT19YSgY4KYrTuX7Fx0PEhJdkQKTTuCvDIKU3PuP17n8l3fTldAZuue+HP2TXzJiyl6k43GSkTCY5oarlXLOu+MGLHmHWou53pvXxfYGa92X3lAF3lCIdfO+4I07fsOXzz4BwI2Xf5srLzwOb2WAZEcUMzMfL+Pj51ljEo/Hg9ZYxd13PcNFP7kLEGsUVT3DNPRPbZdxHblqOVfQN7OQNwGdiqoOkSi/l0b6kLGjhvDwbZewz+F7QHMnsUTKUf0osr6bKSHo90JDNQs+XsCPbnmY/7zyAQB7XfA9pl14CVVDhpEMh9GTifwbDKfv7bh+mV9Gk9VEGQYb+Y0JrSIc5+sL2xY6iTQutrdYkGg+P96KSuLtrXz02EO8fttNYCTZf4/x3HT1Gex7+BTojBCPxO3JOusJpkqJz+dBqankuhse4IY/Po5Qtc+EaX7blGYE8GPVcCRdQd8CmlxV1QkG4vcY+p4H77MLd//qAsbtMpZkcyeGYdhlzvk57gx5QSJRFYGvrhoZjXPv42/yi98+worWMMHhYznk4h8w4chjCdbWoydipONxhx2/OfLovYvdu9jeYiWqx4e3ooJkOMyC117kg4f+zsqPZ9FQ4eWyi07iqguOw9tQTaqlC0M3EIoo+sYKPze7ZUtJoDKI1A1O+cEf+PfzM1FU7c/S0G+UELTcR9a6gr55jgo7hdatqGqTlOJBaeq7nXDEXtz764uoG1JPsr3bLluSDj/ZoQnsYK0zBxvwe6GmkmVzl/Lbe5/jDw++AMDgKdM44IKLGbvfgfgqq0lGI+iJBEizhG/uFHznfSjyfHvhzLflbMU8E7944xAuthRWSlCErcErMNNpFr39Bh89fC9fvWp9hycePpXbrz2T0TuPhY4w8XjSvhsyrkHBe+ftNNL+0664k+CrqWD+3KUcdeFvWLpibVTRtAtMXX8NqAZWbG2t/r8o6D5gKJAWQnhQ1LuloR/69SP35uHbLiZYW0miI1zGsOuhn7e9WKqq4K0KghC8884X/O7u//KEbc6P2Ocg9j7rfMZMOwB/TQ3pWIx0PEbPBl/Breu8qZ1mvpAFaaDMDSbyDQgXi2OXBsATCOANVRBta2XVZx8x5z//Yt5Lz6CnkgYQFygV+0yZwE0/PIUDDtoVM5ogGU/ZdfAy22gikxqVeRagzBXcCJk9L1VR8NRX8eCDL3P2j/+KgLekNM9GSgWrfmONK+ibdjTaZnubonp+bBrpqw/caxL/uvNSmoY1kGgPlwjSOIolpMjeX0XmmT29w0Ti82iolUFSnRFemjmHPz/4PC/O/BwUD9sfcDATv/YNtjvwUEKNTRjpFKlwOOsmlDPn89tWbGDJTWHIfxvGZialeEOVaH4fkea1LJk5gy+eeYKl780k0d0J8KWqai9JKVuFohxg6OnDKyuC/Oryk7n0ohMgkSIeS2TjJ7kcvIOYZLt2IhO49WoYXVFSaSuLFggFiMcSHHXhrcx473MpFOV0aZpvYNVzLGcrFtL8rwm6DxgBhIWi7iJN45nGhlrf249ex/hdxpFo6cSUJpry/+ydeZQdVZ3HP/dWvbWX9B6SdBYDIYkOGIaAiMCgMKCCzuhxPQPjAOPRYRyRGRwUNY4ix6OCCw7qgCsjgxHQiYggAmFLUEJCAokmnc5C0kmn0/vy+m1V9zd/1K3uysuLQA4TmlDfc+r063qv3nLv/d7fWr+fQ7I+i+RL5AsllObPSvJqEj98nE4noL4WXIdnV2/k8s/dzOPrOwFoP+kUFp73dhad/w5aFyxCRCgMDWJ8b7JWXLW72SZOS5VurVRIksqF+Oq9VqFQrkumoQmlNX2dW9jywL1s/s0KutatCYuBbtZK/05E/iDIiH0brRz3XPG9S4HMFz/xfj539QcxYwUK44WgfVb4LZSKCAFBa43jONx535N09w7xiUveRtn38YpllIJ0WyM/+fF9XPbZ7+OXy3eCXEVQfWY/QVehKUv0qZy/m7XfT0BdBqQ++09/y/EnL6TY3Y+I4LourqN56qktzGidxvTmaXi+OYjM1WSMmujQEXxCMulAbRZGcqxau4Xfrd7EwLiHdhKI79H19Bq6nl7D2p/+iPlnvYWF513AnJPfQE1LG8YrUxgdxXjlCSmh5ECXz0GhowNCRqpS3Tjgm75arlVK4SSSJGtrcVyX/NAg2x99kM333U3nww8w2PVcOKjrlNYrxcizRkwfQSq0mTAKfO9u7bgDxveuXPbN5bW+Ef7jsxeTQSjkS5OtrSVSO1gpkgkX3wjfW/4QDz/xDIJw5cfejRoYpez7MF7grWecyGuPa+fZP20/Qyk1Q0R6rR9peApzacpKdIfgXnOltD5WjFmx+Ph59U/d8QWy07LkR8ZRQHp6I489uI5zP/Ql/vnit/L1r11OYW9fVVXxoPCNtb+0ViSn1YAI996/hm/deh+/fewZEAOoATeR2CEiz4mY/SLSLsacDjQprZm1ZCmLzruA+We9hZb5C0hks/ilEl6xiF8uI8avQoIXNMAHpnwdpdcqrVDawUkkcZJJtJugnB+nr7ODHasepuOBe+l6+imM7wEMae2sFjFPiMifrG2ctCrzIJO1/2cRxLnz2nHeaHxZBib5wy9/lEsuvQBvYIRy2ZsIsYUJNqBQGpI1WR5b/Szn/+NXKeTz/OGOL3HqmSeS7xkkmXRxUkk+cs0t3Pyz+wXUxSCP2p/TxREqTHE0SXTXqu5joJYA9e8692Syc9sodQUJSelsmkLfMJ/6+nJKZY83nDAfiuWDnXATRrpCwoZ71h5LJhM49Vm2bNzBtTf9kttWhHPGeqX1oyLyrFcu9VhpoQGjlFqBUn8pxpzWte7JRV3rnsyk/vN62pecwrzTz2T2KafROOc11La2YYyP8XxMuYTveS84GSf0+h4Qs39Rt21O3WuVUuhEEieRQDsOKMVY734GdnSy5+mn2PboSro3Ph0kLwVk7lRaPyEia43xd9l5CCV4jz0GCFJTFUH1odcAzcb3H9XaudYY/v3Sa26pq8mmed97z0aGxvA8M2EiBOsimJ5Sbpyz3nYaP7ruw3zwX2/kyi//lMdOvpZUJoXveTiO4tg5baFzpj3yI6d0/7WpSvRw0DJizFxQLFk0BzwfzxiSbgJq0tz0g3tY/dSfePubl/L+d52FPzxWTWdBInMQNtTL1mQgleDOux7lk1+9jZ27ewDVqV33HuN5T4oxA0DCHkUrLdIi0oPIr4FHlNYLtHaWFMdGX7/t8Ydmb3v8oVRNcytti17HzBNPYvbJp9KyYCHZhiYy9Q2gBFP2MX4Z3/OC++P/TNYX1UJ5Bz0nU/DaYO0rR6OdBNp10I6LdhOI8SkMDzPSvZf9HZvYt3EDe9avo2fTBvIjw1jC7nLcxAZj/GfEmO1izLAleMqSv5+g9PKQ/T+s/Q9BwYgd9lyrMf4qpZ2bxfhXfvy6n+r2Gc2cfuaJmP4RTEVClAKMCH7/MB94z9ncdPuDPL5mEysfWc85bz0VMzgaefWEH0nxCqjxPpVtdAHSIE3KSdA4rQZKHhqFW59l3e//yLIb7yKZSvHNT/0duC6lcq6KWaEms9Xs2kw11lIeHufzX/sZX/7uLwAM2v1fJf6vjFfuthOo7UIaIUh1LNsIQJP1tObFmHW+MeuUUi0oNR+Rxbn+3oU7Vj187I5VD9cmUhmmzWpn+mtPoG3hYtoWvo6WYxdQ09JKIluDm0phPA+vUMD3Sogftuw1Nq/+hdy2yQGlqSeeOoLXKqXAUWhLbjeVxkkGDTXKhTzl/Dgj+7rp37aVns0b2b95E30dmxnu7go0nWCMOxSqE80mDM/5XrnffqBDUHdg1BJ8wJK7ECF4tMiAtvbyNnuuRYz/G+W4TT37+y657Jqbuee/rmL+wtkUB8cw0UarKlDjS+NFMg21XPmh83l8zSZuvvMRzvmrE3FdBzxD566ecHH1WkHgTXWyT2WJ7lhDbkx8j329Q5BKkkwnKY/kuPqG5Yznclz/6b9nwevnU+obmfT2hja5TNphCGitSTXXs3fbXq647r+5897VAPu0495qfO8xmSxk0ReRGAUma4UNWVuwjiBZoh6oEZF+RIaAdaAatNYzEZlXLuYX9m3fOrtv+9a5m36Nm5nWSG1rG41z5jJ98Qk0zT+O+mNmUj9zFrUtbSRq0iit0a4LAn65hPGi0p+KflCTd9EcFKGaqG+uqkjew7xWQLsuOuGinaDBpdIOYnyM7yO+T3FslIGdOxjt2ctQ1y76tm1lYHsnw3t2M9bbQzE3Fqrke4EdWultotgmxuwTZChSsClUw0etDT5mrytHpLeJED0KbV+/3T6uF+PdpbTburlz94UfXvZDbr/hctraWykMjjI5CGrSTzg8xnlvOoFZM6dz90Pr6Ojo4vgzTmT77//Iyic3A/Sh1HOIZOxnxRL9MKW5JkiU6RIxrN20k4u0QtdmuGP5Sh54fD1nLH0t/3Lx+ZAr4IugIip6NJ8ZgYTr4LZMY+sz27n4qpv4w/oOUM5WpeTbxve2WMdOEdjDZKdMv0ItVAQlhcJecFkr3Rst+WtARozxB4EtwAMo1aSUmofQnh8enJ8fHpzT27mlueOh+7NKKWqa2wKit06ncc5cprXPoWnufGrb2kjXN5Cun0aqtp5UXV0g6z0vIJUx9vARE7SDEjETySXGmAPbAVcqnVYyK60jxRW1TRFVaMe1zjI9sflox6U0nqMwPMT46ADF3Cj5gX5G9nUzvHsnA7t2MrJvL2M9PYx0d4WkDiV2L7BTa71DkD0Ie0VkwIgpI/iRtRiSe9hel7cS04tI7ijRK2EiDt0RO59ZhAL4P1HaaX5o1YY3XvqZ7/OLb19BurGe/MCwXTGTmk25WKZ2RjMXvfN0vvK9X7J6wzaOP2sJX//xfWzdvhuUXomYHivRC0zxmnJT1euurfd0mlL6OBH54exZ0xs77v0K6boMS//mM6x9ZiuP3PZ5znrzSRT7RzCRogQTyVRW9UymEjgtDdz/q1V8ZNkP2Ll7H2j3MSX+LbanVhgL3WMXmHcItVBFvl9Ys07b61MRSV8XmB0k7YLzJl+naoBjQGbZ39huIwyt9hq01iSztdRNn0FNSyuZxiZqm1vJNDWRbWoh0xjY/Mm6OjINDSTSGbTj4iSTiNh4cCqNdvREldSDiK4U4nuUC/ngNdqhXMiD71MuFhkf6Kc8niM/PEhxZJjcwAC5/t7gce9+coP9jPftZ3xoCPHKob3rW6J2W4ltSyWr3cH4StkSNxw7YzfXXITUI5Y4HpPlvaVCcssLXEPh58y0DjqU0m2C/gLiLbrwnKX8/MYryDTVU+gdOijsl55Ww8ZntrP0PZ/jhONnc/bShVx/6/3g+3sU5uMisjt0GHIE02CPtoSZZjs5Htr9Esa74IZPX8y5b/wLXv/Oq3nHuafyy+9ciTJCsexxiDZ6ZGozkEnxP7c/wEeX/YDR0RyOm1jh+95tiIzZxdRDUNo3V6ESVltUUbJLZEG5kb8pezREpH7Wkj6s01e2/9cBNUrrWoSZIuYY+9ubmcwMrI9qX24yhZNI4SRc3FQKpTXp+gZS9fWI7+O4CWpa29COG0j5qnOo8UpFcn37EWPQrkuuv5fSWC4oxlfI43sefrmEXypWDsKIPQaBIQX9gtqvFHsF+hHJWQKM2d/rRsY07Eg6FpHeeUuUsJiDXyG1D6d4X6R9Dg5B8tWcMGSrtP4343kLLzznFH7yjY/RNKMZBkcplibrSaQySWiq470XXced96yys+72KiXXi+/bEzxnNzR9pKT60Ub0JHAckEHrhVrrmxw30TDnmCa27eph+Tc/xvve92YK+4cnizjaEBoCjqtJNtQho+Ncff1yvnbLCoCidt1bjef93E5+yTpteiOLzHsRi6qyCjQRIjsRiZ8FMvaos78tbf/Xkc8LC16W7XMN9vW19miyGkOt/Ru+nxvRIIxVJzPPE/IJe3vnIhtWMWKyDNvxGbJkHAU1CBLayqF6PRrZ4HSFfeDZ9/fsNaG2VLDk9is2Vb9iLF6KcJWOmKntwDzAaK3bDfoajLd48XGz+dayf+CvzzwBkkkoe5B0oVjiV/ev5aqv3MbW7XtAOxuU+N8Rkc12fnush7/IEWzwcLQRXQUqLnMBpRz3LeKby8DMU9pV37jmIq64/F2YkRzFUnkiUUM7ilRNFhzN+nUdXPXV23lw1QZA9WjH+a7xvd/b9x4HdtrJ8qtI8hf7XatJksrDtYdjiZmNkLLWnncjKr+pMB+cSBzZiUgrAWqUUukJoitV+zyeYAV4Ea3GEZF8hVYjESnsR7zLOkJqsRtTqGqXrLT3Imp5+Hy5QlOqtLVforK7Vckeahaz7ZoSpVSbdpzLfM87J5lK8+7zlnLh2SfR2lRH9/4h7l75NHf9dg2I5zmJxN2+5/0Mkb4IyXdGHHFHzEY/mogefkDGqlsz7UQdox33NON7l8ya0ZZdfsPlvOn8UyBXAM8PdmFH0/tcD7fc8Qg33vpbenr7UdpdA+bHYkyHVamHrMrVGyGTeQkXmKoiUVSF3RguaLeC3Doi/d3IAs1Ewn6V7+lw8C3W/vPEeKObRyjddYVWYyqkq283yHzk+SiZw02hGJHWqmJs/Srf4f+D3NWiOCpC9jnhhqtd9zzj+W8DmYdyVDqTojBeIChXojdrR91tAlU93Lz2E9zIkouMCzHRD39yQrV3LkF1GSewsdx3i/E+MmtGG5+87O1cePYSsukUO/f2sWrtFm779ROs37QNoFc77gpj/PsQCZMueiNON1NhDx4JJ2M1SRPNrtJVHjuW5G7FZhE+l7EbRaXf4IXAryBaqUKtriR6KULq6HmpQlxziM2lMs53ZEO2gRY10xI+baX7DFHqOIxZYLWrEbTuVCKbbT67Y8dlp424FF4Okh+NRCeyC2esY2oWUKtQjnbdD/he+T3gpBYvaKe+NsOu7n669/UBMqaUsxotD4pvNkacX3vsMR6RSC9XPy31PLZ+pdovFdqArjJO8OIztSolaqUjUg5BUnMIiWyqEHiqpIZGN8gEQVi0HWiJnA+1ptDUCNdOn1XXe6tEA2Kiv4QT41iyvyZ0PAW3r5rTQI63E9QPaqtSrBeRDit9NEE21W77txSZoKka+1SH+F9VOScVpNcvklzqEIRWFe+j/oyq/UrqMqoqHKZhHkRjJLoRNTNyVlUftBJdXmYBcdSWkqqcmDarcjXYQc8EHmjlgoRxWN9eM24naZ89H/XuvtJa4KpDkEodYnM47HX0PORVvILbB1eMVTQykraHE3ldaJNHfQ4vu4A4motDqgrHU1hHrs3uyFEPsLEE72UyjdWrUEtf6Qs1xku3pqJrq9K3UZk0NSW0wKO93LOqYmOF8eUEk97dMGY7ah8bqme5xYhRzaehD6HZTJm182rp1KIrdl8dUbcqPcCVu3GMGC/GNzIlfRBHWympQ6HaDQ3qEJMSS/AYh+OfOPp2sMPZHWLEiPHKgo6HIEaMmOgxYsSIiR4jRoyY6DFixIiJHiNGjJjoMWLEiIkeI0aMmOgxYsSIiR4jRkz0GDFixESPESNGTPQYMWLERI8RI0ZM9BgxYsREjxEjRkz0GDFixESPEePVif8bAILEcKnXFF2GAAAAAElFTkSuQmCC', 'https://gitee.com/winc-link/hummingbird-sdk-go', 'Go语言sdk包,提供设备接入物联网能力', '10'); diff --git a/manifest/sql/properties.sql b/manifest/sql/properties.sql deleted file mode 100644 index 79909ac..0000000 --- a/manifest/sql/properties.sql +++ /dev/null @@ -1,1332 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:34:47.1500 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "properties"; -CREATE TABLE `properties` (`id` text NOT NULL,`product_id` text,`name` text,`code` text,`access_mode` text,`require` numeric,`type_spec` text,`description` text,`tag` text,`system` numeric,`created` integer,`modified` integer,PRIMARY KEY (`id`),CONSTRAINT `fk_product_properties` FOREIGN KEY (`product_id`) REFERENCES `product`(`id`) ON DELETE CASCADE ON UPDATE CASCADE); - -INSERT INTO "properties" ("id", "product_id", "name", "code", "access_mode", "require", "type_spec", "description", "tag", "system", "created", "modified") VALUES -('100046232', '', '面粉量', 'FlourValue', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"g\",\"unitName\":\"克\"}"}', '', '系统', '1', '1692347065864', '0'), -('100107350', '', '制冷开关', 'CoolingSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065997', '0'), -('1001229197', '', '随机定时4', 'RandomTimer_4', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066197', '0'), -('1001893442', '', '断路器远程控制使能', 'CircuitBreakerRemoteControlEnable', 'R', '0', '{"type":"bool","specs":"{\"0\":\"能\",\"1\":\"不能\"}"}', '', '系统', '1', '1692347066054', '0'), -('1003871902', '', '图片地址', 'PicPath', 'RW', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '图片地址', '系统', '1', '1692347065945', '0'), -('1015439630', '', '商品详情', 'ItemDetail', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"Item\",\"name\":\"商品\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"20\\\"}\"}},{\"code\":\"NetWeight\",\"name\":\"净重\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"20\\\"}\"}},{\"code\":\"TareWeight\",\"name\":\"皮重\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"20\\\"}\"}},{\"code\":\"UnitPrice\",\"name\":\"单价\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"20\\\"}\"}},{\"code\":\"TotalPrice\",\"name\":\"总价\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"20\\\"}\"}}]"}', '', '系统', '1', '1692347065996', '0'), -('1017074698', '', 'PH高值报警阈值', 'PH_High_Threshold', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"14\",\"step\":\"0.1\"}"}', '', '系统', '1', '1692347065889', '0'), -('101913715', '', '运行状态', 'RunningState', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"空闲\",\"1\":\"清理\",\"2\":\"清空\",\"3\":\"重置\"}"}', '', '系统', '1', '1692347065828', '0'), -('1019876083', '', '屏幕亮度', 'LCDLuminance', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066075', '0'), -('1026091802', '', '卫浴运行', 'BathRunning', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065982', '0'), -('102705796', '', '剩余电流', 'RC', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000000\",\"step\":\"0.01\",\"unit\":\"mA\",\"unitName\":\"毫安\"}"}', '', '系统', '1', '1692347065878', '0'), -('1033664682', '', '当前秒', 'CurrentTime_s', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"360\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065868', '0'), -('1034267375', '', '场景触发_3', 'SceneTrigger_3', 'R', '0', '{"type":"bool","specs":"{\"0\":\"场景无触发\",\"1\":\"场景触发\"}"}', '', '系统', '1', '1692347065994', '0'), -('1034676720', '', '循环定时5', 'PeriodTimer_5', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066203', '0'), -('1037535146', '', '输出电流', 'OutputCurrent', 'R', '0', '{"type":"int","specs":"{\"min\":\"-32768\",\"max\":\"32767\",\"step\":\"10\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065809', '0'), -('1039912621', '', '氟化物浓度', 'Fluoride', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/d㎡·d\",\"unitName\":\"每天每平方分米微克\"}"}', '', '系统', '1', '1692347066230', '0'), -('1043291484', '', '空调循环模式', 'VehACCircDirection', 'R', '0', '{"type":"enum","specs":"{\"0\":\"Face\",\"1\":\"Face_Foot\",\"2\":\"Foot\",\"3\":\"Foot_Defrost\",\"4\":\"Defrost\",\"5\":\"Face_Foot_Defrost\",\"6\":\"Face_Defrost\",\"7\":\"NoMode\"}"}', '', '系统', '1', '1692347065821', '0'), -('1045092784', '', '窗5状态', 'WindowStatus05', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066237', '0'), -('1053699495', '', '漂洗次数', 'RinshTimes', 'RW', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"10\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066050', '0'), -('1056208589', '', '单元格数量', 'CellCount', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"500\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065997', '0'), -('1065964789', '', '按摩开关', 'MassageSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066176', '0'), -('1066539182', '', '风速_16', 'WindSpeed_16', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066145', '0'), -('106970884', '', '灯具故障使能', 'LightErrorEnable', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '1:打开,0:关闭', '系统', '1', '1692347066246', '0'), -('1072606242', '', '燃气类型', 'GasType', 'R', '0', '{"type":"enum","specs":"{\"0\":\"天然气\",\"1\":\"人工煤气\",\"2\":\"液化石油气\"}"}', '', '系统', '1', '1692347066221', '0'), -('107265718', '', '目标温度_20', 'TargetTemperature_20', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('1074995253', '', '负离子开关', 'IonsSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066000', '0'), -('1080414156', '', '保温开关', 'HeatPreservationSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065986', '0'), -('1082874432', '', '按摩速度', 'MassageSpeed', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"6\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066048', '0'), -('1088834900', '', '画面翻转状态', 'ImageFlipState', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"正常状态\",\"1\":\"翻转状态\"}"}', '', '系统', '1', '1692347065783', '0'), -('1089740005', '', '窗3状态', 'WindowStatus03', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066236', '0'), -('1092951444', '', '门锁状态', 'LockState', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065861', '0'), -('1098790611', '', '目标时间', 'TargetTime', 'RW', '0', '{"type":"date","specs":"{}"}', '定时切换状态', '系统', '1', '1692347065927', '0'), -('1102054843', '', 'A相视在功率', 'Sa', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065876', '0'), -('110245058', '', '内窗帘操作模式', 'InnerCurtainOperation', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关窗帘\",\"1\":\"开窗帘\",\"2\":\"暂停窗帘\"}"}', '', '系统', '1', '1692347066188', '0'), -('1106605957', '', '目标温度_6', 'TargetTemperature_6', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('1108557785', '', '总功率因数', 'COSQ', 'R', '1', '{"type":"float","specs":"{\"min\":\"-1.00\",\"max\":\"1.00\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065876', '0'), -('1110448112', '', '播放进度', 'PlayProgress', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066089', '0'), -('1112532405', '', '烘干剩余时间', 'DryingRemainingTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"120\",\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347066132', '0'), -('1114813849', '', 'C相电流', 'Ic', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065875', '0'), -('1117450064', '', '照明开关', 'LightSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065887', '0'), -('1123601484', '', '烤色', 'Color', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"浅\",\"1\":\"标准\",\"2\":\"深\"}"}', '', '系统', '1', '1692347066040', '0'), -('1131423372', '', '位置记忆', 'PositionSet', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065807', '0'), -('1137619673', '', '故障功率门限', 'ErrorPowerThreshold', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unit\":\"W\",\"unitName\":\"瓦特\"}"}', '故障功率门限', '系统', '1', '1692347066245', '0'), -('1137720486', '', '网络配置', 'NetConfiguration', 'R', '1', '{"type":"struct","specs":"[{\"code\":\"IP\",\"name\":\"IP地址\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"16\\\"}\"}},{\"code\":\"Netmask\",\"name\":\"子网掩码\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"16\\\"}\"}},{\"code\":\"Gateway\",\"name\":\"默认网关\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"16\\\"}\"}},{\"code\":\"MAC\",\"name\":\"MAC地址\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"17\\\"}\"}}]"}', '', '系统', '1', '1692347065948', '0'), -('1139890415', '', '本地食谱', 'LocalRecipes', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"快速面\",\"10\":\"挤面\",\"2\":\"劲道面\",\"3\":\"宝宝面\",\"4\":\"饺子皮\",\"5\":\"和面团\",\"6\":\"荞麦面\",\"7\":\"果蔬面\",\"8\":\"鸡蛋面\",\"9\":\"搅拌\"}"}', '', '系统', '1', '1692347065865', '0'), -('1143005039', '', '水温高温报警阈值', 'WaterTemp_High_Threshold', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065887', '0'), -('1144295706', '', '驻车状态', 'StateParked', 'R', '1', '{"type":"enum","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}', '', '系统', '1', '1692347065858', '0'), -('1145035188', '', '当前温度_12', 'CurrentTemperature_12', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('1146543994', '', '图片传输类型', 'UploadPictureType', 'R', '0', '{"type":"enum","specs":"{\"0\":\"全部支持\",\"1\":\"OSS\",\"2\":\"HTTP2\"}"}', '', '系统', '1', '1692347066083', '0'), -('1153170887', '', '燃气爆炸危险度', 'LelPercentage', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066221', '0'), -('1155153090', '', '转叉开关', 'TurnSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066009', '0'), -('1155153943', '', '冷冻室温度', 'FreezerTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"-18\",\"max\":\"0\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066185', '0'), -('1157598123', '', '上室暖盘开关', 'WarmplateUpperSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066001', '0'), -('1170794153', '', '汞', 'Mercury', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('1171818617', '', '食材ID', 'FoodID', 'RW', '0', '{"type":"text","specs":"{\"length\":\"80\"}"}', '', '系统', '1', '1692347066016', '0'), -('11726635', '', '移车助力', 'MoveHelp', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"EnabledSwitch\",\"name\":\"使能开关\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"SteepSlowLevel\",\"name\":\"陡缓级别\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"%\\\",\\\"unitName\\\":\\\"百分比\\\"}\"}}]"}', '', '系统', '1', '1692347066005', '0'), -('117465180', '', '土壤温度', 'soilTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065929', '0'), -('1179853768', '', '正向累计流量', 'ForwardIntegratedFlow', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"}"}', '', '系统', '1', '1692347065879', '0'), -('117986489', '', '蒸箱开关', 'SteamerPower', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065845', '0'), -('1181386110', '', '继电器断开温度', 'PressureOffTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"90\",\"max\":\"230\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066053', '0'), -('1182368674', '', '继电器常开触点', 'NO', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"闭合\"}"}', '', '系统', '1', '1692347065846', '0'), -('1189192066', '', '风速_8', 'WindSpeed_8', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\"}"}', '', '系统', '1', '1692347066144', '0'), -('1193465146', '', '语音开关', 'VoiceSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066105', '0'), -('119569494', '', '电子狗开关', 'WatchDogSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"False\",\"1\":\"Ture\"}"}', '', '系统', '1', '1692347065819', '0'), -('1200653831', '', '饮用温度类型', 'DrinkTemperatureType', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"温饮\",\"1\":\"热饮\"}"}', '', '系统', '1', '1692347066072', '0'), -('1200690012', '', '湿度', 'mhumi', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065916', '0'), -('1201585254', '', '受损程度', 'ExtentOfDamage', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"完好\",\"1\":\"轻微受损\",\"2\":\"严重受损\"}"}', '', '系统', '1', '1692347065839', '0'), -('1202480876', '', '蓝牙音响开关', 'BluetoothSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065981', '0'), -('1204936007', '', '报警灵敏度', 'AlarmSensitivity', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"低灵敏度\",\"1\":\"高灵敏度\"}"}', '', '系统', '1', '1692347065941', '0'), -('1208305573', '', '周一定时', 'MondayTiming', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065982', '0'), -('1208575921', '', '多媒体资源', 'MediaSource', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"CD\",\"1\":\"USB\",\"10\":\"AM\",\"11\":\"DAB\",\"2\":\"SD_MMC\",\"3\":\"Tape\",\"4\":\"Phone\",\"5\":\"Aux1\",\"6\":\"Aux2\",\"7\":\"LineIn\",\"8\":\"Guitar\",\"9\":\"FM\"}"}', '', '系统', '1', '1692347065990', '0'), -('1223079643', '', '滤芯寿命状态_2', 'FilterStatus_2', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"需要替换\"}"}', '', '系统', '1', '1692347066153', '0'), -('1224645851', '', '3号车位状态', 'Parking_3', 'R', '1', '{"type":"bool","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}', '135_o_3', '系统', '1', '1692347065976', '0'), -('1226301660', '', '全自动模式开关', 'FullAutoModeSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066000', '0'), -('1226702668', '', '呼叫门牌号', 'DoorNumber', 'RW', '1', '{"type":"text","specs":"{\"length\":\"64\"}"}', '', '系统', '1', '1692347065861', '0'), -('1235584623', '', '空气质量指数', 'AQI', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"500\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066074', '0'), -('1240148824', '', '人脸库MD5签名', 'FaceSetMD5Sign', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066045', '0'), -('1244961585', '', '原水硬度', 'RawHardness', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"999\",\"step\":\"1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '', '系统', '1', '1692347065868', '0'), -('1245548083', '', 'PH', 'PH', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"14\",\"step\":\"0.1\"}"}', '', '系统', '1', '1692347065889', '0'), -('1255796786', '', '电源开关左', 'LeftPowerSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066171', '0'), -('1262852395', '', '目标足浴时间', 'TargetFootbathTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"75\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066176', '0'), -('1263555302', '', '模块状态', 'HumitureModuleStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066239', '0'), -('1271711259', '', '窗帘伸缩', 'cts', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065918', '0'), -('1273200153', '', '小槽工作状态', 'Small_Work_Status', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"空闲中\",\"1\":\"工作中\",\"2\":\"暂停\"}"}', '', '系统', '1', '1692347066110', '0'), -('1277034340', '', '单元格门开关', 'CellDoorSwitch', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"CellCode\",\"name\":\"编号\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"100\\\"}\"}},{\"code\":\"Status\",\"name\":\"状态\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065998', '0'), -('1277069986', '', '倒计时剩余时间', 'CountdownRemainingTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347066211', '0'), -('1279140302', '', '冲洗状态', 'WashingState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"冲洗中\"}"}', '', '系统', '1', '1692347066158', '0'), -('1281617097', '', '电源电压', 'voltage', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065930', '0'), -('1286653880', '', '土壤湿度', 'soilHumidity', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065929', '0'), -('1287746313', '', '蒸箱当前温度', 'SteamerCurrentTemperature', 'R', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065846', '0'), -('1288985721', '', '信号强度', 'CellSignalStrength', 'R', '0', '{"type":"int","specs":"{\"min\":\"-128\",\"max\":\"127\",\"step\":\"1\",\"unit\":\"dBm\",\"unitName\":\"分贝毫瓦\"}"}', '', '系统', '1', '1692347065819', '0'), -('1289044392', '', '室内人体探测开关', 'IndoorHumanDetectionSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066075', '0'), -('1290202720', '', '系统音量', 'SystemVolume', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066032', '0'), -('129345219', '', '回路出线侧A相温度', 'T_OUTa', 'R', '0', '{"type":"float","specs":"{\"min\":\"-100\",\"max\":\"100000\",\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065877', '0'), -('1297948071', '', '冷藏门状态', 'FridgeDoorStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066185', '0'), -('1298923534', '', '状态字', 'StatusWord', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065808', '0'), -('1301365032', '', '插播素材', 'Insert_material', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '/ids/materialSendSpot.action', '系统', '1', '1692347065950', '0'), -('1301750042', '', '左炉工作状态', 'LeftWorkState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"待机\",\"1\":\"工作中\"}"}', '', '系统', '1', '1692347066163', '0'), -('1304959635', '', '有功需量', 'Pdmd', 'R', '1', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065876', '0'), -('1308061810', '', '硫化物', 'sulfide', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"200\",\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '硫化物', '系统', '1', '1692347065778', '0'), -('1308272414', '', '强制脱冰', 'IceShedding', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065920', '0'), -('1308785826', '', '当前电压', 'CurrentVoltage', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"36\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065884', '0'), -('1310760664', '', 'WIFI名称', 'WifiName', 'R', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065796', '0'), -('1314532281', '', '链条速度', 'E_Craft_Speed_China_Spray', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-100000\",\"max\":\"100000\",\"step\":\"0.1\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"}"}', '', '系统', '1', '1692347065909', '0'), -('1318952236', '', '2号车位状态', 'Parking_2', 'R', '1', '{"type":"bool","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}', '135_o_2', '系统', '1', '1692347065976', '0'), -('1327430160', '', '烟机电源开关', 'HoodPower', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065845', '0'), -('1332173605', '', '腔体当前温度', 'current_temperature', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066001', '0'), -('1338809703', '', '线路功率因数', 'LinePowerFactor', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066055', '0'), -('1339986181', '', 'PM1', 'PM1', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347065916', '0'), -('1340734226', '', '鉴权信息', 'Permission', 'RW', '1', '{"type":"text","specs":"{\"length\":\"32\"}"}', '', '系统', '1', '1692347065978', '0'), -('1351693062', '', '当前温度_7', 'CurrentTemperature_7', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('1355423113', '', '状态切换', 'StatusSwitching', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"警告错误\",\"1\":\"茶台状态\",\"2\":\"茶几状态\"}"}', '', '系统', '1', '1692347065924', '0'), -('1355469712', '', '车位状态', 'ParkingState', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}', '', '系统', '1', '1692347066011', '0'), -('135588157', '', '门锁语言', 'Language', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"中文\",\"1\":\"英文\"}"}', '', '系统', '1', '1692347066115', '0'), -('1360202063', '', '周三定时', 'WednesdayTiming', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065982', '0'), -('1361262626', '', 'PM10', 'PM10', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347065916', '0'), -('1363846676', '', '当前水量', 'CurrentWaterVolume', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347065927', '0'), -('1369580040', '', '时间配置信息', 'TimeConfig', 'R', '1', '{"type":"struct","specs":"[{\"code\":\"ntpEnable\",\"name\":\"ntp使能\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"ntpServer\",\"name\":\"ntp服务地址\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"ntpPort\",\"name\":\"ntp端口\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"1\\\",\\\"max\\\":\\\"65536\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"ntpSynInterval\",\"name\":\"ntp同步间隔\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"1\\\",\\\"max\\\":\\\"256\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"systemTime\",\"name\":\"系统时间\",\"data_type\":{\"type\":\"date\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065965', '0'), -('1374063236', '', '电源开关_6', 'PowerSwitch_6', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('1376205881', '', '启用自动关门', 'AutoCloseEnabled', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065850', '0'), -('1378595630', '', '二氧化氮浓度', 'NO2', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('1384451937', '', '终止插播', 'Stop_insertion', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '/ids/endSpot.action', '系统', '1', '1692347065950', '0'), -('1386426792', '', '1号车位状态', 'Parking_1', 'R', '1', '{"type":"bool","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}', '135_o_1', '系统', '1', '1692347065976', '0'), -('1388282273', '', '充电状态', 'ChargingState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"未充电\",\"1\":\"充电中\"}"}', '', '系统', '1', '1692347065942', '0'), -('1390939295', '', '线路用电功率阈值', 'LinePowerThreshold', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"W\",\"unitName\":\"瓦特\"}"}', '', '系统', '1', '1692347066054', '0'), -('1395388875', '', '设备ID', 'DeviceID', 'R', '0', '{"type":"text","specs":"{\"length\":\"256\"}"}', '设备生产商的设备编号', '系统', '1', '1692347065797', '0'), -('1397406251', '', '开启排水', 'DrainOn', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066128', '0'), -('1398641447', '', '卡号ID', 'CardID', 'R', '0', '{"type":"text","specs":"{\"length\":\"20\"}"}', '', '系统', '1', '1692347066034', '0'), -('1401538546', '', '加湿缺水状态', 'WaterShortageStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"缺水\"}"}', '', '系统', '1', '1692347066154', '0'), -('1411809809', '', '剩余工作时间', 'RemainWorkTime', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065864', '0'), -('1412552779', '', '启用检测遇阻', 'DetectResistEnabled', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065851', '0'), -('1412969040', '', '气压监测', 'Airpressure', 'R', '0', '{"type":"float","specs":"{\"min\":\"300\",\"max\":\"1100\",\"step\":\"0.01\",\"unit\":\"Pa\",\"unitName\":\"帕\"}"}', '', '系统', '1', '1692347065891', '0'), -('1425140482', '', '耗水总量', 'TotalWaterConsumption', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"65535.9\",\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347066109', '0'), -('1430150702', '', '灯类型', 'LightType', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"C\",\"1\":\"CW\",\"2\":\"RGB\",\"3\":\"RGBC\",\"4\":\"RGBCW\"}"}', '', '系统', '1', '1692347066211', '0'), -('1445788183', '', '工况流量', 'WorkingConditionInstantaneousFlow', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"m³/h\",\"unitName\":\"立方米每小时\"}"}', '', '系统', '1', '1692347065879', '0'), -('1458059240', '', '防烫保护锁', 'Safety_Temputer_Lock', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347066160', '0'), -('1462142549', '', '菜谱名称', 'MenuName', 'RW', '0', '{"type":"text","specs":"{\"length\":\"14\"}"}', '', '系统', '1', '1692347066016', '0'), -('1475847733', '', '油烟机的工作模式', 'KitchenVentilator_WorkMode', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"4\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066178', '0'), -('1477439701', '', '内置是否开启录音', 'IcRecordAudio', 'R', '0', '{"type":"bool","specs":"{\"0\":\"False\",\"1\":\"Ture\"}"}', '', '系统', '1', '1692347065823', '0'), -('1478667299', '', '滤芯寿命状态_4', 'FilterStatus_4', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"需要更换\"}"}', '', '系统', '1', '1692347066153', '0'), -('1485600436', '', '循环定时9', 'PeriodTimer_9', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066206', '0'), -('1486257885', '', '3号车牌', 'Car_number_3', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '135_c_3', '系统', '1', '1692347065975', '0'), -('1488025254', '', '门锁状态', 'Lock_status', 'R', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065884', '0'), -('1492607181', '', 'B相视在功率', 'Sb', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065876', '0'), -('1499296020', '', '滑块分配阀压润滑次数', 'E_Craft_C3_Oiling_Punch', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065906', '0'), -('1499346162', '', '大槽清洗强度', 'Large_Clean_Strength', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"中\",\"1\":\"强\",\"2\":\"轻\"}"}', '', '系统', '1', '1692347066110', '0'), -('1501583325', '', 'A相视在功率', 'electric_psa', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"}"}', '', '系统', '1', '1692347065866', '0'), -('1509060922', '', '磁盘容量', 'DiskCapacity', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"GB\",\"unitName\":\"吉字节\"}"}', 'NVR磁盘容量', '系统', '1', '1692347065827', '0'), -('1509344986', '', '功放音量', 'PlayVolume', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066073', '0'), -('1514517805', '', '上报平台属性', 'Platform', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '设备连接LP后,上报平台属性(X86、Linux、Android等),服务端根据此属性选择对应平台的算法进行部署。', '系统', '1', '1692347065893', '0'), -('1516612478', '', '充电状态', 'ChargeState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"未插充电器\",\"1\":\"充电中\",\"2\":\"已充满\"}"}', '', '系统', '1', '1692347066075', '0'), -('1517675213', '', '蓝光抑菌开关', 'BacteriostatSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065838', '0'), -('1522240274', '', '出水TDS', 'FinishedWaterTDS', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"999\",\"step\":\"1\",\"unit\":\"ppm\",\"unitName\":\"百万分率\"}"}', '', '系统', '1', '1692347066156', '0'), -('1523709792', '', '自动按摩', 'MassageProgram', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"运动恢复\",\"2\":\"舒展活络\",\"3\":\"休憩促眠\",\"4\":\"工作减压\",\"5\":\"肩颈重点\",\"6\":\"腰椎舒缓\",\"7\":\"总裁养身\",\"8\":\"女王纤体\",\"9\":\"心灵SPA\"}"}', '', '系统', '1', '1692347066048', '0'), -('1528400163', '', '紫外强度', 'UV', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"15\",\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"}"}', '紫外线强度', '系统', '1', '1692347065945', '0'), -('1528525541', '', '过压告警', 'OverVoltError', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '', '系统', '1', '1692347065936', '0'), -('1529536675', '', 'USB开关4', 'USBSwitch_4', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066014', '0'), -('1532852327', '', '信道', 'WIFI_Channel', 'RW', '1', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"255\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066118', '0'), -('1539049399', '', '设备时区', 'DeviceTimeZone', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"UTC\",\"1\":\"UTCplus1\",\"10\":\"UTCplus10\",\"11\":\"UTCplus11\",\"12\":\"东西十二区\",\"13\":\"UTCminus11\",\"14\":\"UTCminus10\",\"15\":\"UTCminus9\",\"16\":\"UTCminus8\",\"17\":\"UTCminus7\",\"18\":\"UTCminus6\",\"19\":\"UTCminus5\",\"2\":\"UTCplus2\",\"20\":\"UTCminus4\",\"21\":\"UTCminus3\",\"22\":\"UTCminus2\",\"23\":\"UTCminus1\",\"3\":\"UTCplus3\",\"4\":\"UTCplus4\",\"5\":\"UTCplus5\",\"6\":\"UTCplus6\",\"7\":\"UTCplus7\",\"8\":\"UTCplus8\",\"9\":\"UTCplus9\"}"}', '', '系统', '1', '1692347065827', '0'), -('154053883', '', '保鲜温度', 'KeepFreshTemperature', 'R', '0', '{"type":"int","specs":"{\"min\":\"-100\",\"max\":\"200\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065843', '0'), -('154234139', '', '电源开关_19', 'PowerSwitch_19', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066143', '0'), -('1543168878', '', '场景面板亮度', 'ScreenLevel', 'RW', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065995', '0'), -('1545885757', '', '磁盘总容量', 'DiskTotalCapacity', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066043', '0'), -('1548397726', '', '设备时间稼动率', 'E_A', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '设备时间稼动率', '系统', '1', '1692347065907', '0'), -('1548959753', '', '暂停开关', 'PauseSwtich', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"开始\",\"1\":\"暂停\"}"}', '', '系统', '1', '1692347065847', '0'), -('1551391456', '', '多屏状态', 'MultiScreenApp_state', 'R', '1', '{"type":"bool","specs":"{\"0\":\"关机\",\"1\":\"开机\"}"}', 'state_/ids/checkAPIStatus.action', '系统', '1', '1692347065950', '0'), -('155451586', '', '烘干强度', 'DryOpt', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"无\",\"1\":\"弱\",\"2\":\"中\",\"3\":\"强\"}"}', '', '系统', '1', '1692347066051', '0'), -('155551069', '', '屏幕长度', 'ScreenLength', 'R', '1', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"99999\",\"step\":\"1\",\"unit\":\"mm\",\"unitName\":\"毫米\"}"}', '', '系统', '1', '1692347065953', '0'), -('1555996865', '', '音效', 'SoundEffect', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"原声\",\"1\":\"古典\",\"2\":\"现代\",\"3\":\"摇滚\",\"4\":\"流行\",\"5\":\"舞曲\"}"}', '', '系统', '1', '1692347065859', '0'), -('1558075445', '', '故障发生值', 'errValue', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065937', '0'), -('1561860769', '', '目标温度_4', 'TargetTemperature_4', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('1562478152', '', '信号强度', 'SignalIntensity', 'R', '1', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065953', '0'), -('1563507086', '', '颜色数组', 'ColorArr', 'RW', '0', '{"type":"array","specs":"{\"size\":\"6\",\"item\":{\"type\":\"struct\"}}"}', '', '系统', '1', '1692347066211', '0'), -('1569255867', '', '当前温度_2', 'CurrentTemperature_2', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('1569257278', '', '播放类型', 'PlayType', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"停止\",\"1\":\"播放\",\"2\":\"暂停\"}"}', '', '系统', '1', '1692347065991', '0'), -('1569875375', '', '正向有功总电能', 'ActiveEnergyImport', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347065984', '0'), -('157135180', '', 'B相电压', 'Ub', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065875', '0'), -('1573173027', '', '推窗器操作模式', 'ActuatorOperationMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关窗\",\"1\":\"开窗\",\"2\":\"暂停\"}"}', '', '系统', '1', '1692347066175', '0'), -('1588561106', '', '绑定连接', 'Associate_url', 'RW', '1', '{"type":"text","specs":"{\"length\":\"512\"}"}', '', '系统', '1', '1692347065956', '0'), -('1592440722', '', '循环定时6', 'PeriodTimer_6', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066204', '0'), -('1593893518', '', '加热模式', 'HeatingMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"无加热器\",\"1\":\"整体加热\",\"2\":\"单独加热\"}"}', '', '系统', '1', '1692347065997', '0'), -('1601179186', '', 'B相有功功率', 'electric_frb', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065866', '0'), -('1601648166', '', '上报考勤时间', 'AttendanceTimeNotification', 'R', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347066034', '0'), -('1603571699', '', '滤芯剩余寿命时间_4', 'FilterLifeTimeDays_4', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1100\",\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"}"}', '', '系统', '1', '1692347066153', '0'), -('1614918908', '', '当前功率', 'CurrentPower', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"4000\",\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"}"}', '', '系统', '1', '1692347065918', '0'), -('1621422186', '', '耗电总量', 'TotalPowerConsumption', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"65535.99\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347066109', '0'), -('1622030875', '', '右灶定时关闭时间', 'RightFociTimer', 'RW', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"5999\",\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347066164', '0'), -('1624424439', '', '风速_6', 'WindSpeed_6', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066144', '0'), -('1628996949', '', '空开电表控制变量', 'AirConElectricMeterControl', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066240', '0'), -('1635687066', '', '高水位状态', 'HighWaterLevel', 'R', '0', '{"type":"bool","specs":"{\"0\":\"不到高水位\",\"1\":\"达到高水位\"}"}', '', '系统', '1', '1692347066225', '0'), -('1637350529', '', '运行时间累积', 'InverterRunTime', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"}"}', '', '系统', '1', '1692347065809', '0'), -('1640376633', '', 'A相电压', 'nUa', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065866', '0'), -('1643352342', '', '信号强度', 'WiFI_RSSI', 'RW', '1', '{"type":"int","specs":"{\"min\":\"-127\",\"max\":\"-1\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066118', '0'), -('1643602682', '', '低功耗模式', 'LowPowerMode', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"LowPowerStatus\",\"name\":\"低功耗状态\",\"data_type\":{\"type\":\"enum\",\"specs\":\"{}\"}},{\"code\":\"WakeUpData\",\"name\":\"唤醒数据\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"2048\\\"}\"}}]"}', '', '系统', '1', '1692347065796', '0'), -('1643925192', '', '自动门工作状态', 'AutoDoorWorkState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"就绪\",\"1\":\"学习\",\"2\":\"已关门\",\"3\":\"已落锁\",\"4\":\"已开门\",\"5\":\"开门中\",\"6\":\"关门中\",\"7\":\"错误\"}"}', '', '系统', '1', '1692347065851', '0'), -('164704655', '', '目标水温', 'TargetWaterTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"20\",\"max\":\"90\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066051', '0'), -('1648205683', '', '上室臭氧开关', 'OzoneUpperSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066000', '0'), -('1648549418', '', '睡眠状态', 'SleepStatus', 'R', '0', '{"type":"enum","specs":"{\"1\":\"清醒\",\"2\":\"浅睡\",\"3\":\"深睡\",\"4\":\"离床\"}"}', '', '系统', '1', '1692347065840', '0'), -('1652030418', '', '网络秘钥', 'NETWORK_KEY', 'RW', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347065932', '0'), -('1655495429', '', '心跳周期', 'HeartBeatInterval', 'RW', '0', '{"type":"int","specs":"{\"min\":\"10\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347066224', '0'), -('1656590472', '', '屏幕亮度', 'Brightness', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', '屏幕亮度', '系统', '1', '1692347065784', '0'), -('1657184510', '', 'CPU使用率', 'cpu_usage', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066133', '0'), -('1658572386', '', '上室温度', 'TemperatureUpper', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"300\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066000', '0'), -('1658765317', '', '查询车位余量', 'query', 'R', '1', '{"type":"bool","specs":"{\"0\":\"未查询\",\"1\":\"查询\"}"}', '', '系统', '1', '1692347065949', '0'), -('1661330855', '', '温度模块状态', 'TemperatureModelStatus', 'R', '1', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066240', '0'), -('1661996750', '', '总有功谷电能', 'EP_4', 'R', '0', '{"type":"float","specs":"{\"min\":\"-999999999999999\",\"max\":\"999999999999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065877', '0'), -('1671252401', '', '右灶关火', 'RPowerOff', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065845', '0'), -('1672150235', '', '当前坡度', 'CurrentGradient', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"18\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066089', '0'), -('1672498962', '', '门锁SN', 'SN', 'R', '0', '{"type":"text","specs":"{\"length\":\"50\"}"}', '', '系统', '1', '1692347066115', '0'), -('1678466558', '', '热点BSSID', 'WIFI_AP_BSSID', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066118', '0'), -('1683189718', '', '断路器分合闸状态', 'CircuitBreakerReclosingState', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"分闸\",\"1\":\"合闸\"}"}', '', '系统', '1', '1692347066054', '0'), -('1685807693', '', '工作模式_8', 'WorkMode_8', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066147', '0'), -('1690188878', '', '风速_15', 'WindSpeed_15', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066145', '0'), -('1693727882', '', '屏幕音量大小', 'Volume', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', '屏幕音量大小', '系统', '1', '1692347065784', '0'), -('1695176346', '', '总无功功率', 'Q', 'R', '1', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065876', '0'), -('1698765678', '', '左灶温度', 'LeftFociTemputer', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066164', '0'), -('1719290909', '', '打赏按钮开关', 'RewardButtonSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066071', '0'), -('1722015520', '', '状态上报', 'StatusReport', 'R', '0', '{"type":"struct","specs":"[{\"code\":\"HoldingTemperature\",\"name\":\"保温温度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"℃\\\",\\\"unitName\\\":\\\"摄氏度\\\"}\"}},{\"code\":\"CurrentTemperature\",\"name\":\"当前温度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"℃\\\",\\\"unitName\\\":\\\"摄氏度\\\"}\"}},{\"code\":\"AddWaterCountdown\",\"name\":\"加水倒计时\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"65535\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"HeatingCountdown\",\"name\":\"加热倒计时\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"65535\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"EliminateCountdown\",\"name\":\"消毒倒计时\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"65535\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"WorkState\",\"name\":\"工作状态\",\"data_type\":{\"type\":\"enum\",\"specs\":\"{}\"}},{\"code\":\"KettleState\",\"name\":\"水壶状态\",\"data_type\":{\"type\":\"enum\",\"specs\":\"{}\"}},{\"code\":\"IsOpen\",\"name\":\"开关机状态\",\"data_type\":{\"type\":\"enum\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065925', '0'), -('1722992651', '', '砷', 'Arsenic', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('172566203', '', '开关2', 'PowerSwitch_2', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065921', '0'), -('1726794823', '', '区域名称', 'AreaName', 'R', '1', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065857', '0'), -('173893699', '', '倾斜告警使能', 'OverTiltEnable', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '1:打开,0:关闭', '系统', '1', '1692347066246', '0'), -('1740258895', '', '中央空调通道数量', 'ChannelCount', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066141', '0'), -('1741419971', '', '系统开关', 'SysPower', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065845', '0'), -('1749089902', '', '功率因数', 'PowerRatio', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0.1\",\"max\":\"1\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065936', '0'), -('1750113412', '', '土壤温度', 'SoilTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-40.0\",\"max\":\"55.0\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '土壤温度', '系统', '1', '1692347065945', '0'), -('1752959284', '', '调光等级', 'LightAdjustLevel', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065935', '0'), -('1754030735', '', 'C相无功功率', 'Qc', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"}"}', '', '系统', '1', '1692347065876', '0'), -('1757147454', '', '空调开关', 'VehACSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"False\",\"1\":\"Ture\"}"}', '', '系统', '1', '1692347065821', '0'), -('1759507509', '', '腔体当前臭氧浓度', 'O3', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066002', '0'), -('1761124953', '', '滤芯剩余寿命百分比_3', 'FilterLifeTimePercent_3', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066154', '0'), -('1762083374', '', '总累计量', 'IntegratedFlow', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000000\",\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"}"}', '', '系统', '1', '1692347065832', '0'), -('1764908587', '', '电量大小', 'PowerSize', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065795', '0'), -('1766218587', '', '缺盐报警', 'NoSaltFlag', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无\",\"1\":\"有\"}"}', '', '系统', '1', '1692347065868', '0'), -('1767116414', '', '客流数据', 'customerData', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065955', '0'), -('177295996', '', '窗4状态', 'WindowStatus04', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066236', '0'), -('1772976183', '', '车载蓝牙开关', 'BtSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065823', '0'), -('1773035141', '', '标签ID', 'LabelID', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065953', '0'), -('1773363228', '', '碰撞状态', 'CollideStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"是\",\"1\":\"否\"}"}', '', '系统', '1', '1692347065823', '0'), -('1774171775', '', '倾斜阈值', 'TiltThreshold', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"90\",\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347066246', '0'), -('177445794', '', '水浸检测状态', 'WaterSensorState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"有水浸入\"}"}', '', '系统', '1', '1692347066221', '0'), -('1779203871', '', '速度', 'Speed', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"}"}', '', '系统', '1', '1692347065979', '0'), -('1780069090', '', '品牌', 'Brand', 'R', '0', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065819', '0'), -('1781692975', '', '传感器型号', 'SensorType', 'R', '0', '{"type":"enum","specs":"{\"1\":\"被动红外\",\"10\":\"红外对射\",\"2\":\"烟感\",\"3\":\"门磁\",\"4\":\"可燃气感\",\"5\":\"水浸\",\"6\":\"幕帘探测器\",\"7\":\"紧急按钮\",\"8\":\"单体门磁\",\"9\":\"烟感B\"}"}', '', '系统', '1', '1692347066056', '0'), -('1783714347', '', '左右扫风', 'HorizontalAngle', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭左右扫风\",\"1\":\"打开左右扫风\"}"}', '', '系统', '1', '1692347066218', '0'), -('1783953487', '', '场景触发_4', 'SceneTrigger_4', 'R', '0', '{"type":"bool","specs":"{\"0\":\"场景无触发\",\"1\":\"场景触发\"}"}', '', '系统', '1', '1692347065995', '0'), -('1789058114', '', '传感器类别', 'SensorClass', 'R', '0', '{"type":"enum","specs":"{\"1\":\"探测器\",\"2\":\"遥控器\",\"3\":\"报警器\",\"4\":\"键盘\"}"}', '', '系统', '1', '1692347066056', '0'), -('1791660523', '', '目标水量', 'TargetWaterVolume', 'RW', '1', '{"type":"int","specs":"{\"min\":\"30\",\"max\":\"240\",\"step\":\"1\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347066090', '0'), -('1799986567', '', 'PM25模块状态', 'PM25ModuleStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066238', '0'), -('1802547384', '', '工作模式_1', 'WorkMode_1', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066146', '0'), -('1808271531', '', '语音对讲类型列表', 'VoiceIntercomType', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"999\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066083', '0'), -('1810422279', '', '电池电量', 'BatteryLevel', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066020', '0'), -('1812109094', '', '拳击力量', 'boxing_strength', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.01\",\"unit\":\"kg\",\"unitName\":\"千克(公斤)\"}"}', '', '系统', '1', '1692347065914', '0'), -('1815967432', '', '摄像机版本号', 'IpcVersion', 'RW', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066083', '0'), -('181758349', '', '口感选择', 'MouthFeel', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"软\",\"1\":\"标准\",\"2\":\"硬\"}"}', '', '系统', '1', '1692347066052', '0'), -('1818187101', '', '湿度', 'CurrentHumidity', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065905', '0'), -('1818726197', '', '打扫方向', 'CleanDirection', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"前进\",\"2\":\"后退\",\"3\":\"左转\",\"4\":\"右转\"}"}', '', '系统', '1', '1692347066070', '0'), -('1821683897', '', '体温', 'BodyTemp', 'R', '0', '{"type":"float","specs":"{\"min\":\"35\",\"max\":\"43\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065840', '0'), -('1824040168', '', '人体温度', 'BodyTemperature', 'R', '1', '{"type":"float","specs":"{\"min\":\"2000\",\"max\":\"5000\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066071', '0'), -('1828662993', '', '档位', 'VehGearPos', 'R', '0', '{"type":"enum","specs":"{\"0\":\"BetweenRanges\",\"1\":\"ParkRange\",\"10\":\"ForwardRangeG\",\"11\":\"ForwardRangeH\",\"12\":\"Reserved1\",\"13\":\"Reserved2\",\"15\":\"LeverPositionUnknown\",\"2\":\"ReverseRange\",\"3\":\"NeutralRange\",\"4\":\"ForwardRangeA\",\"5\":\"ForwardRangeB\",\"6\":\"ForwardRangeC\",\"7\":\"ForwardRangeD\",\"8\":\"ForwardRangeE\",\"9\":\"ForwardRangeF\"}"}', '', '系统', '1', '1692347065821', '0'), -('1830607626', '', '气囊部位', 'GasbagPosition', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"全身气囊\",\"2\":\"臂肩气囊\",\"3\":\"背腰部气囊\",\"4\":\"坐垫部气囊\",\"5\":\"腿部气囊\"}"}', '', '系统', '1', '1692347066047', '0'), -('1834223904', '', '当前温度_16', 'CurrentTemperature_16', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('1834641806', '', '滤芯剩余寿命百分比_2', 'FilterLifeTimePercent_2', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066154', '0'), -('1834855798', '', '侦测距离', 'DetectDistance', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"1\",\"unit\":\"cm\",\"unitName\":\"厘米\"}"}', '', '系统', '1', '1692347065795', '0'), -('184250719', '', '工作模式_12', 'WorkMode_12', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066147', '0'), -('1843872655', '', '工作模式_20', 'WorkMode_20', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066148', '0'), -('1848790980', '', '拳击速度', 'boxing_speed', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"20.0\",\"step\":\"0.01\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065914', '0'), -('1849802695', '', '传感器串码', 'SensorSerialNumber', 'R', '0', '{"type":"text","specs":"{\"length\":\"9\"}"}', '', '系统', '1', '1692347066056', '0'), -('1850964361', '', '滤芯剩余寿命百分比_1', 'FilterLifeTimePercent_1', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066153', '0'), -('1856193487', '', '视频自定义数据', 'VideoCustomData', 'R', '0', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347066083', '0'), -('1861911987', '', '内置铃声设置', 'BellType', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065796', '0'), -('1865194024', '', '探针温度', 'ProbeTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"30\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065993', '0'), -('1869710179', '', '剩余足浴时间', 'LeftFootbathTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"75\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066176', '0'), -('188535046', '', '班级ID', 'ClassID', 'RW', '0', '{"type":"text","specs":"{\"length\":\"20\"}"}', '', '系统', '1', '1692347066035', '0'), -('18860108', '', '冲水', 'Flush', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066128', '0'), -('1886353584', '', '当前人脸库大小', 'FaceSetSize', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"200000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066045', '0'), -('1886398794', '', '抗菌开关', 'AntibacteriaSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066184', '0'), -('1887340139', '', 'A相正向有功电能', 'ActiveEnergyImportInPhaseL1', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347065984', '0'), -('1888492344', '', '内存使用率', 'MemoryUsage', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065964', '0'), -('1892591056', '', '供电模式', 'PowerSupplyMode', 'R', '0', '{"type":"enum","specs":"{\"0\":\"电源\",\"1\":\"电池\"}"}', '', '系统', '1', '1692347066071', '0'), -('1895831740', '', '加热剩余时间', 'HeatTimeLeft', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066169', '0'), -('1896254012', '', 'ECO', 'ECO', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066141', '0'), -('1896468513', '', '回路出线侧C相温度', 'T_OUTc', 'R', '0', '{"type":"float","specs":"{\"min\":\"-100\",\"max\":\"100000\",\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065877', '0'), -('1898456275', '', '预热模式', 'Preheat_Mode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关闭预热\",\"1\":\"单次预热\",\"2\":\"定时预热\",\"3\":\"全天预热\"}"}', '', '系统', '1', '1692347066160', '0'), -('1904597285', '', '大棚空气湿度', 'airHumidity', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065929', '0'), -('1905812794', '', '电源开关_14', 'PowerSwitch_14', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('1908959178', '', '湿度', 'Humidity', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%RH\",\"unitName\":\"相对湿度\"}"}', '湿度', '系统', '1', '1692347065778', '0'), -('1910215907', '', '屏显开关', 'ScreenSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066119', '0'), -('1912801716', '', '升降控制', 'LiftingControl', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"停止\",\"1\":\"上升\",\"2\":\"下降\"}"}', '', '系统', '1', '1692347065926', '0'), -('1913425819', '', '用电量', 'ElectricityConsumption', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"°\"}"}', '', '系统', '1', '1692347065889', '0'), -('1914293262', '', '硫氰酸根', 'thiocyanate_radical', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '硫氰酸根', '系统', '1', '1692347065778', '0'), -('1915169356', '', '告警信息', 'Alarm', 'R', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '', '系统', '1', '1692347066225', '0'), -('1915936571', '', '电源开关_4', 'PowerSwitch_4', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('1919602700', '', '右灶火力调节', 'RightFociFire', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066164', '0'), -('1921350171', '', '环境高温报警阈值', 'EnvTemp_High_Threshold', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065887', '0'), -('1921835047', '', '上层强消毒开关', 'VigorousDisinfectionUpperSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066001', '0'), -('1923186565', '', 'LED开关', 'LEDSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066071', '0'), -('1923232666', '', '是否支持直存', 'DirectUploadSupport', 'R', '0', '{"type":"bool","specs":"{\"0\":\"不支持\",\"1\":\"支持\"}"}', '', '系统', '1', '1692347065795', '0'), -('1925309406', '', '滤芯剩余寿命时间_2', 'FilterLifeTimeDays_2', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1100\",\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"}"}', '', '系统', '1', '1692347066153', '0'), -('1927510423', '', '手动运行体积', 'ManualRunVolume', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"9999.9\",\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347065988', '0'), -('193136259', '', '窗帘工作状态', 'CurtainWorkState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"反转\",\"2\":\"校准中\"}"}', '', '系统', '1', '1692347065922', '0'), -('1932360802', '', '运行时间', 'SRuntime', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2100000000\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065808', '0'), -('1932491071', '', '人脸库图片存储能力', 'FaceSetPicStoreAbility', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"200000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066045', '0'), -('1933982296', '', 'HSL调色', 'HSLColor', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"Hue\",\"name\":\"色调\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"360\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"°\\\",\\\"unitName\\\":\\\"度\\\"}\"}},{\"code\":\"Saturation\",\"name\":\"饱和度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"%\\\",\\\"unitName\\\":\\\"百分比\\\"}\"}},{\"code\":\"Lightness\",\"name\":\"亮度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"%\\\",\\\"unitName\\\":\\\"百分比\\\"}\"}}]"}', '', '系统', '1', '1692347065904', '0'), -('193490802', '', '烹饪模式', 'CookingMode', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"爆炒\",\"2\":\"红烧\",\"3\":\"焖炖\",\"4\":\"煲汤\",\"5\":\"蛋类\"}"}', '', '系统', '1', '1692347066016', '0'), -('1937595441', '', '消毒柜故障号', 'Disinfection_Error_Code', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"传感器故障\",\"2\":\"消毒故障\",\"3\":\"加热故障\",\"4\":\"通讯故障\"}"}', '', '系统', '1', '1692347066001', '0'), -('1940935495', '', '目标温度_9', 'TargetTemperature_9', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('1946001729', '', '油烟机的烟道阻力大检测结果', 'ExhaustPressure', 'R', '0', '{"type":"bool","specs":"{\"0\":\"未感应到\",\"1\":\"感应到\"}"}', '', '系统', '1', '1692347066178', '0'), -('1946979075', '', '目标容量', 'TargetCapacity', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"150ml\",\"2\":\"250ml\"}"}', '', '系统', '1', '1692347066044', '0'), -('1947594751', '', '吊扇正反转', 'RotationDirection', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"正转\",\"1\":\"反转\"}"}', '', '系统', '1', '1692347065981', '0'), -('1954323111', '', '素材下发', 'Download_material', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '/ids/materialDownload.action', '系统', '1', '1692347065950', '0'), -('1963945652', '', '网关串码', 'RouterSerialNumber', 'R', '0', '{"type":"text","specs":"{\"length\":\"9\"}"}', '', '系统', '1', '1692347066057', '0'), -('1964278933', '', '高度', 'Height', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"1\",\"unit\":\"cm\",\"unitName\":\"厘米\"}"}', '', '系统', '1', '1692347065807', '0'), -('1966010884', '', '绑定请求', 'Associate_request', 'RW', '1', '{"type":"text","specs":"{\"length\":\"512\"}"}', '', '系统', '1', '1692347065956', '0'), -('1967740577', '', '心率', 'HeartRate', 'R', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"1000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065840', '0'), -('1970031417', '', '目标奶粉量', 'TargetMilkPowderVolume', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0.1\",\"max\":\"50\",\"step\":\"0.01\",\"unit\":\"g\",\"unitName\":\"克\"}"}', '', '系统', '1', '1692347066090', '0'), -('1971132262', '', '前置摄像头录制状态', 'FcRecordOn', 'R', '0', '{"type":"enum","specs":"{\"0\":\"invalid\",\"1\":\"preview\",\"2\":\"record\",\"3\":\"off\"}"}', '', '系统', '1', '1692347065818', '0'), -('1972128129', '', '音量大小', 'VolumeSize', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065795', '0'), -('1972563967', '', '土壤湿度', 'SoilMoisture', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '土壤湿度', '系统', '1', '1692347065945', '0'), -('1985408448', '', '摇头开关', 'OscillatingSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066217', '0'), -('1990807386', '', '欠压告警', 'UnderVoltError', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '', '系统', '1', '1692347065937', '0'), -('1991879931', '', '随机定时1', 'RandomTimer_1', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066195', '0'), -('1997377769', '', '欠压阈值', 'UnderVoltThreshold', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"400\",\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347066246', '0'), -('1998795713', '', '总洗涤次数', 'TotalWashCount', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066109', '0'), -('1998927000', '', '搅拌速度', 'StirringSpeed', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"8\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066106', '0'), -('2006782267', '', '电池电量百分比', 'BatteryPercentage', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065847', '0'), -('2008434599', '', '接收信号强度', 'RSSI', 'R', '0', '{"type":"float","specs":"{\"min\":\"-127\",\"max\":\"127\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065994', '0'), -('2008971998', '', '周五定时', 'FridayTiming', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065982', '0'), -('2013201141', '', 'PM2D5', 'PM2D5', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', 'PM2.5浓度', '系统', '1', '1692347065944', '0'), -('2020917561', '', '温度单位', 'TemperatureUnit', 'R', '1', '{"type":"bool","specs":"{\"0\":\"华氏度\",\"1\":\"摄氏度\"}"}', '', '系统', '1', '1692347065870', '0'), -('2027252532', '', '湿垃圾桶盖', 'HouseholdFoodWasteCover', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065826', '0'), -('2027921745', '', '流速', 'Velocity', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"}"}', '', '系统', '1', '1692347065880', '0'), -('2028113728', '', '上管加热时间', 'TopTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066009', '0'), -('2028477301', '', '设备运行时长', 'RunningTimeOfEquipment', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"525600\",\"step\":\"1\",\"unit\":\"min\"}"}', '', '系统', '1', '1692347065889', '0'), -('2028851948', '', '产品序列号', 'Pnumber', 'R', '0', '{"type":"text","specs":"{\"length\":\"32\"}"}', '', '系统', '1', '1692347065808', '0'), -('2032143887', '', '随机定时', 'RandomTimer', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066195', '0'), -('2035118031', '', '功耗模式', 'PowerMode', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"标准模式\",\"1\":\"低功耗模式\"}"}', '', '系统', '1', '1692347065797', '0'), -('203903533', '', '设备固件版本', 'FirmwareVersion', 'RW', '0', '{"type":"text","specs":"{\"length\":\"64\"}"}', '用于人脸特征下发,基于人脸门禁1.0物模型', '系统', '1', '1692347065803', '0'), -('2039182346', '', '冬夏模式', 'WinSumMode', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"夏季模式\",\"1\":\"冬季模式\"}"}', '', '系统', '1', '1692347065982', '0'), -('2043767071', '', '电机实际电流', 'ActI', 'R', '0', '{"type":"int","specs":"{\"min\":\"-30000\",\"max\":\"30000\",\"step\":\"1\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065808', '0'), -('2044371101', '', '反向有功总电能', 'ActiveEnergyExport', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347065984', '0'), -('2044781983', '', '存储介质录像模式', 'StorageRecordMode', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"不录像\",\"1\":\"事件录像\",\"2\":\"连续录像\"}"}', '', '系统', '1', '1692347065941', '0'), -('204722885', '', '电源开关_17', 'PowerSwitch_17', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066143', '0'), -('2053013166', '', '风速_7', 'WindSpeed_7', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066144', '0'), -('2054956191', '', '风速_17', 'WindSpeed_17', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066145', '0'), -('2059239875', '', '定时启动', 'Start_Timer', 'RW', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"86399\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347066001', '0'), -('2060611551', '', '出箱数量', 'ExitHiveNumber', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"1\",\"unit\":\"pcs\",\"unitName\":\"只\"}"}', '', '系统', '1', '1692347065954', '0'), -('2065453531', '', '主回路开关合闸状态', 'C_SWITCH', 'R', '0', '{"type":"bool","specs":"{\"0\":\"断开\",\"1\":\"闭合\"}"}', '', '系统', '1', '1692347065878', '0'), -('2070545282', '', '降雨量', 'Rainfall', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2000\",\"step\":\"0.01\",\"unit\":\"mm\",\"unitName\":\"毫米\"}"}', '降雨量', '系统', '1', '1692347065945', '0'), -('2071791781', '', '镉', 'Cadmium', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('2073791166', '', '风速_12', 'WindSpeed_12', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066145', '0'), -('2077633064', '', 'TDS值', 'TDS', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"3000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065888', '0'), -('2078436010', '', '节能模式', 'PowerSavingMode', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066172', '0'), -('208140276', '', '车位余量信息', 'remain', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065949', '0'), -('2092080085', '', '跑步距离', 'RunningDistance', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"1\",\"unit\":\"m\",\"unitName\":\"米\"}"}', '', '系统', '1', '1692347066089', '0'), -('2094438871', '', '冲压行程', 'E_Craft_Stroke_Punch', 'R', '0', '{"type":"float","specs":"{\"min\":\"-1000000\",\"max\":\"1000000\",\"step\":\"0.1\",\"unit\":\"cm\",\"unitName\":\"厘米\"}"}', '', '系统', '1', '1692347065906', '0'), -('2095782813', '', 'PH值', 'pH', 'RW', '1', '{"type":"float","specs":"{\"min\":\"1\",\"max\":\"14\",\"step\":\"0.1\",\"unitName\":\"无\"}"}', '氢离子浓度指数(hydrogen ion concentration)是衡量水体酸碱度的一个值,亦称氢离子浓度指数、酸碱值,是溶液中氢离子活度的一种标度,也就是通常意义上溶液酸碱程度的衡量标准', '系统', '1', '1692347065778', '0'), -('2099914274', '', '循环定时3', 'PeriodTimer_3', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066202', '0'), -('2101207605', '', '苯并芘', 'BaP', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('2102671153', '', '编程开关', 'AutoSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065988', '0'), -('2109690459', '', '音频信号源', 'AudioSource', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"本地\",\"1\":\"蓝牙\",\"2\":\"外音\"}"}', '', '系统', '1', '1692347065859', '0'), -('2111495773', '', '气体浓度', 'GasConcentration', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2000\",\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347065920', '0'), -('211183914', '', '烘干室温度', 'E_Craft_TT_Drying_Spray', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-10000\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065909', '0'), -('2112785158', '', '二氧化硫浓度', 'SO2', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347065979', '0'), -('2114712236', '', 'C相正向有功电能', 'ActiveEnergyImportInPhaseL3', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"99999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347065984', '0'), -('2122103959', '', '下加热管温度', 'DownTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066009', '0'), -('2122640153', '', '总悬浮颗粒物', 'TSP', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('2123960769', '', 'B相电压总谐波', 'UbTHD', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065877', '0'), -('2124373106', '', '报警提醒计划', 'AlarmNotifyPlan', 'RW', '0', '{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"struct\"}}"}', '报警时间段列表,其中的BeginTine和EndTime分别代表时间段开始和结束的秒数,0表示00:00:00,86399表示23:59:59', '系统', '1', '1692347066081', '0'), -('2125273571', '', '最大录像时长', 'MaxRecordTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065795', '0'), -('2126748746', '', '局部按摩', 'LocalMassage', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"头部按摩\",\"2\":\"颈肩按摩\",\"3\":\"颈按摩\",\"4\":\"肩按摩\",\"5\":\"背部按摩\",\"6\":\"腰部按摩\",\"7\":\"臀部按摩\",\"8\":\"膝盖按摩\",\"9\":\"腿部集中按摩\"}"}', '', '系统', '1', '1692347066047', '0'), -('2127447307', '', '锁定开关', 'LockSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"解锁\",\"1\":\"锁定\"}"}', '', '系统', '1', '1692347065859', '0'), -('2131060619', '', '音量控制', 'VolumeControl', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"降低音量\",\"1\":\"提高音量\"}"}', '', '系统', '1', '1692347065859', '0'), -('2142087754', '', '继电器线圈', 'Coil', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"断电\",\"1\":\"通电\"}"}', '', '系统', '1', '1692347065846', '0'), -('2143451062', '', '环境低温报警阈值', 'EnvTemp_Low_Threshold', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065887', '0'), -('2143487842', '', 'C相电压', 'nUc', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065867', '0'), -('21496797', '', '电源开关', 'PowerSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065816', '0'), -('2150172179', '', 'C相无功功率', 'electric_pqc', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000\",\"step\":\"0.01\",\"unit\":\"kvar\",\"unitName\":\"千乏\"}"}', '', '系统', '1', '1692347065866', '0'), -('2155066372', '', '当前温度', 'CurrentTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"50\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065841', '0'), -('2157004469', '', '减速', 'decrease_speed', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065915', '0'), -('2157024272', '', '心电信号', 'ECGSignal', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"999\",\"step\":\"0.01\",\"unit\":\"mV\",\"unitName\":\"毫伏\"}"}', '', '系统', '1', '1692347066071', '0'), -('216127694', '', '开门方向调整', 'DoorOpenDirectionAdjustment', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065851', '0'), -('216525024', '', '大气压', 'Atmosphere', 'RW', '0', '{"type":"float","specs":"{\"min\":\"55\",\"max\":\"106\",\"step\":\"0.1\",\"unit\":\"kPa\",\"unitName\":\"千帕\"}"}', '大气压强', '系统', '1', '1692347065945', '0'), -('2166133198', '', '工作模式_17', 'WorkMode_17', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066148', '0'), -('2166176937', '', '有功电能', 'nActiveEnergy', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065866', '0'), -('2168906066', '', '故障门限值', 'setValue', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65536\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065937', '0'), -('2169908308', '', '出风口水平调节', 'HorizontalAdjustment', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"停止\",\"1\":\"摇摆\"}"}', '', '系统', '1', '1692347066181', '0'), -('2169995912', '', '调料ID', 'SeasoningID', 'RW', '0', '{"type":"text","specs":"{\"length\":\"80\"}"}', '', '系统', '1', '1692347066016', '0'), -('2171724118', '', '水槽洗碗机错误码', 'SinkDishWasher_Error_Code', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"异常\"}"}', '', '系统', '1', '1692347066110', '0'), -('2174518861', '', '当前速度', 'CurrentSpeed', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0.8\",\"max\":\"14\",\"step\":\"0.01\",\"unit\":\"km/h\",\"unitName\":\"千米每小时\"}"}', '', '系统', '1', '1692347066089', '0'), -('2174822595', '', '热水量状态', 'HotWaterVolumeStatus', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065987', '0'), -('2186282133', '', '风扇运行时间', 'FanRunTime', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"}"}', '', '系统', '1', '1692347065809', '0'), -('2188757074', '', '声音分贝值', 'SoundDecibelValue', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"500\",\"step\":\"0.1\",\"unit\":\"dB\",\"unitName\":\"分贝\"}"}', '', '系统', '1', '1692347066235', '0'), -('2193882310', '', '加热档位右', 'RightHeatLevel', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"档位1\",\"2\":\"档位2\",\"3\":\"档位3\",\"4\":\"档位4\",\"5\":\"档位5\",\"6\":\"档位6\",\"7\":\"档位7\",\"8\":\"档位8\",\"9\":\"档位9\"}"}', '', '系统', '1', '1692347066171', '0'), -('2200151952', '', '猪的ID', 'PigID', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '猪的ID', '系统', '1', '1692347065975', '0'), -('2202119243', '', '目标湿度', 'TargetHumidity', 'RW', '0', '{"type":"int","specs":"{\"min\":\"-35\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065927', '0'), -('2204045769', '', '烟机风量档位', 'HoodSpeed', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"低档\",\"2\":\"中档\",\"3\":\"高档\"}"}', '', '系统', '1', '1692347065845', '0'), -('2207114587', '', '电门锁', 'ELock', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066004', '0'), -('221104771', '', '帧序号', 'seq', 'RW', '0', '{"type":"int","specs":"{\"min\":\"-2147483648\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065935', '0'), -('2211677291', '', '固件版本号', 'Version', 'R', '0', '{"type":"text","specs":"{\"length\":\"10\"}"}', '', '系统', '1', '1692347065926', '0'), -('2211713701', '', '断路器类型', 'CircuitBreakerType', 'R', '1', '{"type":"enum","specs":"{\"0\":\"220伏断路器\",\"1\":\"380伏断路器\"}"}', '', '系统', '1', '1692347066054', '0'), -('2214891364', '', '阀门开关', 'Switch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065800', '0'), -('2217520255', '', 'LCA未配网子设备列表', 'UnbindDeviceList', 'RW', '1', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065983', '0'), -('2219280062', '', '变频器运行状态3', 'InvertStatus_3', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"10\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065809', '0'), -('2223031083', '', '当前温度_20', 'CurrentTemperature_20', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('2223476073', '', '设备号', 'NumberSerial', 'R', '0', '{"type":"text","specs":"{\"length\":\"12\"}"}', '', '系统', '1', '1692347065926', '0'), -('2226873071', '', '手动状态', 'ManualStatus', 'R', '0', '{"type":"enum","specs":"{\"11\":\"手动\"}"}', '绿立方', '系统', '1', '1692347065952', '0'), -('2237463348', '', '烘烤温度', 'ToastTemperature', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"460\",\"step\":\"1\",\"unit\":\"℉\",\"unitName\":\"华氏度\"}"}', '', '系统', '1', '1692347065870', '0'), -('2245817093', '', '反向累计流量', 'BackwardIntegratedFlow', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"}"}', '', '系统', '1', '1692347065879', '0'), -('2249638130', '', '内置铃声', 'Ringtone', 'RW', '0', '{"type":"array","specs":"{\"size\":\"10\",\"item\":{\"type\":\"struct\"}}"}', '', '系统', '1', '1692347065794', '0'), -('2249850970', '', '滤芯寿命状态_1', 'FilterStatus_1', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"需要更换\"}"}', '', '系统', '1', '1692347066153', '0'), -('2249958194', '', '右炉工作时间', 'RightWorkTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066164', '0'), -('2251748910', '', '考勤状态', 'AttendanceState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"进校\",\"1\":\"离校\"}"}', '', '系统', '1', '1692347066034', '0'), -('2253942150', '', '消毒柜工作模式', 'Disinfection_Mode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"空闲\",\"1\":\"消毒\",\"2\":\"烘干\",\"3\":\"暖碟\",\"4\":\"延时解锁\",\"5\":\"快洁\",\"6\":\"智能消毒\"}"}', '', '系统', '1', '1692347066001', '0'), -('2254583625', '', '左灶定时关闭时间', 'LeftFociTimer', 'RW', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"5999\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347066164', '0'), -('2258671841', '', '目标温度_2', 'TargetTemperature_2', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('2264441664', '', '风速', 'WindSpeed', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"低速\",\"2\":\"中速\",\"3\":\"高速\"}"}', '', '系统', '1', '1692347065860', '0'), -('2265699289', '', '测量单位', 'MeasurementUnit', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"千克\",\"1\":\"磅\",\"2\":\"英石\",\"3\":\"斤\",\"4\":\"公斤\"}"}', '', '系统', '1', '1692347066066', '0'), -('2266379619', '', '工作状态', 'LightStatus', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065935', '0'), -('2267602260', '', '声音模块状态', 'SoundModuleStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066238', '0'), -('227034880', '', '本机配置', 'LocalConfiguration', 'R', '0', '{"type":"struct","specs":"[{\"code\":\"IEMI\",\"name\":\"机身码\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"30\\\"}\"}},{\"code\":\"SolfwareVersion\",\"name\":\"软件版本\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"10\\\"}\"}},{\"code\":\"SystemVersion\",\"name\":\"系统版本\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"10\\\"}\"}}]"}', '', '系统', '1', '1692347066033', '0'), -('2270705707', '', '盖子状态', 'CoverState', 'R', '0', '{"type":"bool","specs":"{\"0\":\"盒盖\",\"1\":\"开盖\"}"}', '', '系统', '1', '1692347065864', '0'), -('2271567453', '', '人脸特征数据', 'Feature', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065956', '0'), -('2275163043', '', '采集间隔', 'Interval', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1920\",\"step\":\"300\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065811', '0'), -('2275399513', '', '场景名称_1', 'SceneName_1', 'RW', '0', '{"type":"text","specs":"{\"length\":\"8\"}"}', '', '系统', '1', '1692347065995', '0'), -('2288093409', '', '车道偏离', 'Ldw', 'R', '0', '{"type":"enum","specs":"{\"0\":\"Off\",\"1\":\"Low\",\"2\":\"Mid\",\"3\":\"High\"}"}', '', '系统', '1', '1692347065823', '0'), -('2288215344', '', '烟机工作状态', 'HoodWorState', 'R', '0', '{"type":"bool","specs":"{\"0\":\"待机中\",\"1\":\"工作中\"}"}', '', '系统', '1', '1692347066243', '0'), -('2291011633', '', '光照度', 'Light', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '单位,为lux,请补充并修改', '系统', '1', '1692347065978', '0'), -('2292168637', '', '灯模式', 'LightMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"mono\",\"1\":\"color\"}"}', '', '系统', '1', '1692347066211', '0'), -('2293185737', '', '信号强度', 'lqi', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065912', '0'), -('2294346280', '', '空开电表用电量', 'AirConPowerConsumption', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦时\"}"}', '', '系统', '1', '1692347066240', '0'), -('2307003066', '', 'CPU使用率', 'CpuUsage', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065964', '0'), -('2307639091', '', '循环定时4', 'PeriodTimer_4', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066202', '0'), -('2310447889', '', '设备理想生产周期', 'E_Craft_Ideal_Cycle_Time', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.1\",\"unitName\":\"无\"}"}', '设备理想生产周期', '系统', '1', '1692347065906', '0'), -('2311442229', '', '面积', 'Area', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"200\",\"step\":\"0.01\",\"unit\":\"㎡\",\"unitName\":\"平方米\"}"}', '', '系统', '1', '1692347065848', '0'), -('2313859679', '', '运行时间_4', 'Runtime_4', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"}"}', '', '系统', '1', '1692347066154', '0'), -('2318922949', '', '频率', 'electric_fr', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"Hz\",\"unitName\":\"赫兹\"}"}', '', '系统', '1', '1692347065865', '0'), -('2321614990', '', '用户照片', 'User_picture', 'R', '1', '{"type":"text","specs":"{\"length\":\"512\"}"}', '', '系统', '1', '1692347065956', '0'), -('2327667827', '', '电源开关_5', 'PowerSwitch_5', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('232817712', '', '目标温度_18', 'TargetTemperature_18', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('2333189481', '', '当前体温', 'AnimalTemperature', 'R', '1', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065975', '0'), -('2334651549', '', '断路器地址', 'CircuitBreakerAddress', 'R', '1', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"30\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066054', '0'), -('2334871308', '', '窗2状态', 'WindowStatus02', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066236', '0'), -('2335671374', '', '下室高温开关', 'TempLowerSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066000', '0'), -('2337038966', '', '成型比', 'FormingRate', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065842', '0'), -('2338514910', '', '储仓温度', 'Temperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"50\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065825', '0'), -('2338545835', '', '上床时间', 'BedTime', 'R', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347065840', '0'), -('2346932710', '', '网关信号强度', 'RouterRSSI', 'R', '0', '{"type":"float","specs":"{\"min\":\"-127\",\"max\":\"-1\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066057', '0'), -('2347422352', '', '语音功能开启关闭设置', 'SysVoice', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065846', '0'), -('2348930817', '', '网关状态', 'GatewayStatus', 'R', '1', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066236', '0'), -('235180385', '', '区域Id', 'AreaId', 'R', '1', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065856', '0'), -('2352489401', '', '位置3状态', 'location3', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无人\",\"1\":\"有人\"}"}', '', '系统', '1', '1692347066232', '0'), -('2355923296', '', '地理位置', 'GeoLocation', 'R', '0', '{"type":"struct","specs":"[{\"code\":\"Longitude\",\"name\":\"经度\",\"data_type\":{\"type\":\"float\",\"specs\":\"{\\\"min\\\":\\\"-180\\\",\\\"max\\\":\\\"180\\\",\\\"step\\\":\\\"0.01\\\",\\\"unit\\\":\\\"°\\\",\\\"unitName\\\":\\\"度\\\"}\"}},{\"code\":\"Latitude\",\"name\":\"纬度\",\"data_type\":{\"type\":\"float\",\"specs\":\"{\\\"min\\\":\\\"-180\\\",\\\"max\\\":\\\"180\\\",\\\"step\\\":\\\"0.01\\\",\\\"unit\\\":\\\"°\\\",\\\"unitName\\\":\\\"度\\\"}\"}}]"}', '', '系统', '1', '1692347065812', '0'), -('2358418021', '', '人脸库算法版本', 'FaceSetAlgorithmVersion', 'RW', '1', '{"type":"text","specs":"{\"length\":\"65\"}"}', '', '系统', '1', '1692347066045', '0'), -('2361048248', '', '平台链接', 'PlatformURL', 'RW', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347066035', '0'), -('2363654778', '', '音量', 'SoundVolume', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066089', '0'), -('2363852681', '', 'B相电流', 'nIb', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065867', '0'), -('2365284996', '', '健康_负离子', 'Ions', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('2367054232', '', '安全启动', 'StartSecure', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"WakeUpTime\",\"name\":\"进入时间\",\"data_type\":{\"type\":\"float\",\"specs\":\"{\\\"min\\\":\\\"1\\\",\\\"max\\\":\\\"120\\\",\\\"step\\\":\\\"0.01\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"EnabledSwitch\",\"name\":\"使能开关\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065926', '0'), -('2368388696', '', '首要污染物', 'PrimaryItem', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066230', '0'), -('2376396051', '', '已用总水量', 'waterUsed', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"9999.00\",\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347065868', '0'), -('2382905460', '', '产品序列号', 'SerialNo', 'R', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '内容推荐', '系统', '1', '1692347066062', '0'), -('2385413258', '', '雾量档位', 'SprayLevel', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"静音\",\"1\":\"低档\",\"2\":\"中档\",\"3\":\"高档\",\"4\":\"最高档\"}"}', '', '系统', '1', '1692347066119', '0'), -('2385911765', '', '停机原因', 'E_Stop_Reason', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', '设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例: -0 -- 正常运行 -1 -- 缺料 -2 -- 无生产任务 -3 -- 休息', '系统', '1', '1692347065907', '0'), -('239251272', '', '窗7状态', 'WindowStatus07', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066237', '0'), -('2392517354', '', '总有功峰电能', 'EP_2', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065877', '0'), -('2393591629', '', '无线转接模块状态', 'WirelessModuleStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066228', '0'), -('2395941200', '', 'USB开关2', 'USBSwitch_2', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066014', '0'), -('239606190', '', '工作开关', 'WotkSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065870', '0'), -('239721087', '', '小槽智能清洗参数', 'Small_Clean_Param', 'RW', '0', '{"type":"text","specs":"{\"length\":\"254\"}"}', '', '系统', '1', '1692347066110', '0'), -('2397840310', '', '窗6状态', 'WindowStatus06', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066237', '0'), -('23996149', '', '开门端停留时间', 'OpenedStayTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065850', '0'), -('2402994646', '', '总进水量', 'TotalInput', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347066157', '0'), -('240853043', '', '内存总量', 'memory_total', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"0.01\",\"unit\":\"B\",\"unitName\":\"字节\"}"}', '', '系统', '1', '1692347066133', '0'), -('2409272166', '', '播放TTS文本', 'PlayTTSText', 'RW', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066073', '0'), -('2412799275', '', '当前温度_18', 'CurrentTemperature_18', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('2413487592', '', '循环定时2', 'PeriodTimer_2', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066201', '0'), -('2417753291', '', '大棚土壤EC值', 'soilEC', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"20000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065930', '0'), -('2420609975', '', '环境温度', 'EnvTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065887', '0'), -('2422592363', '', '小槽水位选择', 'Small_Water_Level', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"中\",\"1\":\"高\",\"2\":\"低\"}"}', '', '系统', '1', '1692347066110', '0'), -('2427992995', '', 'PM1D0', 'PM1D0', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', 'pm1.0浓度', '系统', '1', '1692347065944', '0'), -('2429358297', '', 'PM25', 'PM25', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347065916', '0'), -('2430794329', '', '命令号', 'cmd', 'RW', '0', '{"type":"text","specs":"{\"length\":\"32\"}"}', '', '系统', '1', '1692347065935', '0'), -('2434650489', '', '水位', 'WaterLevel', 'R', '0', '{"type":"enum","specs":"{\"0\":\"低液位\",\"1\":\"高液位\"}"}', '', '系统', '1', '1692347065925', '0'), -('2438108473', '', '植物生长灯状态', 'PlantGrowthLight', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066225', '0'), -('2438173583', '', '环境湿度', 'EnvHumidity', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347065887', '0'), -('2440930563', '', 'ZB带宽', 'ZB_Band', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"868M\",\"1\":\"915M\",\"2\":\"2_4G\"}"}', '', '系统', '1', '1692347065932', '0'), -('2445237701', '', '一键再生', 'OneKeyRegenerate', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065868', '0'), -('2445722753', '', '采暖温度', 'HeatingTemperature', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"99\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065982', '0'), -('2450179671', '', '本地清扫面积', 'CleanArea', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"200\",\"step\":\"0.01\",\"unit\":\"㎡\",\"unitName\":\"平方米\"}"}', '', '系统', '1', '1692347066070', '0'), -('2454087096', '', '里程', 'Mileage', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1677721500\",\"step\":\"1\",\"unit\":\"m\",\"unitName\":\"米\"}"}', '', '系统', '1', '1692347066004', '0'), -('2454143853', '', '下室暖盘开关', 'WarmplateLowerSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066001', '0'), -('2457150000', '', '二氧化碳', 'co2', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"}"}', '', '系统', '1', '1692347065916', '0'), -('2458267327', '', '操作返回值', 'resCode', 'RW', '0', '{"type":"int","specs":"{\"min\":\"-2147483648\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065937', '0'), -('2458739149', '', '指纹卡号', 'CardId', 'R', '1', '{"type":"text","specs":"{\"length\":\"32\"}"}', '', '系统', '1', '1692347065951', '0'), -('2462301366', '', '出粉率', 'E_Craft_R_FE_Spray', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065910', '0'), -('2466465768', '', '再生间隔天数', 'RegenerateDays', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"365\",\"step\":\"1\",\"unit\":\"d\",\"unitName\":\"天\"}"}', '', '系统', '1', '1692347065868', '0'), -('2468977488', '', '电量', 'Battery', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', 'Power', '系统', '1', '1692347065977', '0'), -('2469795143', '', 'ZB设备MAC地址', 'ZB_CO_MAC', 'RW', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347065932', '0'), -('2470566022', '', '蒸箱制作剩余时间', 'SteamerTimeRemainingMinute', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347065846', '0'), -('2471773840', '', '光照度', 'LightLux', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"0.01\",\"unit\":\"lx\",\"unitName\":\"流明\"}"}', '光照强度', '系统', '1', '1692347065945', '0'), -('2473833093', '', '有功功率值', 'ActivePower', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"}"}', '', '系统', '1', '1692347065936', '0'), -('2474447218', '', '消毒剩余时间', 'DisinfectionRemainingTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"30\",\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347066132', '0'), -('2478815132', '', '滤芯寿命百分比_5', 'FilterLifeTimePercent_5', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066157', '0'), -('2479073904', '', '风向', 'WindDirection', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"360\",\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '风向', '系统', '1', '1692347065945', '0'), -('2482514226', '', 'WIFI强度', 'WifiSignal', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065796', '0'), -('2483211320', '', '大槽智能清洗参数', 'Large_Clean_Param', 'RW', '0', '{"type":"text","specs":"{\"length\":\"254\"}"}', '', '系统', '1', '1692347066110', '0'), -('2485432389', '', 'B相电流总谐波', 'IbTHD', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065877', '0'), -('2486699905', '', '电机实际速度', 'ActVel', 'R', '0', '{"type":"int","specs":"{\"min\":\"-30000\",\"max\":\"30000\",\"step\":\"1\",\"unit\":\"r/min(rpm)\",\"unitName\":\"转每分\"}"}', '', '系统', '1', '1692347065808', '0'), -('2492018582', '', '当前算力', 'CurrentComputingPower', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065964', '0'), -('2492414730', '', '网路标识', 'ZB_PAN_ID', 'RW', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347065932', '0'), -('2495045999', '', '土壤PH', 'SoilPH', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"7\",\"step\":\"1\",\"unitName\":\"无\"}"}', '土壤PH值', '系统', '1', '1692347065945', '0'), -('2495580457', '', '报警提示开关', 'AlarmPromptSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066083', '0'), -('249855625', '', '预热开关', 'PreheatSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065992', '0'), -('2503013178', '', '工作模式_5', 'WorkMode_5', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066147', '0'), -('2511968505', '', '变温室温度', 'VariableTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"-18\",\"max\":\"10\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066185', '0'), -('2514408390', '', '设备运行总时间', 'E_TotalRunTime', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '设备运行总时间', '系统', '1', '1692347065907', '0'), -('2517303429', '', '清空屏幕', 'Clear', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', 'clear', '系统', '1', '1692347065950', '0'), -('2524743084', '', '工作模式_7', 'WorkMode_7', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066147', '0'), -('2525386958', '', '电池电压', 'BatteryVoltage', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"3.7\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347066026', '0'), -('2526481192', '', '呼吸率', 'RespiratoryRate', 'R', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"1000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065840', '0'), -('2535091566', '', '加湿开关', 'Humidified', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066153', '0'), -('2540132033', '', '按铃抓拍动作设置', 'ActionSetting', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"无操作\",\"1\":\"拍照\",\"2\":\"录像\"}"}', '', '系统', '1', '1692347065942', '0'), -('2540382720', '', '移动侦测灵敏度', 'MotionDetectSensitivity', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"关闭\",\"1\":\"最低档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347065783', '0'), -('2544595186', '', '散热器温度', 'RadiatorTemperature', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"30000\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065809', '0'), -('2550843025', '', '识别照片', 'Pic_name', 'RW', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065929', '0'), -('2551763567', '', '光照度模块状态', 'LightLuxModuleStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066231', '0'), -('2551821177', '', '制造商名称', 'ManufacturerName', 'R', '0', '{"type":"text","specs":"{\"length\":\"256\"}"}', '制造商名称', '系统', '1', '1692347065828', '0'), -('2552389488', '', '压力', 'E_Craft_PT_Comp', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.1\",\"unit\":\"Pa\",\"unitName\":\"帕\"}"}', '', '系统', '1', '1692347065911', '0'), -('2554136572', '', '工作模式_19', 'WorkMode_19', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066148', '0'), -('2556273569', '', '算法数量', 'AlgorithmQuantity', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"256\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065964', '0'), -('2561848494', '', '脱水时长', 'SpinTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066050', '0'), -('2562540861', '', '总有功功率', 'P', 'R', '1', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065875', '0'), -('2564567389', '', 'sim卡类型', 'SimCardType', 'R', '0', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065818', '0'), -('2568614235', '', '当前温度_14', 'CurrentTemperature_14', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('2569679854', '', '左风量', 'LeftWindSpeed', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"低档\",\"2\":\"中档\",\"3\":\"高档\"}"}', '', '系统', '1', '1692347066177', '0'), -('2570713461', '', '周日定时', 'SundayTiming', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065982', '0'), -('2572183729', '', '1号车牌', 'Car_number_1', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '135_c_1', '系统', '1', '1692347065975', '0'), -('2572273164', '', '图片地址', 'PictureURL', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065953', '0'), -('2577869447', '', '电机挡位', 'KitchenVentilator_MotorStall', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066178', '0'), -('2578085190', '', '启用锁', 'LockEnabled', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065850', '0'), -('2579873781', '', '表计通讯状态', 'M_STATUS', 'R', '0', '{"type":"bool","specs":"{\"0\":\"异常\",\"1\":\"正常\"}"}', '', '系统', '1', '1692347065878', '0'), -('2580285749', '', '人脸库ID', 'FaceSetID', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066045', '0'), -('2582802683', '', 'C相视在功率', 'electric_psc', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"}"}', '', '系统', '1', '1692347065866', '0'), -('258628271', '', '唤醒数据', 'WakeUpData', 'R', '1', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065798', '0'), -('2587483363', '', '运行时间_3', 'Runtime_3', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"}"}', '', '系统', '1', '1692347066154', '0'), -('2588757312', '', '食谱信息', 'RecipeInfo', 'R', '0', '{"type":"enum","specs":"{\"1\":\"本地美食\",\"2\":\"云食谱\"}"}', '', '系统', '1', '1692347065993', '0'), -('2591063792', '', '本地倒计时', 'CountDown', 'RW', '1', '{"type":"struct","specs":"[{\"code\":\"IsRunning\",\"name\":\"执行状态\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeLeft\",\"name\":\"剩余时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"1\\\",\\\"max\\\":\\\"86399\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"PowerSwitch\",\"name\":\"开关动作\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"Timestamp\",\"name\":\"当前时间戳\",\"data_type\":{\"type\":\"date\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347066015', '0'), -('2592355785', '', 'C相有功功率', 'electric_frc', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065866', '0'), -('259827945', '', '密度', 'Density', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kg/m³\",\"unitName\":\"千克每立方米\"}"}', '', '系统', '1', '1692347065880', '0'), -('2599957232', '', '睡眠体位', 'SleepPosition', 'R', '0', '{"type":"enum","specs":"{\"1\":\"正位\",\"2\":\"左侧位\",\"3\":\"右侧位\"}"}', '', '系统', '1', '1692347065840', '0'), -('2606564330', '', '制水状态', 'PureState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"待机\",\"1\":\"制水中\"}"}', '', '系统', '1', '1692347066157', '0'), -('2608180141', '', '冷藏室目标温度', 'FridgeTargetTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"1\",\"max\":\"10\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066185', '0'), -('2614195286', '', '目标PH', 'TargetPH', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"14\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '绿立方', '系统', '1', '1692347065974', '0'), -('2616318760', '', '大槽工作模式', 'Large_Work_Mode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"普通洗碗\",\"1\":\"普通果蔬\",\"2\":\"高温除菌\",\"3\":\"超声波清洗\",\"4\":\"智能清洗\"}"}', '', '系统', '1', '1692347066111', '0'), -('2616377707', '', '磁盘已用容量', 'DiskUsedCapacity', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066043', '0'), -('2620194010', '', '水位检测', 'DetectingWaterlLevel', 'R', '0', '{"type":"bool","specs":"{\"0\":\"未满\",\"1\":\"水满\"}"}', '', '系统', '1', '1692347065924', '0'), -('2628278271', '', '随机定时2', 'RandomTimer_2', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066196', '0'), -('2628843218', '', '光照度', 'LightLuxValue', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"Lux\",\"unitName\":\"卢克斯\"}"}', '', '系统', '1', '1692347066238', '0'), -('2631942210', '', '漏电告警使能', 'LeakageEnable', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '1:打开,0:关闭', '系统', '1', '1692347066246', '0'), -('2639258649', '', 'B相功率因素', 'electric_pfb', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065866', '0'), -('2640178207', '', '循环定时1', 'PeriodTimer_1', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066200', '0'), -('2641165700', '', '风速_5', 'WindSpeed_5', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066144', '0'), -('2643298915', '', 'C相功率因数', 'COSc', 'R', '0', '{"type":"float","specs":"{\"min\":\"-1.00\",\"max\":\"1.00\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065876', '0'), -('2651094246', '', '运行开关', 'WorkSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065833', '0'), -('2652444843', '', '工作步骤', 'WorkStep', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066105', '0'), -('2653777974', '', '屏幕宽度', 'ScreenWidth', 'R', '1', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"99999\",\"step\":\"1\",\"unit\":\"mm\",\"unitName\":\"毫米\"}"}', '', '系统', '1', '1692347065953', '0'), -('2654848833', '', '线路温度', 'LineTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"-40\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066055', '0'), -('2655682907', '', '红外检测状态', 'MotionAlarmState', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无人\",\"1\":\"有人\"}"}', '', '系统', '1', '1692347066076', '0'), -('2666757398', '', '烘干开关', 'DrySwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066051', '0'), -('266809885', '', '风速_3', 'WindSpeed_3', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066143', '0'), -('2669246832', '', '实际转速', 'RotateSpeed', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"1\",\"unit\":\"r/min(rpm)\",\"unitName\":\"转每分\"}"}', '', '系统', '1', '1692347065843', '0'), -('2672451694', '', '当前电流', 'Current', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"630000\",\"step\":\"0.01\",\"unit\":\"mA\",\"unitName\":\"毫安\"}"}', '', '系统', '1', '1692347065884', '0'), -('2672985934', '', '开启注水', 'FillerOn', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066128', '0'), -('2673614095', '', '消耗热量', 'BurnCalories', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.01\",\"unit\":\"cal\",\"unitName\":\"卡路里\"}"}', '', '系统', '1', '1692347066088', '0'), -('2676925624', '', 'A相功率因数', 'COSa', 'R', '0', '{"type":"float","specs":"{\"min\":\"-1.00\",\"max\":\"1.00\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065876', '0'), -('2697991469', '', '右灶温度', 'RightFociTemputer', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066164', '0'), -('2699471732', '', '烟机工作状态', 'HoodWorkState', 'R', '0', '{"type":"bool","specs":"{\"0\":\"待机中\",\"1\":\"工作中\"}"}', '', '系统', '1', '1692347065845', '0'), -('270055692', '', '加湿开关', 'Humidification', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066218', '0'), -('2701185044', '', '氨气浓度', 'NH3', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347065979', '0'), -('2704123716', '', '目标温度_14', 'TargetTemperature_14', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('2708949885', '', '润滑油压力', 'E_Craft_PT_Oil_Punch', 'R', '0', '{"type":"float","specs":"{\"min\":\"-100000\",\"max\":\"1000000\",\"step\":\"0.1\",\"unit\":\"kPa\",\"unitName\":\"千帕\"}"}', '', '系统', '1', '1692347065906', '0'), -('2714553713', '', '运行时间', 'Runtime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"时\"}"}', '累计运行时间', '系统', '1', '1692347065851', '0'), -('2714910859', '', '保温开关', 'HoldingSwicth', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347066044', '0'), -('2716416372', '', '目标温度_7', 'TargetTemperature_7', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('2717574043', '', '磁盘使用百分比', 'DiskUtilizationRate', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '磁盘使用率', '系统', '1', '1692347065828', '0'), -('2721789004', '', '背光灯模式', 'BackLightMode', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"关闭背光灯\",\"2\":\"状态指示灯\",\"3\":\"位置指示灯\"}"}', '', '系统', '1', '1692347066173', '0'), -('2731217568', '', '开关', 'Socket', 'RW', '1', '{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"struct\"}}"}', '', '系统', '1', '1692347065888', '0'), -('2736412067', '', '抓拍动作', 'capture', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065929', '0'), -('273659451', '', '网关名称', 'RouterName', 'RW', '0', '{"type":"text","specs":"{\"length\":\"31\"}"}', '', '系统', '1', '1692347066057', '0'), -('2738319698', '', '麦克风开关', 'MicSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065941', '0'), -('2738543951', '', '烘干开关', 'DryingSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066130', '0'), -('273937862', '', '快捷回复声音', 'QuickResponseRing', 'RW', '0', '{"type":"array","specs":"{\"size\":\"10\",\"item\":{\"type\":\"struct\"}}"}', '', '系统', '1', '1692347065796', '0'), -('2741771098', '', '拍摄间隔', 'ShootInterval', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065795', '0'), -('2751517052', '', 'B相功率因数', 'COSb', 'R', '0', '{"type":"float","specs":"{\"min\":\"-1.00\",\"max\":\"1.00\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065876', '0'), -('2754938231', '', '错误字1', 'ErrorCode_1', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"10\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065808', '0'), -('2765035687', '', '启用双门联动', 'LinkageEnabled', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065851', '0'), -('2775033912', '', 'B相有功功率', 'Pb', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065876', '0'), -('2777957463', '', '加热模式', 'HeatMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动模式\",\"1\":\"节能模式\",\"2\":\"整体加热\",\"3\":\"单独加热\",\"4\":\"无加热器\"}"}', '', '系统', '1', '1692347065926', '0'), -('2784668604', '', '定时恢复切换', 'TimingRecoverChange', 'RW', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347065924', '0'), -('2787339749', '', '电源开关_8', 'PowerSwitch_8', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('2787462687', '', '六价物', 'Hexad', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('27900793', '', '循环定时', 'PeriodTimer', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066200', '0'), -('2790548460', '', 'B相电流', 'Ib', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065875', '0'), -('279154535', '', '风干开关', 'AirDryingSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066130', '0'), -('2792074820', '', '门锁打开状态', 'DoorOpeningState', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066051', '0'), -('2793848050', '', '工作阶段', 'WorkStage', 'R', '0', '{"type":"enum","specs":"{\"0\":\"未洗涤\",\"1\":\"预洗\",\"2\":\"主洗\",\"3\":\"漂洗\",\"4\":\"干燥\",\"5\":\"结束\"}"}', '', '系统', '1', '1692347066108', '0'), -('2795261691', '', '变频器运行状态1', 'InvertStatus_1', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"10\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065809', '0'), -('2796484891', '', '播放媒体文件', 'PlayMediaFile', 'RW', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347066073', '0'), -('280882960', '', '随机定时8', 'RandomTimer_8', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066199', '0'), -('2812723317', '', '制冷开关', 'RefrigerationSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065986', '0'), -('2814555371', '', '窗帘工作模式', 'CurtainMode', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"反转\",\"2\":\"校准中\"}"}', '', '系统', '1', '1692347066188', '0'), -('2817909641', '', '单元格照明灯开关', 'CellLightSwitch', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"CellCode\",\"name\":\"编号\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"100\\\"}\"}},{\"code\":\"Status\",\"name\":\"状态\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065998', '0'), -('281822901', '', '全天时景', 'DailyVideo', 'R', '0', '{"type":"struct","specs":"[{\"code\":\"DailyVideoUrl\",\"name\":\"时景视频URL\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"256\\\"}\"}},{\"code\":\"DailyVideoHeight\",\"name\":\"视频高\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"3456\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"px\\\",\\\"unitName\\\":\\\"像素\\\"}\"}},{\"code\":\"DailyVideoWidth\",\"name\":\"视频宽\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"4608\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"px\\\",\\\"unitName\\\":\\\"像素\\\"}\"}},{\"code\":\"ThumbnailUrl\",\"name\":\"时景缩略图URL\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"256\\\"}\"}},{\"code\":\"ThumbnailHeight\",\"name\":\"缩略图高\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"3456\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"px\\\",\\\"unitName\\\":\\\"像素\\\"}\"}},{\"code\":\"ThumbnailWidth\",\"name\":\"缩略图宽\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"4608\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"px\\\",\\\"unitName\\\":\\\"像素\\\"}\"}}]"}', '', '系统', '1', '1692347065811', '0'), -('2818505101', '', '余位总数', 'RemainParkSpace', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"99999999\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065853', '0'), -('2819495114', '', '工作模式_18', 'WorkMode_18', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066148', '0'), -('2821242369', '', '网关布防模板开关', 'TemplateEnableSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066057', '0'), -('2821295233', '', '内窗帘打开位置', 'InnerCurtainPosition', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066188', '0'), -('2824466181', '', '门1状态', 'DoorStatus01', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066236', '0'), -('2826879123', '', '目标EC', 'TargetEC', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '绿立方', '系统', '1', '1692347065974', '0'), -('2827429929', '', '状态灯开关', 'StatusLightSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066082', '0'), -('2829169946', '', '电源开关_7', 'PowerSwitch_7', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('2830554453', '', '上层保鲜开关', 'PreserveUpperSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066000', '0'), -('2833156165', '', '2号车牌', 'Car_number_2', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '135_c_2', '系统', '1', '1692347065975', '0'), -('283628239', '', '工作时间', 'WorkTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065829', '0'), -('2837573708', '', '预热温度', 'PreheatTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065993', '0'), -('2837640710', '', '采暖运行', 'HeatingRunning', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065982', '0'), -('2840533242', '', '温度', 'mtemp', 'R', '0', '{"type":"int","specs":"{\"min\":\"-32768\",\"max\":\"32768\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065916', '0'), -('2847228466', '', '启动强度', 'StartStrength', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066005', '0'), -('2849566994', '', '加热状态', 'HeatState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"待机中\",\"1\":\"加热中\"}"}', '', '系统', '1', '1692347066160', '0'), -('2850502496', '', '内存使用率', 'memory_usage', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066133', '0'), -('2851640532', '', '屏幕通知模式', 'LedNoticeMode', 'R', '1', '{"type":"enum","specs":"{\"0\":\"分离模式\",\"1\":\"混合模式\"}"}', '分离模式:支持语音、文字提示单独下发,屏幕支持单行刷新 -混合模式:仅支持语音、文字提示混合下发,屏幕不支持单行刷新', '系统', '1', '1692347065784', '0'), -('285599522', '', '学校ID', 'SchoolID', 'RW', '0', '{"type":"text","specs":"{\"length\":\"36\"}"}', '', '系统', '1', '1692347066034', '0'), -('2856322966', '', '冷暖色温', 'ColorTemperature', 'RW', '0', '{"type":"int","specs":"{\"min\":\"2700\",\"max\":\"6500\",\"step\":\"1\",\"unit\":\"K\",\"unitName\":\"开尔文\"}"}', '', '系统', '1', '1692347065902', '0'), -('2858585262', '', '漏电压', 'DrainVoltage', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"400\",\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '电参数采用4个字节浮点型数据', '系统', '1', '1692347066245', '0'), -('2863936127', '', '二氧化碳', 'CO2', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"1\",\"unit\":\"ppm\",\"unitName\":\"ppm\"}"}', 'co2Value', '系统', '1', '1692347065976', '0'), -('2864016535', '', '温度', 'temperature', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '温度', '系统', '1', '1692347065778', '0'), -('2864612814', '', '随机定时6', 'RandomTimer_6', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066198', '0'), -('2869239927', '', 'ZB通道', 'ZB_Channel', 'RW', '0', '{"type":"int","specs":"{\"min\":\"11\",\"max\":\"26\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065932', '0'), -('287105226', '', '溶液瓶剩余体积', 'BottleRemainVolume', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0.1\",\"max\":\"60000.0\",\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347065989', '0'), -('2874728430', '', '冷藏室开关', 'FridgeSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066185', '0'), -('2876672615', '', '电能采集故障', 'powerGetErr', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '', '系统', '1', '1692347065935', '0'), -('2877492186', '', '制水开关', 'PureSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066157', '0'), -('2879060338', '', '屏幕行数', 'LedRowNumber', 'R', '1', '{"type":"int","specs":"{\"min\":\"-100\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', '数字绝对值表示屏幕支持的行数 -负号表示支持
换行符,调用费显屏显示服务时指定行数为1,内容为带
的字符串', '系统', '1', '1692347065784', '0'), -('2883825270', '', '当前分钟', 'CurrentTime_m', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065867', '0'), -('2890888154', '', '搅拌模式', 'MixedMode', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"15\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066041', '0'), -('2891210504', '', '型号', 'NumberModel', 'R', '0', '{"type":"text","specs":"{\"length\":\"16\"}"}', '', '系统', '1', '1692347065948', '0'), -('2892384627', '', '润滑油液位', 'E_Craft_LT_Oil_Punch', 'R', '0', '{"type":"float","specs":"{\"min\":\"-1000000\",\"max\":\"1000000\",\"step\":\"0.1\",\"unit\":\"cm\",\"unitName\":\"厘米\"}"}', '', '系统', '1', '1692347065906', '0'), -('2892573927', '', '翻转1', 'ChangeSwitch_1', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"翻转\"}"}', '', '系统', '1', '1692347065921', '0'), -('2892724247', '', '线路用电电流阈值', 'LineCurrentThreshold', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"655.35\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347066054', '0'), -('2893758573', '', '固件升级状态', 'OTA_Status', 'R', '0', '{"type":"bool","specs":"{\"0\":\"未在进行固件升级\",\"1\":\"正在进行固件升级\"}"}', '', '系统', '1', '1692347066001', '0'), -('2894796589', '', '加密类型列表', 'EncryptTypeList', 'R', '1', '{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"int\"}}"}', '', '系统', '1', '1692347065797', '0'), -('2902030769', '', '灯场景', 'LightScene', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"LightMode\",\"name\":\"灯模式\",\"data_type\":{\"type\":\"enum\",\"specs\":\"{}\"}},{\"code\":\"ColorSpeed\",\"name\":\"变色速度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"%\\\",\\\"unitName\\\":\\\"百分比\\\"}\"}},{\"code\":\"SceneMode\",\"name\":\"场景模式\",\"data_type\":{\"type\":\"enum\",\"specs\":\"{}\"}},{\"code\":\"ColorArr\",\"name\":\"灯颜色\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"2048\\\"}\"}},{\"code\":\"Brightness\",\"name\":\"明暗度\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"2048\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"SceneId\",\"name\":\"场景标识\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"100\\\"}\"}},{\"code\":\"SceneItems\",\"name\":\"场景参数\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"2048\\\"}\"}}]"}', '', '系统', '1', '1692347066213', '0'), -('2903333856', '', '存储介质状态', 'StorageStatus', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"未插卡\",\"1\":\"正常\",\"2\":\"未格式化\",\"3\":\"正在格式化\"}"}', '', '系统', '1', '1692347065797', '0'), -('2906244595', '', '甲烷', 'ch4', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"}"}', '', '系统', '1', '1692347065916', '0'), -('2906472358', '', '场景触发_2', 'SceneTrigger_2', 'R', '0', '{"type":"bool","specs":"{\"0\":\"场景无触发\",\"1\":\"场景触发\"}"}', '', '系统', '1', '1692347065994', '0'), -('2908983379', '', '目标温度_1', 'TargetTemperature_1', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('2910913936', '', '自动DJ模式', 'AutoDJSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065991', '0'), -('2917409265', '', '小槽开关', 'Small_Slot_Switch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066111', '0'), -('2917452420', '', '过流告警', 'OverCurrentError', 'R', '1', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '1-告警;0-正常', '系统', '1', '1692347066246', '0'), -('2921579875', '', '省份编码', 'ProvinceCode', 'RW', '0', '{"type":"text","specs":"{\"length\":\"8\"}"}', '', '系统', '1', '1692347066034', '0'), -('2924390376', '', '本地清扫时间', 'CleanRunTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066070', '0'), -('292568511', '', '线路电压', 'LineVotage', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"600\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347066055', '0'), -('2937752528', '', '位置4状态', 'location4', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无人\",\"1\":\"有人\"}"}', '', '系统', '1', '1692347066232', '0'), -('2943203488', '', '工作模式_3', 'WorkMode_3', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066146', '0'), -('2943399455', '', '方向角度', 'DirectionAngle', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"360\",\"step\":\"0.01\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347065821', '0'), -('2945666851', '', '周六定时', 'SaturdayTiming', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065982', '0'), -('2945876697', '', '高低电平信号', 'HighLowLevelSignal', 'R', '0', '{"type":"bool","specs":"{\"0\":\"低电平信号\",\"1\":\"高电平信号\"}"}', '', '系统', '1', '1692347065860', '0'), -('294592059', '', '欠压告警使能', 'UnderVoltEnable', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '1:打开,0:关闭', '系统', '1', '1692347066246', '0'), -('29504786', '', '变色速度', 'ColorSpeed', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066211', '0'), -('2957080409', '', '清洗提醒', 'CleanWarning', 'R', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"清洗\"}"}', '', '系统', '1', '1692347066177', '0'), -('2957880060', '', '设备性能稼动率', 'E_P', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '设备性能稼动率', '系统', '1', '1692347065907', '0'), -('2961736606', '', 'A相有功功率', 'Pa', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065875', '0'), -('2963584922', '', '总电量', 'energy', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065919', '0'), -('2967353776', '', '电源开关_13', 'PowerSwitch_13', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('297145640', '', '网关工作模式', 'RouterWorkMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"睡眠模式\",\"1\":\"在家模式\",\"2\":\"外出模式\"}"}', '', '系统', '1', '1692347066057', '0'), -('2980356649', '', '出水开关', 'WaterOutletSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065810', '0'), -('2984144669', '', '跑步步数', 'RunningSteps', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066088', '0'), -('2985988566', '', '灵敏度设置', 'SensitivitySettings', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"1级灵敏度\",\"2\":\"2级灵敏度\"}"}', '', '系统', '1', '1692347065990', '0'), -('2988347061', '', '采暖开关', 'HeatingSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065983', '0'), -('2988490384', '', '设备综合效率', 'E_OEE', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '设备最新的OEE', '系统', '1', '1692347065907', '0'), -('2995021944', '', '报警间隔设置', 'AlarmSystem', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"5分钟\",\"1\":\"10分钟\",\"2\":\"30分钟\"}"}', '', '系统', '1', '1692347065941', '0'), -('2996664292', '', '模式档位', 'EnumerationLevel', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"最低档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347065914', '0'), -('2997937966', '', '屏保时间', 'ScreenSaverTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066032', '0'), -('2999638154', '', '风速_19', 'WindSpeed_19', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066146', '0'), -('2999714261', '', '漏电告警', 'LeakageError', 'R', '1', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '1-告警;0-正常', '系统', '1', '1692347066247', '0'), -('3000381109', '', '右炉工作状态', 'RightWorkState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"待机\",\"1\":\"工作中\"}"}', '', '系统', '1', '1692347066164', '0'), -('30012153', '', '耗水量', 'WaterConsumption', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.1\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347065825', '0'), -('3001607243', '', '风速_2', 'WindSpeed_2', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066143', '0'), -('3006151508', '', '工作模式_14', 'WorkMode_14', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066148', '0'), -('3011952423', '', 'C相电流', 'nIc', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065866', '0'), -('3015434653', '', 'ChangeSwitch_1', 'ChangeSwitch_2', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"翻转\"}"}', '', '系统', '1', '1692347065921', '0'), -('3017174683', '', '电源开关_9', 'PowerSwitch_9', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('3017661859', '', '插播字幕', 'Insert_subtitle', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '/ids/subtitleSendSpot.action', '系统', '1', '1692347065950', '0'), -('3021249948', '', '启用人体感应', 'DetectEanbled', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065850', '0'), -('302164961', '', 'A相电压', 'Ua', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065875', '0'), -('3021989305', '', '窗1状态', 'WindowStatus01', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066237', '0'), -('3034959950', '', '冷冻室目标温度', 'FreezerTargetTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-18\",\"max\":\"0\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066184', '0'), -('303839229', '', '场景名称_3', 'SceneName_3', 'RW', '0', '{"type":"text","specs":"{\"length\":\"8\"}"}', '', '系统', '1', '1692347065995', '0'), -('3039452797', '', '人员特征数据', 'Identity', 'R', '1', '{"type":"text","specs":"{\"length\":\"1024\"}"}', '', '系统', '1', '1692347065955', '0'), -('3046621007', '', '满水状态', 'WaterStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"满水\"}"}', '', '系统', '1', '1692347066158', '0'), -('3048168372', '', '出水温度', 'OutputWaterTemputer', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066161', '0'), -('3048417250', '', '辅码流视频质量', 'SubStreamVideoQuality', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"流畅\",\"1\":\"标清\",\"2\":\"高清\"}"}', '', '系统', '1', '1692347065783', '0'), -('3051647856', '', '喷枪运动速度', 'E_Craft_S_Sgun_Spray', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"0.1\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"}"}', '', '系统', '1', '1692347065909', '0'), -('3053496009', '', '断路器内部温度', 'CircuitBreakerInternalTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"-40\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066055', '0'), -('3055659643', '', '防化学干扰时间', 'ChemicalInterferenceTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"55\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347065988', '0'), -('306258813', '', '鞍座锁开关', 'SaddleLockSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066005', '0'), -('3065745002', '', '插孔开关5', 'SocketSwitch_5', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066013', '0'), -('3067132924', '', '插孔开关8', 'SocketSwitch_8', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066014', '0'), -('3067464625', '', '电源开关_12', 'PowerSwitch_12', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('3072408133', '', '变频器运行状态2', 'InvertStatus_2', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"10\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065809', '0'), -('3073232291', '', '内存剩余量', 'memory_free', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"0.01\",\"unit\":\"B\",\"unitName\":\"字节\"}"}', '', '系统', '1', '1692347066133', '0'), -('3075204022', '', '温度阈值', 'TemperatureThreshold', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"300\",\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065926', '0'), -('3080532088', '', 'A相无功功率', 'electric_pqa', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000\",\"step\":\"0.01\",\"unit\":\"kvar\",\"unitName\":\"千乏\"}"}', '', '系统', '1', '1692347065866', '0'), -('3085513469', '', '铅', 'Lead', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('3086893429', '', '大槽水位选择', 'Large_Water_Level', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"中\",\"1\":\"高\",\"2\":\"低\"}"}', '', '系统', '1', '1692347066110', '0'), -('3087648192', '', '低功耗开关', 'LowPowerSwitch', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065797', '0'), -('3088607658', '', '窗帘操作模式', 'CurtainOperation', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关窗帘\",\"1\":\"开窗帘\",\"2\":\"暂停窗帘\"}"}', '', '系统', '1', '1692347065922', '0'), -('3091615725', '', '标况累计量', 'StandardConditionIntegratedFlow', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"}"}', '', '系统', '1', '1692347065879', '0'), -('3093824349', '', '小槽清洗强度', 'Small_Clean_Strength', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"中\",\"1\":\"强\",\"2\":\"轻\"}"}', '', '系统', '1', '1692347066110', '0'), -('3094680649', '', '电池状态', 'BatteryState', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066070', '0'), -('3096962117', '', 'A相有功功率', 'electric_fra', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065866', '0'), -('3114434295', '', '浸泡时长', 'SoakTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066050', '0'), -('3116760844', '', '循环模式', 'RepeatType', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"单曲循环\",\"2\":\"全部循环\",\"3\":\"随机\"}"}', '', '系统', '1', '1692347065991', '0'), -('311807502', '', '保温时间', 'WarmDuration', 'R', '0', '{"type":"float","specs":"{\"min\":\"1\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347065993', '0'), -('3119697916', '', '回路出线侧B相温度', 'T_OUTb', 'R', '0', '{"type":"float","specs":"{\"min\":\"-100\",\"max\":\"100000\",\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065877', '0'), -('3122162586', '', '电表模块状态', 'ElectricMeterState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\",\"3\":\"低电量\"}"}', '', '系统', '1', '1692347066027', '0'), -('3124605045', '', '滤芯剩余寿命时间_3', 'FilterLifeTimeDays_3', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1100\",\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"}"}', '', '系统', '1', '1692347066153', '0'), -('3125474807', '', '童锁开关', 'ChildLockSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065992', '0'), -('3130383643', '', '系统信息', 'system_info', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066133', '0'), -('3136241013', '', '车辆等待状态', 'VehicleState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"无车\",\"1\":\"有车\",\"2\":\"不支持\"}"}', '车辆等待状态', '系统', '1', '1692347065784', '0'), -('3138350053', '', 'HSV调色', 'HSVColor', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"Hue\",\"name\":\"色调\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"360\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"°\\\",\\\"unitName\\\":\\\"度\\\"}\"}},{\"code\":\"Saturation\",\"name\":\"饱和度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"%\\\",\\\"unitName\\\":\\\"百分比\\\"}\"}},{\"code\":\"Value\",\"name\":\"明度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"%\\\",\\\"unitName\\\":\\\"百分比\\\"}\"}}]"}', '', '系统', '1', '1692347065903', '0'), -('3139492058', '', '设备信息', 'MachineInfo', 'R', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065926', '0'), -('3140673531', '', '当前温度_6', 'CurrentTemperature_6', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('3143440769', '', '无线转接模块状态', 'WirelessModelStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066227', '0'), -('3145104806', '', '手动模式转速', 'ManualModeSpeed', 'RW', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"300\",\"step\":\"1\",\"unit\":\"rpm\",\"unitName\":\"每分钟转数\"}"}', '', '系统', '1', '1692347065988', '0'), -('3148398295', '', '工作模式_6', 'WorkMode_6', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066147', '0'), -('3152308389', '', '消毒剂自投放', 'TargetDisinfectant', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347066051', '0'), -('3160040150', '', '扬声器开关', 'SpeakerSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065942', '0'), -('3160589755', '', '道闸状态', 'BarrierState', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065855', '0'), -('3161160583', '', '土壤PH值', 'soilPH', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065930', '0'), -('3161701734', '', '单元格指示灯开关', 'CellIndicatorSwitch', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"CellCode\",\"name\":\"编号\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"100\\\"}\"}},{\"code\":\"Status\",\"name\":\"状态\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065998', '0'), -('3164834814', '', '音乐播放控制', 'MusicPlayControl', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"播放\",\"1\":\"暂停\",\"2\":\"上一曲\",\"3\":\"下一曲\"}"}', '', '系统', '1', '1692347065859', '0'), -('3164868520', '', '循环定时7', 'PeriodTimer_7', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066205', '0'), -('3164994662', '', '保温温度', 'HoldingTemperature', 'RW', '1', '{"type":"float","specs":"{\"min\":\"20\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066044', '0'), -('3165782581', '', '负离子剩余时间', 'IonsRemainingTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"120\",\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347066132', '0'), -('3168095096', '', 'B相无功功率', 'Qb', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"}"}', '', '系统', '1', '1692347065876', '0'), -('3170943688', '', '刷卡时间', 'CardTime', 'R', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347066034', '0'), -('3173177376', '', '冲浪开关', 'SurfSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066176', '0'), -('317364663', '', '综合采集器状态', 'CollectionEquipmentStatus', 'R', '1', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066222', '0'), -('3184365005', '', '定时烧水', 'TimingBoilWater', 'RW', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347065924', '0'), -('3185361990', '', '电池电压', 'BatteryRemain', 'R', '1', '{"type":"float","specs":"{\"min\":\"2.8\",\"max\":\"3.6\",\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '显示电池电压', '系统', '1', '1692347066224', '0'), -('3187436270', '', '启用外部接口', 'ExtInterfaceEnabled', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065851', '0'), -('3192784105', '', '当前温度_5', 'CurrentTemperature_5', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('3193027480', '', '水量值', 'WaterRequire', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"50\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347065810', '0'), -('3194481539', '', '蒸箱工作状态', 'SteamerState', 'R', '0', '{"type":"bool","specs":"{\"0\":\"待机中\",\"1\":\"工作中\"}"}', '', '系统', '1', '1692347065846', '0'), -('3199262600', '', '工作模式_16', 'WorkMode_16', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066148', '0'), -('3207424711', '', '工作模式右', 'RightWorkMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"待机\",\"1\":\"升温\",\"2\":\"睡眠\"}"}', '', '系统', '1', '1692347066172', '0'), -('3214958897', '', '挥发酚', 'volatile_phenol', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '挥发酚', '系统', '1', '1692347065778', '0'), -('3220155716', '', '固化室温度', 'E_Craft_TT_Solidify_Spray', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-10000\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065909', '0'), -('3220325124', '', '窗帘打开位置', 'CurtainPosition', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065922', '0'), -('3222585918', '', '过压告警使能', 'OverVoltEnable', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '1:打开,0:关闭', '系统', '1', '1692347066246', '0'), -('3226560966', '', '空开电表电压值', 'AirConVolt', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"400\",\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347066240', '0'), -('3227041276', '', '冷藏室温度', 'FridgeTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"1\",\"max\":\"10\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066185', '0'), -('3239469521', '', '流水号', 'SerialNumber', 'R', '0', '{"type":"text","specs":"{\"length\":\"32\"}"}', '', '系统', '1', '1692347066034', '0'), -('324122242', '', '保管功能', 'KeepDryFunction', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066109', '0'), -('3245768262', '', '启用防夹', 'AntiPinchEnabled', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065851', '0'), -('3246317234', '', '加速', 'increase_speed', 'RW', '0', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065915', '0'), -('324637633', '', '工作模式_15', 'WorkMode_15', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066148', '0'), -('3246550931', '', '总耗电量', 'TotalConsumption', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"99999\",\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347066014', '0'), -('3246984349', '', '光照度检测值', 'MeasuredIlluminance', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"0.01\",\"unit\":\"Lux\",\"unitName\":\"照度\"}"}', '', '系统', '1', '1692347066112', '0'), -('3247637026', '', '定时切换', 'TimingChange', 'RW', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347065924', '0'), -('3249468663', '', '化学需氧量', 'COD', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"5000\",\"step\":\"1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '化学需氧量COD(Chemical Oxygen Demand)是以化学方法测量水样中需要被氧化的还原性物质的量', '系统', '1', '1692347065778', '0'), -('325107129', '', '冷冻缸温度', 'FreezeCylindersTemperature', 'R', '0', '{"type":"int","specs":"{\"min\":\"-100\",\"max\":\"200\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065842', '0'), -('3253385438', '', '强拆报警开关', 'ForcedAlarmSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065795', '0'), -('3253750980', '', '烹饪状态', 'CookingState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"未识别出\",\"1\":\"煮\",\"2\":\"煎\",\"3\":\"炸\"}"}', '', '系统', '1', '1692347066018', '0'), -('3256677366', '', '原水TDS', 'RawWaterTDS', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"999\",\"step\":\"1\",\"unit\":\"ppm\",\"unitName\":\"百万分率\"}"}', '', '系统', '1', '1692347066157', '0'), -('3268601800', '', '驻车车牌', 'ParkedNumber', 'R', '1', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065858', '0'), -('3269686211', '', '通道映射关系', 'ChannelList', 'R', '1', '{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"struct\"}}"}', 'NVR通道与IPC三元组的映射关系表', '系统', '1', '1692347065828', '0'), -('3272265310', '', '逗留报警开关', 'StayAlarmSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065941', '0'), -('3277211582', '', '驱动器温度', 'DriverTemperature', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065808', '0'), -('3277666036', '', '系统信息', 'SystemInfo', 'R', '1', '{"type":"struct","specs":"[{\"code\":\"os\",\"name\":\"操作系统\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"processor\",\"name\":\"处理器\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}}]"}', '', '系统', '1', '1692347065964', '0'), -('3284275280', '', '海拔', 'Altitude', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60000\",\"step\":\"0.01\",\"unit\":\"m\",\"unitName\":\"米\"}"}', '', '系统', '1', '1692347065821', '0'), -('3286447268', '', '开关1', 'PowerSwitch_1', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065809', '0'), -('3301609567', '', '静音', 'Mute', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065859', '0'), -('3306290125', '', '空开电表开闭状态', 'AirConElectricMeterSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066240', '0'), -('3319707068', '', '大槽开关', 'Large_Slot_Switch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066111', '0'), -('3321144879', '', '省电开关', 'PowerSaveSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066104', '0'), -('3327943514', '', '目标温度_17', 'TargetTemperature_17', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('3328054765', '', '功率过低', 'underPower', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '', '系统', '1', '1692347065935', '0'), -('3329130376', '', 'B相电压', 'nUb', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065867', '0'), -('332947583', '', '出胶压力', 'E_Craft_PT_Gum', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-100000\",\"max\":\"100000\",\"step\":\"0.1\",\"unit\":\"Pa\",\"unitName\":\"帕\"}"}', '', '系统', '1', '1692347065908', '0'), -('3331129293', '', '消毒模式', 'SterilizeringMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"无消毒\",\"1\":\"整体消毒\",\"2\":\"单独消毒\"}"}', '', '系统', '1', '1692347065997', '0'), -('333416445', '', '窗8状态', 'WindowStatus08', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066237', '0'), -('3334819755', '', '制水进度', 'PurePercent', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066157', '0'), -('3334976830', '', '电辅_辅热', 'PTC', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('3338991924', '', '右炉开关', 'RightSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066164', '0'), -('334279546', '', '蒸箱制作温度设置', 'SteameTemperatureSet', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065846', '0'), -('3347593115', '', '设备时间', 'Time', 'RW', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347066071', '0'), -('3350095465', '', '常开', 'KeepOpen', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '表示门是否为常开状态,如果为1,门保持常开状态;否则,门保持关闭状态。', '系统', '1', '1692347065862', '0'), -('3354598548', '', '总无功电能', 'EQ', 'R', '1', '{"type":"float","specs":"{\"min\":\"-999999999999999\",\"max\":\"999999999999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065877', '0'), -('3355271750', '', '室外温度', 'OutdoorTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"-100\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065983', '0'), -('3363877668', '', '智能终端状态', 'TerminalStatus', 'R', '1', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066225', '0'), -('336441251', '', '焖饭时间', 'StewTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066103', '0'), -('3368437283', '', '声音侦测灵敏度', 'VoiceDetectionSensitivity', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关闭\",\"1\":\"最低档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066082', '0'), -('3369365061', '', '电池电量', 'batpt', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065912', '0'), -('3373957330', '', '实时功率', 'RealTimePower', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"4000\",\"step\":\"0.1\",\"unit\":\"W\",\"unitName\":\"瓦特\"}"}', '', '系统', '1', '1692347066015', '0'), -('3374698939', '', '实际电压', 'Voltage', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065842', '0'), -('3375931777', '', '传感器RF信号质量', 'RFStrength', 'R', '0', '{"type":"struct","specs":"[{\"code\":\"SensorSerialNumber\",\"name\":\"传感器串码\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"9\\\"}\"}},{\"code\":\"RSSI\",\"name\":\"信号强度\",\"data_type\":{\"type\":\"float\",\"specs\":\"{\\\"min\\\":\\\"-127\\\",\\\"max\\\":\\\"-1\\\",\\\"step\\\":\\\"0.01\\\",\\\"unitName\\\":\\\"无\\\"}\"}}]"}', '', '系统', '1', '1692347066057', '0'), -('3378040608', '', '当前温度左', 'LeftCurrentTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"70\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066170', '0'), -('3382722036', '', '照明剩余时间', 'LightRemainingTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"180\",\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347066132', '0'), -('3386518590', '', '视频留言开关', 'VideoMessageSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065795', '0'), -('338697842', '', '功率过高', 'overPower', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"警告\"}"}', '', '系统', '1', '1692347065935', '0'), -('3392591324', '', '权益信息', 'Permission_info', 'RW', '1', '{"type":"text","specs":"{\"length\":\"512\"}"}', '', '系统', '1', '1692347065956', '0'), -('3400969894', '', '瞬时流量', 'InstantaneousFlow', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"m³/h\",\"unitName\":\"立方米每小时\"}"}', '', '系统', '1', '1692347065868', '0'), -('3402966147', '', '音量百分比', 'VolumePercentage', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066076', '0'), -('340726419', '', '左灶火力调节', 'LeftFociFire', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066164', '0'), -('3412195082', '', '工作开关', 'Workingswitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065847', '0'), -('3416388616', '', '光照度模块状态', 'LightModuleStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066238', '0'), -('3423388453', '', '人脸算法版本', 'FaceAlgorithmVersion', 'RW', '0', '{"type":"text","specs":"{\"length\":\"64\"}"}', '用于人脸特征下发,标识设备端的算法版本 -基于人脸门禁1.0物模型', '系统', '1', '1692347065803', '0'), -('3424069795', '', '宽动态开关', 'WDRSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065795', '0'), -('3424781236', '', '烹饪时间', 'CookingTime', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"36000\",\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347066016', '0'), -('3426865249', '', '大槽工作状态', 'Large_Work_Status', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"空闲中\",\"1\":\"工作中\",\"2\":\"暂停\"}"}', '', '系统', '1', '1692347066110', '0'), -('3427648505', '', 'B相正向有功电能', 'ActiveEnergyImportInPhaseL2', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347065984', '0'), -('3429908109', '', '目标温度', 'TargetTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065829', '0'), -('3436660657', '', '冲洗开关', 'WashingSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066158', '0'), -('3436978733', '', '实际电流', 'Electricity', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065842', '0'), -('3438607962', '', '电机转速', 'E_Craft_Speed_Motor_Punch', 'R', '0', '{"type":"float","specs":"{\"min\":\"-1000000\",\"max\":\"1000000\",\"step\":\"0.1\",\"unit\":\"r/s(rps)\",\"unitName\":\"转每秒\"}"}', '', '系统', '1', '1692347065906', '0'), -('3446488663', '', '总控', 'SwitchAll', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"全关\",\"1\":\"全开\"}"}', '', '系统', '1', '1692347065921', '0'), -('3450738698', '', '总制水量', 'TotalPureWater', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347066157', '0'), -('3451494032', '', '延迟录像', 'DelayedRecord', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065795', '0'), -('3452937382', '', '报警控制', 'AlarmStatus', 'R', '1', '{"type":"bool","specs":"{\"0\":\"未报警状态\",\"1\":\"报警状态\"}"}', '', '系统', '1', '1692347066227', '0'), -('3453995861', '', '高度单位', 'HeightUnit', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"厘米\",\"1\":\"英尺\"}"}', '', '系统', '1', '1692347065807', '0'), -('3454390551', '', '目标温度_19', 'TargetTemperature_19', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('3454444889', '', '电池工厂模式', 'BatteryFactoryMode', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066005', '0'), -('3456275392', '', '工作模式', 'WorkMode', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"温灸\",\"2\":\"啄灸\",\"3\":\"瘢痕灸\",\"4\":\"智能灸\",\"5\":\"处方灸\"}"}', '', '系统', '1', '1692347065829', '0'), -('3456640282', '', '离枕次数', 'WakeupTimes', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065840', '0'), -('3462878755', '', '插孔开关4', 'SocketSwitch_4', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066013', '0'), -('3465541893', '', '环境温度', 'EnvironmentTemperature', 'R', '0', '{"type":"int","specs":"{\"min\":\"-100\",\"max\":\"200\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065843', '0'), -('3467094545', '', '语音留言链接', 'VoiceMailURL', 'R', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347066035', '0'), -('3473718177', '', '终端执行', 'Run_program', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '/ids/runProgram.action', '系统', '1', '1692347065950', '0'), -('3480312280', '', '按摩时间档位', 'MassageTimeLevel', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"10分钟\",\"2\":\"20分钟\",\"3\":\"30分钟\"}"}', '', '系统', '1', '1692347066047', '0'), -('3480871724', '', '目标温度_16', 'TargetTemperature_16', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('3485353246', '', '自动巡航', 'AutoCruise', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066005', '0'), -('3488124446', '', 'adas开关', 'AdasSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065823', '0'), -('349207465', '', '烟机照明开关', 'HoodLight', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065845', '0'), -('3494656024', '', '环境亮度', 'illumination', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"200\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065935', '0'), -('3497825295', '', '外窗帘工作模式', 'OuterCurtainMode', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"反转\",\"2\":\"校准中\"}"}', '', '系统', '1', '1692347066188', '0'), -('3498072078', '', '运行时间_1', 'Runtime_1', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"}"}', '', '系统', '1', '1692347066154', '0'), -('3501312414', '', 'USB开关1', 'USBSwitch_1', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066014', '0'), -('350574516', '', '风力等级', 'WindLevel', 'R', '1', '{"type":"enum","specs":"{\"0\":\"无风\",\"1\":\"软风\",\"10\":\"狂风\",\"11\":\"暴风\",\"12\":\"飓风\",\"13\":\"龙卷风\",\"2\":\"轻风\",\"3\":\"微风\",\"4\":\"和风\",\"5\":\"轻劲风\",\"6\":\"强风\",\"7\":\"疾风\",\"8\":\"大风\",\"9\":\"烈风\"}"}', '', '系统', '1', '1692347066131', '0'), -('3508461617', '', '随机定时9', 'RandomTimer_9', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066199', '0'), -('3508804638', '', '当前时间', 'CurrentTime', 'R', '1', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347065947', '0'), -('3510772233', '', '下管加热时间', 'DownTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066010', '0'), -('3514323357', '', '重量', 'Weight', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"50\",\"step\":\"0.1\",\"unit\":\"kg\",\"unitName\":\"千克(公斤)\"}"}', '蜂箱重量', '系统', '1', '1692347065954', '0'), -('3516584384', '', '标签电量', 'LabelBatteryPercentage', 'R', '1', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065953', '0'), -('3522685085', '', '组合有功总电能', 'ActiveEnergyCombinedTotal', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347065983', '0'), -('352460655', '', '磁盘状态', 'DiskState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"异常\",\"2\":\"无硬盘\"}"}', 'NVR磁盘状态', '系统', '1', '1692347065828', '0'), -('3525953201', '', '当前功耗', 'CurrentPowerConsumption', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"1\",\"unit\":\"W\"}"}', '', '系统', '1', '1692347065888', '0'), -('3526637062', '', '菜单', 'Menu', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"默认菜单\",\"1\":\"冻薯条\",\"2\":\"牛排\",\"3\":\"鸡腿\",\"4\":\"蛋糕\",\"5\":\"虾\",\"6\":\"披萨\",\"7\":\"鱼\"}"}', '', '系统', '1', '1692347065870', '0'), -('3527990401', '', '支付金额', 'TotalAmount', 'RW', '1', '{"type":"struct","specs":"[{\"code\":\"TotalItem\",\"name\":\"总数\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"20\\\"}\"}},{\"code\":\"Amount\",\"name\":\"金额\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"20\\\"}\"}}]"}', '', '系统', '1', '1692347065996', '0'), -('352826749', '', '日夜模式', 'DayNightMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"白天模式\",\"1\":\"夜晚模式\",\"2\":\"自动模式\"}"}', '', '系统', '1', '1692347065797', '0'), -('3529092875', '', '负载重量', 'Payload', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"0-25kg\",\"1\":\"25-50kg\",\"2\":\"50-75kg\",\"3\":\"75-100kg\",\"4\":\"100-125kg\",\"5\":\"125-150kg\"}"}', '', '系统', '1', '1692347065850', '0'), -('3537552721', '', '工作模式左', 'LeftWorkMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"待机\",\"1\":\"升温\",\"2\":\"睡眠\"}"}', '', '系统', '1', '1692347066171', '0'), -('3538022211', '', '当前温度_10', 'CurrentTemperature_10', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('3539581913', '', '视频加密开关', 'EncryptSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066082', '0'), -('3544658028', '', '环境湿度', 'EnvironmentHumidity', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066223', '0'), -('3546148051', '', 'EQ模式', 'EqualizerType', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"流行\",\"2\":\"爵士\",\"3\":\"古典\",\"4\":\"摇滚\",\"5\":\"普通\"}"}', '', '系统', '1', '1692347065991', '0'), -('3549207129', '', '用水状态', 'WateringStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"未用水\",\"1\":\"用水中\"}"}', '', '系统', '1', '1692347066168', '0'), -('3553752609', '', '目标温度_8', 'TargetTemperature_8', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('3553818339', '', '可燃气体检测', 'CombustibleGasCheck', 'R', '0', '{"type":"enum","specs":"{\"0\":\"未监测到可燃气体泄漏\",\"1\":\"监测到可燃气体泄漏\"}"}', '', '系统', '1', '1692347066161', '0'), -('3553899987', '', '线路功率', 'LinePower', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"0.01\",\"unit\":\"W\",\"unitName\":\"瓦特\"}"}', '', '系统', '1', '1692347066055', '0'), -('3556277875', '', '电源开关', 'PowerSwitchAll', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关\",\"1\":\"开\",\"2\":\"停\"}"}', '', '系统', '1', '1692347065920', '0'), -('3562960994', '', '故障电流门限', 'ErrorCurrentThreshold', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0.1\",\"max\":\"9\",\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347066245', '0'), -('3563722980', '', '再生剩余水量', 'RemainingWater', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"99.00\",\"step\":\"0.1\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347065868', '0'), -('3571629205', '', '有功功率', 'actp', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"W\",\"unitName\":\"瓦特\"}"}', '', '系统', '1', '1692347065919', '0'), -('3575774189', '', '场景触发_1', 'SceneTrigger_1', 'R', '0', '{"type":"bool","specs":"{\"0\":\"场景无触发\",\"1\":\"场景触发\"}"}', '', '系统', '1', '1692347065994', '0'), -('3582446816', '', '井盖倾斜度', 'TiltValue', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"180\",\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347066096', '0'), -('3582709704', '', '流量', 'Flow', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"L/min\",\"unitName\":\"升每分钟\"}"}', '单位:毫升每分钟 ml/min 请进行补充和修改', '系统', '1', '1692347065979', '0'), -('3585353012', '', '设备不良品', 'E_Defect_UP', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '设备次品的累加器', '系统', '1', '1692347065907', '0'), -('3587296266', '', '可溶性盐浓度', 'EC', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '单位为μs/cm,请补充并修改', '系统', '1', '1692347065979', '0'), -('3587335742', '', '监测时间', 'Monitoringtime', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"Intervals\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"1\\\",\\\"max\\\":\\\"255\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"startDelay\",\"name\":\"开始延迟\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"255\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}}]"}', '', '系统', '1', '1692347065892', '0'), -('3589230756', '', '工作模式_9', 'WorkMode_9', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066147', '0'), -('3591167746', '', '电源频率', 'PowerFrequency', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"50Hz\",\"1\":\"60Hz\"}"}', '电源频率设置', '系统', '1', '1692347065827', '0'), -('3594322706', '', '震动倾斜监测', 'Vibrationtilt', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"150\",\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347065891', '0'), -('359676501', '', '过压阈值', 'OverVoltThreshold', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"400\",\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347066246', '0'), -('3597964756', '', '变温门状态', 'VariableDoorStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066185', '0'), -('3600646814', '', '环境湿度低报警阈值', 'EnvHumidity_Low_Threshold', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347065887', '0'), -('3601133371', '', '频道ID', 'ChannelID', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"300\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066089', '0'), -('3604195297', '', '清洗开关', 'CleanSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065920', '0'), -('3604809879', '', '水温低温报警阈值', 'WaterTemp_Low_Threshold', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065887', '0'), -('3606491792', '', '启用检测位移开关门', 'DetectMoveEnabled', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065851', '0'), -('3608203219', '', '光照度', 'mlux', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065916', '0'), -('3611168461', '', '总滴定量', 'TotalAddVolume', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"99999.9\",\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347065988', '0'), -('3612558099', '', '打开百分比', 'pt', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065918', '0'), -('3612739759', '', '单曲播放控制', 'PlayControl', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"播放中\",\"1\":\"暂停\",\"2\":\"停止\"}"}', '', '系统', '1', '1692347066089', '0'), -('3618044564', '', '目标温度_5', 'TargetTemperature_5', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('3618230352', '', '预约剩余时间', 'AppointmentRemainingTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"1\",\"max\":\"1440\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065838', '0'), -('3622130422', '', '红外开关', 'InfraredSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065795', '0'), -('3625268267', '', '左灶状态', 'LStoveStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065845', '0'), -('3640637814', '', '位置1状态', 'location1', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无人\",\"1\":\"有人\"}"}', '', '系统', '1', '1692347066233', '0'), -('3641464553', '', '报警频率', 'AlarmFrequencyLevel', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"低频\",\"1\":\"中频\",\"2\":\"高频\"}"}', '', '系统', '1', '1692347065784', '0'), -('3649494548', '', '风速_13', 'WindSpeed_13', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066145', '0'), -('3652754110', '', '蒸箱模式', 'SteamerMode', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"模式1\",\"2\":\"模式2\",\"3\":\"模式3\",\"4\":\"模式4\",\"5\":\"模式5\"}"}', '', '系统', '1', '1692347065846', '0'), -('3654475829', '', '过流告警使能', 'OverCurrentEnable', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '1:打开,0:关闭', '系统', '1', '1692347066246', '0'), -('3657185517', '', '智能防霉开关', 'SmartMouldproofSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066000', '0'), -('3660469271', '', 'C相功率因素', 'electric_pfc', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065866', '0'), -('3662777334', '', '关闭排水', 'DrainOff', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066128', '0'), -('3663482569', '', '进箱数量', 'EntryHiveNumber', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"1\",\"unit\":\"pcs\",\"unitName\":\"只\"}"}', '', '系统', '1', '1692347065954', '0'), -('3667201546', '', '设备状态', 'zsta', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065912', '0'), -('3669260410', '', '蜂鸣器', 'Buzzer', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('3670938874', '', '总有功电能', 'EP', 'R', '1', '{"type":"float","specs":"{\"min\":\"-999999999999999\",\"max\":\"999999999999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065877', '0'), -('3672504771', '', 'A相电流', 'Ia', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065875', '0'), -('3673927433', '', '倾斜告警', 'OverTiltError', 'R', '1', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '1-告警;0-正常', '系统', '1', '1692347066247', '0'), -('3675350066', '', '倒计时列表', 'CountDownList', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"Target\",\"name\":\"操作对象\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"2048\\\"}\"}},{\"code\":\"Contents\",\"name\":\"倒计时命令\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"2048\\\"}\"}}]"}', '', '系统', '1', '1692347066174', '0'), -('3677296840', '', '测试001', 'Test001', 'RW', '0', '{"type":"text","specs":"{\"length\":\"2\"}"}', '', '系统', '1', '1692347065975', '0'), -('3677780957', '', '电源开关_16', 'PowerSwitch_16', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066143', '0'), -('3685475477', '', '外窗帘操作模式', 'OuterCurtainOperation', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关窗帘\",\"1\":\"开窗帘\",\"2\":\"暂停窗帘\"}"}', '', '系统', '1', '1692347066188', '0'), -('3687003882', '', '恒湿开关', 'ConstantHumiditySwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066119', '0'), -('3687768786', '', '坐标系统', 'CoordinateSystem', 'R', '0', '{"type":"enum","specs":"{\"1\":\"WGS_84\",\"2\":\"GCJ_02\"}"}', '', '系统', '1', '1692347065991', '0'), -('3695203550', '', '设备合格率', 'E_Q', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '设备合格率', '系统', '1', '1692347065906', '0'), -('3698704711', '', '功放状态', 'PAState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"断线\",\"1\":\"空闲\",\"2\":\"播放中\"}"}', '', '系统', '1', '1692347066073', '0'), -('3701728129', '', '运行次数', 'RunTimes', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065850', '0'), -('3709742804', '', '歌曲总时长', 'PlayDuration', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066089', '0'), -('3709802110', '', '碰撞等级', 'CollideLevels', 'R', '0', '{"type":"enum","specs":"{\"0\":\"无事故\",\"1\":\"一般事故\",\"2\":\"较大事故\",\"3\":\"重大事故\",\"4\":\"特别重大事故\"}"}', '', '系统', '1', '1692347065823', '0'), -('3711252672', '', '断路器开关', 'Breaker_control', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065867', '0'), -('3712818826', '', '前车预警灵敏度', 'FcwSensibility', 'R', '0', '{"type":"enum","specs":"{\"0\":\"Off\",\"1\":\"Low\",\"2\":\"Mid\",\"3\":\"High\"}"}', '', '系统', '1', '1692347065819', '0'), -('3717012723', '', '当前温度_3', 'CurrentTemperature_3', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('3722146158', '', '卧室湿度', 'RoomHumidity', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065841', '0'), -('3722560208', '', '微笑信息', 'Smile', 'R', '1', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347065956', '0'), -('3725802436', '', '碗碟使用时间段', 'UnableToWorkTimeSlot', 'RW', '0', '{"type":"text","specs":"{\"length\":\"254\"}"}', '', '系统', '1', '1692347066001', '0'), -('3725956025', '', '消毒柜工作状态', 'Disinfection_Status', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"暂停\",\"1\":\"启动\",\"2\":\"取消\",\"3\":\"取消预约\"}"}', '', '系统', '1', '1692347066001', '0'), -('3726986899', '', '倒计时剩余时间', 'RemainingTime', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347066194', '0'), -('3729673156', '', '温度', 'E_Craft_TT_Comp', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-10000\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065911', '0'), -('3739609397', '', '工作模式_13', 'WorkMode_13', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066148', '0'), -('3740783764', '', '固件升级状态', 'KitchenVentilator_OTA', 'R', '0', '{"type":"bool","specs":"{\"0\":\"未在进行固件升级\",\"1\":\"正在进行固件升级\"}"}', '', '系统', '1', '1692347066178', '0'), -('3742703325', '', 'GPS时间', 'GnssTime', 'R', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347065820', '0'), -('3748178263', '', '氮氧化物浓度', 'NitrogenOxides', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.1\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347066230', '0'), -('3749788898', '', '场景名称_4', 'SceneName_4', 'RW', '0', '{"type":"text","specs":"{\"length\":\"8\"}"}', '', '系统', '1', '1692347065995', '0'), -('3750723897', '', '设备时间', 'DeviceTime', 'RW', '0', '{"type":"date","specs":"{}"}', '设备时间', '系统', '1', '1692347065827', '0'), -('3754306007', '', '开关控制', 'Switch_control', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '茶炉开关机', '系统', '1', '1692347065927', '0'), -('3754957674', '', '风速_10', 'WindSpeed_10', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066144', '0'), -('3755346675', '', '随机定时3', 'RandomTimer_3', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066196', '0'), -('3755624780', '', '当前温度_17', 'CurrentTemperature_17', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('3755935282', '', '磁盘使用率', 'disk_usage', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066133', '0'), -('3756794153', '', '目标温度_15', 'TargetTemperature_15', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('3761980698', '', '背景灯_屏显', 'Screen', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('3762041140', '', 'C相电压', 'Uc', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065875', '0'), -('3762829487', '', '单次耗水量', 'SingleWaterConsumption', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"255.9\",\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347066109', '0'), -('3772521698', '', '图像', 'DailyImage', 'R', '0', '{"type":"struct","specs":"[{\"code\":\"DailyImageUrl\",\"name\":\"图像URL\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"256\\\"}\"}},{\"code\":\"DailyImageWidth\",\"name\":\"图像宽\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"4608\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"px\\\",\\\"unitName\\\":\\\"像素\\\"}\"}},{\"code\":\"DailyImageHeight\",\"name\":\"图像高\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"3456\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"px\\\",\\\"unitName\\\":\\\"像素\\\"}\"}}]"}', '', '系统', '1', '1692347065811', '0'), -('3773212872', '', '童锁', 'ChildLock', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065807', '0'), -('3781308732', '', '道闸控制', 'Brake_control', 'RW', '1', '{"type":"text","specs":"{\"length\":\"256\"}"}', '20', '系统', '1', '1692347065978', '0'), -('3781918468', '', '油烟机的烟雾浓度大实时检测结果', 'SmokeDetection', 'R', '0', '{"type":"bool","specs":"{\"0\":\"未感应到\",\"1\":\"感应到\"}"}', '', '系统', '1', '1692347066178', '0'), -('3789207323', '', '上层烘干开关', 'DryingUpperSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066000', '0'), -('3789495472', '', '消毒开关', 'SterilizingSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065997', '0'), -('3791935074', '', '风速_14', 'WindSpeed_14', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066145', '0'), -('3792542440', '', '母线电压', 'DC_V', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065809', '0'), -('3792900403', '', '静电电流', 'E_Craft_A_Elect_Spray', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065910', '0'), -('3794177228', '', '臭氧开关', 'OzoneSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066176', '0'), -('3795056639', '', '滤芯寿命状态_3', 'FilterStatus_3', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"需要更换\"}"}', '', '系统', '1', '1692347066153', '0'), -('3795202190', '', '小夜灯开关', 'NightLightSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065828', '0'), -('3796704155', '', '定时信息', 'Timer_Quantum', 'RW', '0', '{"type":"text","specs":"{\"length\":\"254\"}"}', '', '系统', '1', '1692347066160', '0'), -('3798935885', '', '通用-扩展信息', 'ExtInfo', 'RW', '0', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065803', '0'), -('3807763167', '', '冷冻室开关', 'FreezerSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066184', '0'), -('3810076806', '', '打料杯数', 'HitFeedCupCounts', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065843', '0'), -('381425048', '', '震动能量', 'Eenergy', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"65534\",\"step\":\"0.01\",\"unit\":\"J\",\"unitName\":\"焦耳\"}"}', '', '系统', '1', '1692347065892', '0'), -('3821333141', '', '单位耗电量', 'UnitPowerConsumption', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"99999\",\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '需要将此属性更新到“插座Outlet”品类的属性中,谢谢', '系统', '1', '1692347066194', '0'), -('3821899126', '', '风速_18', 'WindSpeed_18', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066146', '0'), -('3838218175', '', '开关控制', 'ON', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065919', '0'), -('3840091623', '', '电机实际IIT', 'ActIIT', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065808', '0'), -('3848569976', '', '开关机控制', 'Power', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关机\",\"1\":\"开机\"}"}', 'power', '系统', '1', '1692347065950', '0'), -('3849618654', '', '当前温度_1', 'CurrentTemperature_1', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('3849797010', '', '前置摄像头分辨率', 'FcResolution', 'R', '0', '{"type":"enum","specs":"{\"0\":\"480P\",\"1\":\"720P\",\"2\":\"1080P\",\"3\":\"2160P\"}"}', '', '系统', '1', '1692347065818', '0'), -('3850499177', '', '加热档位', 'HeatLevel', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"档位1\",\"2\":\"档位2\",\"3\":\"档位3\",\"4\":\"档位4\",\"5\":\"档位5\",\"6\":\"档位6\",\"7\":\"档位7\",\"8\":\"档位8\",\"9\":\"档位9\"}"}', '', '系统', '1', '1692347066171', '0'), -('3851108580', '', '再生引发分钟', 'RegenerateTime_m', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065868', '0'), -('3852698586', '', '本地定时', 'LocalTimer', 'RW', '0', '{"type":"array","specs":"{\"size\":\"5\",\"item\":{\"type\":\"struct\"}}"}', '', '系统', '1', '1692347065872', '0'), -('3855500897', '', '总有功平电能', 'EP_3', 'R', '0', '{"type":"float","specs":"{\"min\":\"-999999999999999\",\"max\":\"999999999999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065877', '0'), -('3855885081', '', '工作电压', 'LightVolt', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"4\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065936', '0'), -('3856612421', '', '风速_1', 'WindSpeed_1', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066143', '0'), -('386068930', '', '车位状态', 'MagneticState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}', '', '系统', '1', '1692347066094', '0'), -('3868714793', '', '速度', 'VehSpeed', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"40000\",\"step\":\"0.01\",\"unit\":\"km/h\",\"unitName\":\"千米每小时\"}"}', '', '系统', '1', '1692347065820', '0'), -('3871231830', '', '保管剩余时间', 'KeepDryRemainingTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066109', '0'), -('3873262375', '', '频段', 'WIFI_Band', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066118', '0'), -('3875324887', '', '当前温度_15', 'CurrentTemperature_15', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('3876303219', '', '氧气含量', 'O2Content', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066222', '0'), -('3879455187', '', '震动报警灵敏度', 'VibrateSensitivity', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"Count\",\"name\":\"次数\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"1\\\",\\\"max\\\":\\\"10\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"Level\",\"name\":\"级别\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"16\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}}]"}', '', '系统', '1', '1692347066003', '0'), -('3880767116', '', '上加热管温度', 'TopTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066009', '0'), -('3883397000', '', '当前温度_4', 'CurrentTemperature_4', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('3883929417', '', 'C相电流总谐波', 'IcTHD', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065877', '0'), -('3884304026', '', '省电骑行', 'SaveElectricityMode', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066005', '0'), -('3887988737', '', '设备剩余电量', 'Remain_capacity', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '9', '系统', '1', '1692347065977', '0'), -('3888082511', '', '输出频率', 'OutputFrequency', 'R', '0', '{"type":"int","specs":"{\"min\":\"-32768\",\"max\":\"32767\",\"step\":\"10\",\"unit\":\"Hz\",\"unitName\":\"赫兹\"}"}', '', '系统', '1', '1692347065809', '0'), -('3888387493', '', '冲洗进度', 'WashingPercent', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066158', '0'), -('3893754255', '', '起床时间', 'WakeupTime', 'R', '0', '{"type":"date","specs":"{}"}', '', '系统', '1', '1692347065840', '0'), -('3896666586', '', '出风口垂直调节', 'VerticalAdjustment', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"停止\",\"1\":\"摆动\"}"}', '', '系统', '1', '1692347066182', '0'), -('389859579', '', '通电时间累积', 'PwOnTime', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"}"}', '', '系统', '1', '1692347065809', '0'), -('3900920149', '', 'C相视在功率', 'Sc', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065876', '0'), -('3906888223', '', '工作模式_2', 'WorkMode_2', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066146', '0'), -('3907494633', '', '晾杆控制模式', 'MotorControlMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"停止\",\"1\":\"上升\",\"2\":\"下降\"}"}', '', '系统', '1', '1692347066130', '0'), -('390788008', '', '无功功率', 'reactp', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"W\",\"unitName\":\"瓦特\"}"}', '', '系统', '1', '1692347065919', '0'), -('3908114031', '', '显示内容', 'Display', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', 'LEDREGIONSDISPLAY', '系统', '1', '1692347065951', '0'), -('3910117005', '', '制冰机的工作状态', 'MachineState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"制冰\",\"1\":\"缺水\",\"2\":\"冰满\",\"3\":\"化冰\",\"4\":\"故障\",\"5\":\"清洗\"}"}', '', '系统', '1', '1692347065920', '0'), -('3916693860', '', '电刹强度', 'EABSLevel', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066004', '0'), -('3920533891', '', '右风量', 'RightWindSpeed', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"低档\",\"2\":\"中档\",\"3\":\"高档\"}"}', '', '系统', '1', '1692347066177', '0'), -('3921152891', '', '水表模块状态', 'WaterMeterState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\",\"3\":\"低电量\"}"}', '', '系统', '1', '1692347066027', '0'), -('3921222176', '', '经度', 'Longitude', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"180\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065821', '0'), -('3927823318', '', '随机定时7', 'RandomTimer_7', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066198', '0'), -('3928169728', '', '放水状态', 'WaterState', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关闭\",\"1\":\"放温水\",\"2\":\"放冷水\"}"}', '', '系统', '1', '1692347065986', '0'), -('39332136', '', '电源开关_20', 'PowerSwitch_20', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066143', '0'), -('3934441550', '', '内窗帘工作模式', 'InnerCurtainMode', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"反转\",\"2\":\"校准中\"}"}', '', '系统', '1', '1692347066188', '0'), -('3939029391', '', '低水位状态', 'LowWaterLevel', 'R', '0', '{"type":"bool","specs":"{\"0\":\"低水位\",\"1\":\"低于低水位\"}"}', '', '系统', '1', '1692347066226', '0'), -('3943318796', '', '电源开关_18', 'PowerSwitch_18', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066143', '0'), -('394368253', '', '方向控制', 'DirectionControl', 'RW', '1', '{"type":"enum","specs":"{\"1\":\"上\",\"2\":\"下\",\"3\":\"左\",\"4\":\"右\"}"}', '', '系统', '1', '1692347065928', '0'), -('3944274031', '', '策略', 'action', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"methodId\",\"name\":\"策略编号\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-2147483648\\\",\\\"max\\\":\\\"2147483647\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"mode\",\"name\":\"运行模式\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"brightness\",\"name\":\"亮度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"onOff\",\"name\":\"开关\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"onSet\",\"name\":\"策略参考值\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"65535\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"loop\",\"name\":\"循环设置\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"255\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"effectTime\",\"name\":\"生效时间\",\"data_type\":{\"type\":\"date\",\"specs\":\"{}\"}},{\"code\":\"invalidTime\",\"name\":\"失效时间\",\"data_type\":{\"type\":\"date\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065938', '0'), -('3945808075', '', '线路漏电流', 'LineLeakage', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"6553.5\",\"step\":\"0.01\",\"unit\":\"mA\",\"unitName\":\"毫安\"}"}', '', '系统', '1', '1692347066055', '0'), -('3947953050', '', '缺水状态', 'NoWaterState', 'R', '1', '{"type":"bool","specs":"{\"0\":\"不缺水\",\"1\":\"缺水\"}"}', '', '系统', '1', '1692347066044', '0'), -('3949719038', '', '支持人脸特征下发', 'SupportFaceFeature', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"支持\",\"1\":\"不支持\"}"}', '用于人脸特征下发,基于人脸门禁1.0物模型 -设备级开关', '系统', '1', '1692347065803', '0'), -('3954728023', '', '识别车牌', 'Car_number', 'RW', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065929', '0'), -('395975073', '', '周二定时', 'TuesdayTiming', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065982', '0'), -('3960375834', '', '保温开关', 'KeepWarmSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066106', '0'), -('3966458989', '', '灯具故障告警', 'LampError', 'R', '1', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"告警\"}"}', '1-告警;0-正常', '系统', '1', '1692347066246', '0'), -('3966571979', '', '场景名称_2', 'SceneName_2', 'RW', '0', '{"type":"text","specs":"{\"length\":\"8\"}"}', '', '系统', '1', '1692347065995', '0'), -('396713181', '', '放电线路开关', 'PowerOutSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066005', '0'), -('397936905', '', '报警状态', 'AlarmState', 'R', '1', '{"type":"bool","specs":"{\"0\":\"未报警状态\",\"1\":\"报警状态\"}"}', '', '系统', '1', '1692347065990', '0'), -('3979476183', '', '人脸ID', 'FaceID', 'R', '1', '{"type":"text","specs":"{\"length\":\"16\"}"}', '', '系统', '1', '1692347065978', '0'), -('3982460519', '', '节目计划', 'Task', 'RW', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '/ids/endSpot.action', '系统', '1', '1692347065950', '0'), -('398376925', '', '二维码状态', 'Status', 'RW', '1', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347065956', '0'), -('3985061506', '', '屏幕类型', 'ScreenType', 'R', '1', '{"type":"enum","specs":"{\"0\":\"EPD\",\"1\":\"BCD\",\"2\":\"TFT\",\"3\":\"LCD\",\"4\":\"OLED\"}"}', '', '系统', '1', '1692347065953', '0'), -('3991775623', '', '故障状态', 'Error_Code', 'R', '0', '{"type":"enum","specs":"{\"0\":\"无故障\",\"1\":\"单次燃烧大于60min\",\"11\":\"点火失败\",\"12\":\"燃烧中熄火\",\"14\":\"温度熔断器故障\",\"16\":\"出水温度过高故障\",\"20\":\"高温继电器故障\",\"31\":\"出水温度传感器故障\",\"61\":\"风机故障\",\"71\":\"电磁阀故障\",\"72\":\"意外火焰监测故障\",\"80\":\"比例阀故障\",\"90\":\"CO故障\",\"91\":\"CH4故障\"}"}', '', '系统', '1', '1692347066161', '0'), -('3993862845', '', '当前温度_9', 'CurrentTemperature_9', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('3997411049', '', '前置摄像头录制状态', 'FcRecordState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"Invalid\",\"1\":\"Preview\",\"2\":\"Record\",\"3\":\"Off\"}"}', '', '系统', '1', '1692347065823', '0'), -('3997887408', '', '选择火力', 'FireLevel', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"低\",\"1\":\"中低\",\"2\":\"中\",\"3\":\"中高\",\"4\":\"高\"}"}', '', '系统', '1', '1692347066105', '0'), -('3998537413', '', '剩余时间', 'LeftTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066050', '0'), -('3998709574', '', '干垃圾桶盖', 'ResidualWasteCover', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065825', '0'), -('4000973539', '', '脚底滚轮', 'SoleRoller', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"关\",\"2\":\"慢速\",\"3\":\"中速\",\"4\":\"快速\"}"}', '', '系统', '1', '1692347066048', '0'), -('4002243064', '', '提醒时间点', 'NotificationTime', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065870', '0'), -('400578972', '', '预设位置', 'Position', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"位置一\",\"2\":\"位置二\",\"3\":\"位置三\",\"4\":\"位置四\"}"}', '', '系统', '1', '1692347065807', '0'), -('4006433477', '', 'PM2_5级别', 'PM25Level', 'R', '1', '{"type":"enum","specs":"{\"1\":\"优\",\"2\":\"良\",\"3\":\"轻度污染\",\"4\":\"中度污染\",\"5\":\"重度污染\",\"6\":\"严重污染\"}"}', '', '系统', '1', '1692347066152', '0'), -('4018140583', '', '水温', 'WaterTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"80\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065810', '0'), -('4020265715', '', 'A相功率因素', 'electric_pfa', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065866', '0'), -('4023410635', '', '感应状态', 'SensorState', 'R', '1', '{"type":"bool","specs":"{\"0\":\"未感应到\",\"1\":\"感应到\"}"}', '', '系统', '1', '1692347065927', '0'), -('4023537152', '', '设备运行状态', 'E_Status_UP', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', 'E_Status_UP == 0 初始状态(开机) -E_Status_UP == 1 运行 -E_Status_UP == 2 停止 -E_Status_UP == 3 故障', '系统', '1', '1692347065907', '0'), -('4026296386', '', '再生引发小时', 'RegenerateTime_h', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"24\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"}"}', '', '系统', '1', '1692347065868', '0'), -('4035916247', '', '设防状态', 'DefendState', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066004', '0'), -('4038957698', '', '耗电量', 'PowerConsumption', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"99999\",\"step\":\"0.1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065810', '0'), -('4039297429', '', '下室温度', 'TemperatureLower', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"300\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066000', '0'), -('4041001706', '', '挥发性气体', 'voc', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"}"}', '', '系统', '1', '1692347065916', '0'), -('4046329735', '', '洗涤剂自投放', 'TargetDetergent', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347066051', '0'), -('4060402116', '', '车内温度', 'VehInsideTemp', 'R', '0', '{"type":"float","specs":"{\"min\":\"-128\",\"max\":\"127\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065820', '0'), -('4062859820', '', '工作剩余时间', 'work_left_time', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"255\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066001', '0'), -('4067740513', '', '预约开关', 'TimerSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066001', '0'), -('4068950214', '', '门2状态', 'DoorStatus02', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"关闭\"}"}', '', '系统', '1', '1692347066236', '0'), -('4069145062', '', '碱度', 'alkalinity', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '碱度', '系统', '1', '1692347065778', '0'), -('4077935260', '', '当前温度_13', 'CurrentTemperature_13', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('4078951702', '', 'PH低值报警阈值', 'PH_Low_Threshold', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"14\",\"step\":\"0.1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065888', '0'), -('4079556742', '', '安全角度阈值', 'SafetyAngleThreshold', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"180\",\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347066096', '0'), -('4082131473', '', '充电线路开关', 'PowerInSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066005', '0'), -('4082755077', '', '场景颜色', 'ScenesColor', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"Hue\",\"name\":\"色调\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"360\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"°\\\",\\\"unitName\\\":\\\"度\\\"}\"}},{\"code\":\"Saturation\",\"name\":\"饱和度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"%\\\",\\\"unitName\\\":\\\"百分比\\\"}\"}},{\"code\":\"Value\",\"name\":\"明度\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"100\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"%\\\",\\\"unitName\\\":\\\"百分比\\\"}\"}}]"}', '', '系统', '1', '1692347065917', '0'), -('4083057113', '', '插孔开关2', 'SocketSwitch_2', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066014', '0'), -('4086091693', '', '剩余工作时间', 'RemainingWorkTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065829', '0'), -('4097771251', '', '线路用电电量', 'LineElectricityQuantity', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"4294967\",\"step\":\"1\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347066054', '0'), -('4108176113', '', '停止注水', 'FillerOff', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066128', '0'), -('411153283', '', 'A相电压总谐波', 'UaTHD', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065877', '0'), -('411373863', '', '燃烧火焰状态', 'Flame_State', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无火\",\"1\":\"有火\"}"}', '', '系统', '1', '1692347066161', '0'), -('411475487', '', '上下扫风', 'VerticalAngle', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭上下扫风\",\"1\":\"打开上下扫风\"}"}', '', '系统', '1', '1692347066218', '0'), -('4115106136', '', '工作模式_4', 'WorkMode_4', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066146', '0'), -('4117650239', '', '门锁钥匙', 'LockKeys', 'RW', '0', '{"type":"array","specs":"{\"size\":\"128\",\"item\":{\"type\":\"struct\"}}"}', '门锁钥匙。', '系统', '1', '1692347066115', '0'), -('4120156658', '', '压力', 'Pressure', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"MPa\",\"unitName\":\"兆帕\"}"}', '', '系统', '1', '1692347065879', '0'), -('4122934106', '', '润滑油液面高度', 'E_Craft_LT_Comp', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-10000\",\"max\":\"100000\",\"step\":\"0.1\",\"unit\":\"m\",\"unitName\":\"米\"}"}', '', '系统', '1', '1692347065911', '0'), -('4132193977', '', '电子纸工作状态', 'epd_work_status', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"3\",\"step\":\"1\",\"unitName\":\"无\"}"}', '获取电子纸设备是否在刷屏,刷屏阶段,不接受数据传输', '系统', '1', '1692347065953', '0'), -('4136016042', '', '运行速度', 'E_Craft_Speed_Gum', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-1000000\",\"max\":\"1000000\",\"step\":\"0.1\",\"unit\":\"m/s\",\"unitName\":\"米每秒\"}"}', '', '系统', '1', '1692347065908', '0'), -('4136181302', '', '风干剩余时间', 'AirDryingRemainingTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"180\",\"step\":\"1\",\"unit\":\"′\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347066132', '0'), -('4146340708', '', '脱水转速', 'TargetSpinSpeed', 'RW', '0', '{"type":"int","specs":"{\"min\":\"100\",\"max\":\"1600\",\"step\":\"1\",\"unit\":\"rpm\",\"unitName\":\"每分钟转数\"}"}', '', '系统', '1', '1692347066050', '0'), -('4148168907', '', '加热档位左', 'LeftHeatLevel', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"档位1\",\"2\":\"档位2\",\"3\":\"档位3\",\"4\":\"档位4\",\"5\":\"档位5\",\"6\":\"档位6\",\"7\":\"档位7\",\"8\":\"档位8\",\"9\":\"档位9\"}"}', '', '系统', '1', '1692347066171', '0'), -('4151052679', '', '是否支持预录', 'PreRecordSupport', 'R', '0', '{"type":"bool","specs":"{\"0\":\"不支持\",\"1\":\"支持\"}"}', '', '系统', '1', '1692347065794', '0'), -('4154406586', '', '水浸状态', 'WaterLeachState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"水浸\"}"}', '', '系统', '1', '1692347066097', '0'), -('4156041135', '', '油烟机故障号', 'KitchenVentilator_ErrorCode', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066178', '0'), -('4156207566', '', '线路电流', 'LineCurrent', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"655.35\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347066054', '0'), -('4158034232', '', '烟雾检测状态', 'SmokeSensorState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"检测到烟雾\"}"}', '', '系统', '1', '1692347066219', '0'), -('415896580', '', '数据同步频率', 'DataUpdateTime', 'RW', '0', '{"type":"text","specs":"{\"length\":\"20\"}"}', '', '系统', '1', '1692347066035', '0'), -('4160373614', '', '有效电流', 'RMSCurrent', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"16\",\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347066013', '0'), -('4160914984', '', '门锁控制', 'Lock_control', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065884', '0'), -('4161038595', '', '场景名称', 'SceneName', 'RW', '0', '{"type":"text","specs":"{\"length\":\"8\"}"}', '', '系统', '1', '1692347065994', '0'), -('4161343768', '', '二氧化碳', 'CO2Value', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"5000\",\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"ppm\"}"}', '二氧化碳浓度', '系统', '1', '1692347065945', '0'), -('4174121521', '', '电源开关_11', 'PowerSwitch_11', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('4174600440', '', '磁盘使用率', 'DiskUsage', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065964', '0'), -('4178874874', '', '夜灯开关', '4', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065903', '0'), -('4181512372', '', '滤芯寿命状态_5', 'FilterStatus_5', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"需要更换\"}"}', '', '系统', '1', '1692347066156', '0'), -('4185971376', '', '车位状态', 'Ifcar', 'R', '1', '{"type":"bool","specs":"{\"0\":\"无车\",\"1\":\"有车\"}"}', '', '系统', '1', '1692347065956', '0'), -('4192993784', '', '传感器名称', 'SensorName', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"SensorLocation\",\"name\":\"传感器名称\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"63\\\"}\"}},{\"code\":\"SensorSerialNumber\",\"name\":\"传感器串码\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"9\\\"}\"}}]"}', '', '系统', '1', '1692347066056', '0'), -('4197875249', '', 'MAC地址', 'MACAddress', 'R', '1', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347065964', '0'), -('4208660658', '', '风速_11', 'WindSpeed_11', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066145', '0'), -('421151221', '', '左炉工作时间', 'LeftWorkTime', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066164', '0'), -('4215935625', '', '线路名称', 'LineName', 'RW', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066054', '0'), -('4219642745', '', 'BC线电压', 'Ubc', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065875', '0'), -('4222312596', '', '按摩位置', 'MassagePosition', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"全身\",\"2\":\"局部\",\"3\":\"定点\"}"}', '', '系统', '1', '1692347066048', '0'), -('4223983833', '', 'C相电压总谐波', 'UcTHD', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065878', '0'), -('4226373326', '', '循环定时8', 'PeriodTimer_8', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}},{\"code\":\"RunTime\",\"name\":\"运行时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}},{\"code\":\"SleepTime\",\"name\":\"间隔时间\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"10\\\",\\\"max\\\":\\\"720\\\",\\\"step\\\":\\\"10\\\",\\\"unit\\\":\\\"min\\\",\\\"unitName\\\":\\\"分\\\"}\"}}]"}', '请将此属性 添加到 插座 品类中,可选', '系统', '1', '1692347066205', '0'), -('4227417316', '', '有效电压', 'RMSVoltage', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"250\",\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347066014', '0'), -('4229719001', '', '节气', 'SolarTerms', 'R', '0', '{"type":"enum","specs":"{\"0\":\"立春\",\"1\":\"雨水\",\"10\":\"小暑\",\"11\":\"大暑\",\"12\":\"立秋\",\"13\":\"处暑\",\"14\":\"白露\",\"15\":\"秋分\",\"16\":\"寒露\",\"17\":\"霜降\",\"18\":\"立冬\",\"19\":\"小雪\",\"2\":\"惊蛰\",\"20\":\"大雪\",\"21\":\"冬至\",\"22\":\"小寒\",\"23\":\"大寒\",\"3\":\"春分\",\"4\":\"清明\",\"5\":\"谷雨\",\"6\":\"立夏\",\"7\":\"小满\",\"8\":\"芒种\",\"9\":\"夏至\",\"99\":\"不存在\"}"}', '', '系统', '1', '1692347066131', '0'), -('4232352046', '', '插孔开关1', 'SocketSwitch_1', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066014', '0'), -('4240200188', '', '静音', 'Quiet', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'); -INSERT INTO "properties" ("id", "product_id", "name", "code", "access_mode", "require", "type_spec", "description", "tag", "system", "created", "modified") VALUES -('424783646', '', '天气现象', 'Weather', 'R', '0', '{"type":"enum","specs":"{\"0\":\"晴\",\"1\":\"多云\",\"10\":\"暴雨\",\"11\":\"大暴雨\",\"12\":\"特大暴雨\",\"13\":\"阵雪\",\"14\":\"小雪\",\"15\":\"中雪\",\"16\":\"大雪\",\"17\":\"暴雪\",\"18\":\"雾\",\"19\":\"冻雨\",\"2\":\"阴\",\"20\":\"沙尘暴\",\"21\":\"小到中雨\",\"22\":\"中到大雨\",\"23\":\"大到暴雨\",\"24\":\"暴雨到大暴雨\",\"3\":\"阵雨\",\"4\":\"雷阵雨\",\"5\":\"雷阵雨伴有冰雹\",\"6\":\"雨夹雪\",\"7\":\"小雨\",\"8\":\"中雨\",\"9\":\"大雨\"}"}', '', '系统', '1', '1692347066131', '0'), -('4248735213', '', '电源开关_10', 'PowerSwitch_10', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('4251902560', '', '移动侦测开关', 'MotionDetectSwitch', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065797', '0'), -('4257379834', '', '目标温度_10', 'TargetTemperature_10', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('4259698784', '', 'B相无功功率', 'electric_pqb', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"kvar\",\"unitName\":\"千乏\"}"}', '', '系统', '1', '1692347065866', '0'), -('4259829171', '', '设备产量', 'E_OutPut_UP', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '设备产量的累加器', '系统', '1', '1692347065907', '0'), -('4264387665', '', '环境湿度高报警阈值', 'EnvHumidity_High_Threshold', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347065887', '0'), -('4269140774', '', '卧室温度', 'RoomTemp', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"50\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065841', '0'), -('4269191885', '', '频率', 'F', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"Hz\",\"unitName\":\"赫兹\"}"}', '', '系统', '1', '1692347065877', '0'), -('427083520', '', '反应速度', 'response_speed', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10\",\"step\":\"0.01\",\"unit\":\"s\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065914', '0'), -('4272879458', '', '蒸箱制作时间设置', 'SteamerTimeSetMinute', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347065846', '0'), -('4277871795', '', '消毒开关', 'DisinfectionSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066130', '0'), -('4286063633', '', '电源开关_3', 'PowerSwitch_3', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066142', '0'), -('4288202888', '', '总氰化物', 'total_cyanide', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"200\",\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '总氰化物', '系统', '1', '1692347065778', '0'), -('4289222299', '', 'AB线电压', 'Uab', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065875', '0'), -('4291699340', '', '内置摄像头接口类型', 'FcInterfaceType', 'R', '0', '{"type":"enum","specs":"{\"0\":\"NONE\",\"1\":\"MIPI\",\"2\":\"USB\",\"3\":\"WEBCAM\"}"}', '', '系统', '1', '1692347065819', '0'), -('4294643869', '', '缺水状态', 'WaterShortage', 'R', '0', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"缺水\"}"}', '', '系统', '1', '1692347066119', '0'), -('433582679', '', '加热开关', 'HeatSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066106', '0'), -('435140332', '', '取票信息', 'UploadTicketHistory', 'R', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065955', '0'), -('43736649', '', '相对湿度', 'RelativeHumidity', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '空气相对湿度', '系统', '1', '1692347065945', '0'), -('437759905', '', '软件信息', 'SoftwareInfo', 'R', '1', '{"type":"struct","specs":"[{\"code\":\"softVersion\",\"name\":\"软件版本\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"versionInfo\",\"name\":\"版本详细信息\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"2048\\\"}\"}}]"}', '', '系统', '1', '1692347065964', '0'), -('438893133', '', '音乐选择', 'MusicSelect', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"上一首\",\"2\":\"下一首\"}"}', '', '系统', '1', '1692347065991', '0'), -('439031734', '', '防冻运行', 'AntifreezeRunning', 'R', '0', '{"type":"enum","specs":"{\"0\":\"关闭\",\"1\":\"一级防冻\",\"2\":\"二级防冻\"}"}', '', '系统', '1', '1692347065982', '0'), -('439440850', '', '工况累计量', 'WorkingConditionIntegratedFlow', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"}"}', '', '系统', '1', '1692347065878', '0'), -('442140851', '', '车位总数', 'TotalParkSpace', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"99999999\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065853', '0'), -('444967152', '', '设备编码', 'DeviceCode', 'RW', '0', '{"type":"text","specs":"{\"length\":\"20\"}"}', '', '系统', '1', '1692347066034', '0'), -('448205264', '', '工作状态', 'WorkState', 'R', '0', '{"type":"enum","specs":"{\"1\":\"待机\",\"2\":\"预约\",\"3\":\"和面\",\"4\":\"醒面\",\"5\":\"出面\",\"6\":\"完成\",\"7\":\"报警\"}"}', '', '系统', '1', '1692347065864', '0'), -('449225189', '', '冲压压力', 'E_Craft_PT_Punch', 'R', '0', '{"type":"float","specs":"{\"min\":\"-1000000\",\"max\":\"1000000\",\"step\":\"0.1\",\"unit\":\"kPa\",\"unitName\":\"千帕\"}"}', '', '系统', '1', '1692347065906', '0'), -('452254109', '', '红外控制模块的输出温度值', 'TemperatureFromIRControlModel', 'R', '0', '{"type":"float","specs":"{\"min\":\"-40.0\",\"max\":\"55.0\",\"step\":\"0.1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066241', '0'), -('458813284', '', '食谱信息', 'RecipeInformation', 'R', '0', '{"type":"enum","specs":"{\"1\":\"本地食谱\",\"2\":\"云食谱\"}"}', '', '系统', '1', '1692347066041', '0'), -('461032712', '', 'IP地址', 'IPAddress', 'R', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065796', '0'), -('462748982', '', '一氧化碳浓度', 'CO', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"}"}', '', '系统', '1', '1692347065979', '0'), -('462888263', '', '位置2状态', 'location2', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无人\",\"1\":\"有人\"}"}', '', '系统', '1', '1692347066232', '0'), -('468006111', '', '易释放氰化物', 'easy_release_cyanide', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '易释放氰化物', '系统', '1', '1692347065778', '0'), -('468035204', '', '当前温度_19', 'CurrentTemperature_19', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('468380498', '', 'wifi开关', 'WifiSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"Fasle\",\"1\":\"Ture\"}"}', '', '系统', '1', '1692347065819', '0'), -('481446387', '', '门铃灯开关', 'RingLEDSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065941', '0'), -('486306100', '', '手动运行时间', 'ManualRunTime', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"1\",\"unit\":\"″\",\"unitName\":\"秒\"}"}', '', '系统', '1', '1692347065988', '0'), -('486320844', '', '变温室开关', 'VariableSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066185', '0'), -('490185724', '', '右灶状态', 'RStoveStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347065845', '0'), -('4971978', '', '电梯状态', 'ElevatorStatus', 'RW', '0', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065832', '0'), -('497472970', '', 'TDS高值报警阈值', 'TDS_High_Threshold', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"3000\",\"step\":\"1\"}"}', '', '系统', '1', '1692347065888', '0'), -('498550162', '', '工作模式_10', 'WorkMode_10', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066147', '0'), -('504909645', '', '喷淋水泵状态', 'SprayPumpStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066225', '0'), -('505491855', '', '风速_9', 'WindSpeed_9', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066144', '0'), -('50689835', '', '流量值', 'FLO_Value', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"9999\",\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"}"}', '流量值', '系统', '1', '1692347066068', '0'), -('50745671', '', '运行控制', 'OperationControl', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"启动\",\"1\":\"暂停\",\"2\":\"取消\"}"}', '', '系统', '1', '1692347066010', '0'), -('509417013', '', '过流阈值', 'OverCurrentThreshold', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"9\",\"step\":\"1\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347066246', '0'), -('510614503', '', '门磁状态', 'ContactState', 'R', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066220', '0'), -('514305414', '', '滤芯剩余寿命百分比_4', 'FilterLifeTimePercent_4', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066154', '0'), -('51481656', '', 'USB开关3', 'USBSwitch_3', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066015', '0'), -('519030183', '', '主码流视频质量', 'StreamVideoQuality', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"流畅\",\"1\":\"标清\",\"2\":\"高清\"}"}', '', '系统', '1', '1692347065783', '0'), -('520720153', '', '左炉开关', 'LeftSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066163', '0'), -('52083457', '', '模块状态', 'ModuleState', 'R', '0', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"通信失败\",\"2\":\"低电量\",\"3\":\"异常\"}"}', '', '系统', '1', '1692347065925', '0'), -('522063705', '', '设备名称', 'DeviceName', 'RW', '0', '{"type":"text","specs":"{\"length\":\"256\"}"}', '设备别名', '系统', '1', '1692347065827', '0'), -('523233443', '', 'CPU内核数量', 'cpu_core_number', 'R', '1', '{"type":"int","specs":"{\"min\":\"1\",\"max\":\"128\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066133', '0'), -('529231595', '', '单次耗电量', 'SinglePowerConsumption', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2.55\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时\"}"}', '', '系统', '1', '1692347066109', '0'), -('53127339', '', '告警角度阈值', 'TiltAlarmThreshold', 'RW', '0', '{"type":"int","specs":"{\"min\":\"5\",\"max\":\"180\",\"step\":\"1\",\"unit\":\"°\",\"unitName\":\"度\"}"}', '', '系统', '1', '1692347066225', '0'), -('533418272', '', '二氧化碳模块状态', 'CO2ModuleStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066238', '0'), -('53642216', '', 'B相视在功率', 'electric_psb', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000000\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"}"}', '', '系统', '1', '1692347065866', '0'), -('537006607', '', '剩余存储空间', 'StorageRemainCapacity', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065797', '0'), -('540680208', '', '插孔开关6', 'SocketSwitch_6', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066014', '0'), -('545012360', '', '信噪比', 'WiFI_SNR', 'RW', '1', '{"type":"int","specs":"{\"min\":\"-127\",\"max\":\"127\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066118', '0'), -('545380338', '', '齿轮分配阀润滑次数', 'E_Craft_C1_Oiling_Punch', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065906', '0'), -('545473708', '', '二进制开关', 'BinarySwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065913', '0'), -('548539767', '', '上下摆风开关', 'VerticalSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('550832966', '', '滤芯剩余寿命时间_1', 'FilterLifeTimeDays_1', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1100\",\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"}"}', '', '系统', '1', '1692347066153', '0'), -('55137744', '', '对讲机状态', 'IntercomState', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"空闲\",\"1\":\"呼叫中\",\"2\":\"通话中\"}"}', '', '系统', '1', '1692347065861', '0'), -('555639343', '', '红外控制模块指令', 'CommandFromIRControlModel', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"空操作\",\"1\":\"打开空调\",\"2\":\"关闭空调\",\"3\":\"设置温度\"}"}', '', '系统', '1', '1692347066241', '0'), -('556680255', '', '扩展网路标识', 'EXT_PAN_ID', 'RW', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347065932', '0'), -('560491564', '', '人脸类型', 'Facetype', 'R', '1', '{"type":"text","specs":"{\"length\":\"16\"}"}', '', '系统', '1', '1692347065978', '0'), -('561150416', '', '继电器复位温度', 'PressureOnTemperature', 'RW', '0', '{"type":"int","specs":"{\"min\":\"90\",\"max\":\"230\",\"step\":\"1\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066053', '0'), -('566336421', '', '电源开关右', 'RightPowerSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066171', '0'), -('57145186', '', '灌溉水泵状态', 'IrrigationPumpStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066225', '0'), -('572061346', '', '水壶温度', 'KettleTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065986', '0'), -('572486490', '', '有机挥发物浓度', 'Tvoc', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"50\",\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"ppm\"}"}', 'TVOCValue', '系统', '1', '1692347065977', '0'), -('573563215', '', '小槽工作模式', 'Small_Work_Mode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"普通洗碗\",\"1\":\"普通果蔬\",\"2\":\"高温除菌\",\"3\":\"超声波\",\"4\":\"智能模式\"}"}', '', '系统', '1', '1692347066110', '0'), -('575313929', '', '当前电压', 'volt', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '当前电压', '系统', '1', '1692347065919', '0'), -('575364543', '', '目标温度_11', 'TargetTemperature_11', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('578139948', '', 'A相无功功率', 'Qa', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"KVA\",\"unitName\":\"千伏安\"}"}', '', '系统', '1', '1692347065876', '0'), -('584031194', '', '智能烹饪参数', 'Auto_Cook_Param', 'RW', '0', '{"type":"text","specs":"{\"length\":\"254\"}"}', '', '系统', '1', '1692347066164', '0'), -('587580940', '', '机芯幅度', 'MassageRange', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"未设定\",\"1\":\"宽\",\"2\":\"中\",\"3\":\"窄\"}"}', '', '系统', '1', '1692347066048', '0'), -('587820094', '', '逗留报警音量', 'StayAlarmVolume', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066075', '0'), -('591035323', '', '溶氧量', 'DO', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10\",\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '溶氧量', '系统', '1', '1692347065777', '0'), -('597462653', '', '总存储空间', 'StorageTotalCapacity', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"0.01\",\"unit\":\"MB\",\"unitName\":\"兆字节\"}"}', '', '系统', '1', '1692347065797', '0'), -('600058866', '', 'MAC地址', 'MacAddress', 'R', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065796', '0'), -('603844969', '', '推窗器位置', 'ActuatorPosition', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066175', '0'), -('606720397', '', 'RGB调色', 'RGBColor', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"Red\",\"name\":\"红色\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"255\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"Green\",\"name\":\"绿色\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"255\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}},{\"code\":\"Blue\",\"name\":\"蓝色\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"255\\\",\\\"step\\\":\\\"1\\\",\\\"unitName\\\":\\\"无\\\"}\"}}]"}', '', '系统', '1', '1692347065904', '0'), -('608583829', '', '左右耳平衡', 'LeftRightBalance', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065991', '0'), -('61095862', '', '顶置分配阀压润滑次数', 'E_Craft_C2_Oiling_Punch', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000000\",\"step\":\"0.1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065906', '0'), -('612393194', '', '风速_20', 'WindSpeed_20', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066146', '0'), -('61319892', '', '总耗水量', 'TotalWater', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"L\",\"unitName\":\"升\"}"}', '', '系统', '1', '1692347066160', '0'), -('617246017', '', '一氧化碳', 'co', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"}"}', '', '系统', '1', '1692347065916', '0'), -('627647703', '', '控制模式', 'ModeControl', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"烘干\",\"2\":\"消毒\",\"3\":\"杀菌\"}"}', '', '系统', '1', '1692347065872', '0'), -('634774107', '', '纬度', 'Latitude', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"180\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065821', '0'), -('639531873', '', '扫票信息', 'UploadScannerHistory', 'R', '0', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347065955', '0'), -('640720054', '', '主灯亮度', 'LightLuminance', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065981', '0'), -('641303038', '', '心跳', 'Heartbeat', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"停止\",\"1\":\"正常\"}"}', '', '系统', '1', '1692347066212', '0'), -('647307799', '', '大棚空气温度', 'airTemp', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"2000\",\"step\":\"0.01\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065929', '0'), -('652736033', '', '当前温度右', 'RightCurrentTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"70\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066170', '0'), -('655466583', '', '节能开关', 'EnergySavingSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066168', '0'), -('6565962', '', '柔顺剂自投放', 'TargetSoftener', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347066051', '0'), -('66147270', '', '燃气泄漏检测状态', 'GasSensorState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"泄漏\"}"}', '', '系统', '1', '1692347066163', '0'), -('664444077', '', '甲醛浓度', 'HCHO', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1\",\"step\":\"0.01\",\"unit\":\"ppm\",\"unitName\":\"ppm\"}"}', 'HCHOValue', '系统', '1', '1692347065976', '0'), -('667998539', '', 'CA线电压', 'Uca', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065875', '0'), -('668415223', '', '标况流量', 'StandardConditionInstantaneousFlow', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"m³/h\",\"unitName\":\"立方米每小时\"}"}', '', '系统', '1', '1692347065879', '0'), -('668741980', '', '预约时间', 'AppointmentTime', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"720\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分\"}"}', '', '系统', '1', '1692347065870', '0'), -('669966357', '', '变温室目标温度', 'VariableTargetTemperature', 'RW', '0', '{"type":"float","specs":"{\"min\":\"-18\",\"max\":\"0\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066185', '0'), -('66998172', '', '室内温度', 'IndoorTemperature', 'R', '0', '{"type":"float","specs":"{\"min\":\"-100\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065983', '0'), -('671916548', '', 'TVOC_VOC浓度', 'TVOC', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"3\",\"step\":\"0.01\",\"unit\":\"mg/m³\",\"unitName\":\"毫克每立方米\"}"}', '', '系统', '1', '1692347066154', '0'), -('687148348', '', '预约定时', 'ReservationTimer', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"720\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066051', '0'), -('68914104', '', '左灶关火', 'LPowerOff', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065845', '0'), -('689955195', '', '睡眠', 'Sleep', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('692315244', '', '考勤图片地址', 'AttendancePictureAddress', 'R', '0', '{"type":"text","specs":"{\"length\":\"128\"}"}', '', '系统', '1', '1692347066034', '0'), -('700089167', '', '道闸设备状态', 'GateState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"已打开\",\"1\":\"已关闭\",\"2\":\"开闸中\",\"3\":\"关闸中\"}"}', '道闸设备状态', '系统', '1', '1692347065784', '0'), -('700931809', '', '目标温度_12', 'TargetTemperature_12', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('70114757', '', '加水', 'AddWater', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"停止加水\",\"1\":\"开启加水\"}"}', '', '系统', '1', '1692347065924', '0'), -('701932967', '', '空开电表电流值', 'AirConCurrent', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"30\",\"step\":\"0.1\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347066240', '0'), -('704995452', '', '冷冻门状态', 'FreezerDoorStatus', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"打开\"}"}', '', '系统', '1', '1692347066184', '0'), -('706754987', '', '烟感状态', 'SmokeState', 'R', '1', '{"type":"enum","specs":"{\"0\":\"正常\",\"1\":\"火警\"}"}', '', '系统', '1', '1692347066235', '0'), -('707868386', '', '工作模式_11', 'WorkMode_11', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"制冷\",\"2\":\"制热\",\"3\":\"通风\",\"4\":\"除湿\"}"}', '', '系统', '1', '1692347066147', '0'), -('713416083', '', '氨氮', 'ammonia_nitrogen', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1000\",\"step\":\"0.1\",\"unit\":\"mg/L\",\"unitName\":\"毫克每升\"}"}', '氨氮', '系统', '1', '1692347065778', '0'), -('719600956', '', '报警开关', 'AlarmSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065784', '0'), -('723728251', '', '音乐播放模式', 'MusicPlayMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"列表顺序\",\"1\":\"列表循环\",\"2\":\"单曲循环\",\"3\":\"随机\"}"}', '', '系统', '1', '1692347065859', '0'), -('724068540', '', '夜汗', 'Sweat', 'R', '0', '{"type":"enum","specs":"{\"1\":\"无汗或微汗\",\"2\":\"出汗\",\"3\":\"大汗\"}"}', '', '系统', '1', '1692347065840', '0'), -('726190714', '', '强力', 'Turbo', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('730059022', '', '外窗帘打开位置', 'OuterCurtainPosition', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066188', '0'), -('731433345', '', '吊扇开关', 'FanSwitch', 'RW', '1', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065980', '0'), -('732236412', '', '是否支持二维码', 'IsSurportQrCode', 'R', '1', '{"type":"bool","specs":"{\"0\":\"不支持\",\"1\":\"支持\"}"}', '是否支持二维码', '系统', '1', '1692347065784', '0'), -('737847850', '', '环境光照度', 'Env_lux', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"150000\",\"step\":\"0.01\",\"unit\":\"Lux\",\"unitName\":\"照度\"}"}', 'lightValue', '系统', '1', '1692347065977', '0'), -('740211909', '', '随机定时5', 'RandomTimer_5', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"StartTime\",\"name\":\"开始时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"EndTime\",\"name\":\"结束时间\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Repeat\",\"name\":\"重复\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"1024\\\"}\"}},{\"code\":\"Enable\",\"name\":\"启用\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}},{\"code\":\"TimeZoneOffset\",\"name\":\"时差\",\"data_type\":{\"type\":\"int\",\"specs\":\"{\\\"min\\\":\\\"-43200\\\",\\\"max\\\":\\\"50400\\\",\\\"step\\\":\\\"1\\\",\\\"unit\\\":\\\"s\\\",\\\"unitName\\\":\\\"秒\\\"}\"}}]"}', '将此属性添加到“插座”品类中,可选', '系统', '1', '1692347066197', '0'), -('742237249', '', '目标温度_3', 'TargetTemperature_3', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066140', '0'), -('759441868', '', '溶液瓶体积', 'BottleVolume', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0.1\",\"max\":\"60000.0\",\"step\":\"0.01\",\"unit\":\"mL\",\"unitName\":\"毫升\"}"}', '', '系统', '1', '1692347065989', '0'), -('76404179', '', '风速_4', 'WindSpeed_4', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"静音档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347066144', '0'), -('764834358', '', '场景触发', 'SceneTrigger', 'R', '0', '{"type":"bool","specs":"{\"0\":\"场景无触发\",\"1\":\"场景触发\"}"}', '', '系统', '1', '1692347065994', '0'), -('766969989', '', '继电器常闭触点', 'NC', 'R', '0', '{"type":"bool","specs":"{\"0\":\"打开\",\"1\":\"闭合\"}"}', '', '系统', '1', '1692347065846', '0'), -('767801614', '', '电子围栏', 'ElectronicFence', 'RW', '0', '{"type":"int","specs":"{\"min\":\"100\",\"max\":\"1000\",\"step\":\"1\",\"unit\":\"m\",\"unitName\":\"米\"}"}', '', '系统', '1', '1692347066003', '0'), -('768179746', '', '二氧化碳含量', 'CO2Content', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"500\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066222', '0'), -('771921360', '', '屏幕颜色', 'ScreenColour', 'R', '1', '{"type":"enum","specs":"{\"0\":\"黑白\",\"1\":\"黑白红\",\"2\":\"黑白黄\",\"3\":\"全彩\"}"}', '', '系统', '1', '1692347065953', '0'), -('780872787', '', '全自动', 'AutomaticSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"开启全自动\",\"1\":\"关闭全自动\"}"}', '', '系统', '1', '1692347065924', '0'), -('782413660', '', '周四定时', 'ThursdayTiming', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"2147483647\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065982', '0'), -('782827623', '', '实际位置', 'ActPos', 'R', '0', '{"type":"int","specs":"{\"min\":\"-210000000\",\"max\":\"210000000\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065808', '0'), -('78397606', '', '当前温度_11', 'CurrentTemperature_11', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('784429575', '', '干燥', 'Blo', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('785075181', '', '总视在功率', 'S', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065876', '0'), -('787210555', '', '道闸状态', 'Brake_state', 'R', '1', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '25', '系统', '1', '1692347065978', '0'), -('787983203', '', '频道', 'Channel', 'RW', '1', '{"type":"enum","specs":"{\"0\":\"频道减\",\"1\":\"频道加\"}"}', '', '系统', '1', '1692347066019', '0'), -('790923016', '', '烘干时长', 'DryTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066051', '0'), -('792494524', '', '通用-RSA公钥', 'RSAPublicKey', 'RW', '0', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '加密二维码', '系统', '1', '1692347065803', '0'), -('809221450', '', '水平摆风开关', 'HorizontalSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066149', '0'), -('809577716', '', '米种选择', 'RiceType', 'RW', '0', '{"type":"enum","specs":"{\"1\":\"浙江米\",\"10\":\"湖南米\",\"2\":\"糯米\",\"3\":\"糙米\",\"4\":\"长粒米\",\"5\":\"东北米\",\"6\":\"丝苗米\",\"7\":\"珍珠米\",\"8\":\"泰国香米\",\"9\":\"秋田小町\"}"}', '', '系统', '1', '1692347066102', '0'), -('81825972', '', '插孔开关7', 'SocketSwitch_7', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066013', '0'), -('824665335', '', '传感器工作模式', 'SensorWorkMode', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"SensorSerialNumber\",\"name\":\"传感器串码\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"9\\\"}\"}},{\"code\":\"SensorWorkMode\",\"name\":\"传感器布防模式\",\"data_type\":{\"type\":\"enum\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347066057', '0'), -('827662684', '', '中水位状态', 'MiddleWaterLevel', 'R', '0', '{"type":"bool","specs":"{\"0\":\"不到中水位\",\"1\":\"达到中水位\"}"}', '', '系统', '1', '1692347066226', '0'), -('82981291', '', '井盖状态', 'CoverStatus', 'R', '1', '{"type":"bool","specs":"{\"0\":\"正常\",\"1\":\"井盖被打开\"}"}', '井盖状态,1代表井盖被打开,0代表井盖状态正常', '系统', '1', '1692347066224', '0'), -('830213', '', '门铃音量', 'RingVolume', 'RW', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065942', '0'), -('831506143', '', 'ADAS开关', 'ADASSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"False\",\"1\":\"Ture\"}"}', '', '系统', '1', '1692347065819', '0'), -('834602144', '', '红外模块的通信状态', 'IRControlModelCommStatus', 'R', '0', '{"type":"enum","specs":"{\"0\":\"通信正常\",\"1\":\"通信失败\",\"2\":\"设备异常\"}"}', '', '系统', '1', '1692347066241', '0'), -('838336251', '', '暂停开关', 'PauseSwitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347065993', '0'), -('845771282', '', '功率档位', 'PowerLevel', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"自动\",\"1\":\"最低档\",\"2\":\"低档\",\"3\":\"中档\",\"4\":\"高档\",\"5\":\"最高档\"}"}', '', '系统', '1', '1692347065993', '0'), -('852883003', '', '泵工作模式', 'PumpWorkMode', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"手动\",\"1\":\"自动\"}"}', '', '系统', '1', '1692347065988', '0'), -('857285251', '', '工作电流', 'LightCurrent', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"9\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065936', '0'), -('857457239', '', '行车模式开关', 'DriveModeSwitch', 'R', '0', '{"type":"bool","specs":"{\"0\":\"关\",\"1\":\"开\"}"}', '', '系统', '1', '1692347065823', '0'), -('859595756', '', '当前小时', 'CurrentTime_h', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"24\",\"step\":\"1\",\"unit\":\"h\",\"unitName\":\"时\"}"}', '', '系统', '1', '1692347065867', '0'), -('86519844', '', '电源开关_15', 'PowerSwitch_15', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066143', '0'), -('867974991', '', '卫浴温度', 'BathTemperature', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"99\",\"step\":\"1\",\"unit\":\"℃\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347065982', '0'), -('870087784', '', '电源开关', 'Powerswitch', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066026', '0'), -('880863842', '', '漂洗时长', 'RinshTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066050', '0'), -('889972185', '', '总有功尖电能', 'EP_1', 'R', '0', '{"type":"float","specs":"{\"min\":\"-999999999999999\",\"max\":\"999999999999999\",\"step\":\"0.01\",\"unit\":\"kW·h\",\"unitName\":\"千瓦·时(度)\"}"}', '', '系统', '1', '1692347065877', '0'), -('89214921', '', 'WiFi信号强度', 'WiFiRSSI', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unitName\":\"无\"}"}', 'WiFi信号强度', '系统', '1', '1692347065851', '0'), -('893812959', '', 'C相有功功率', 'Pc', 'R', '0', '{"type":"float","specs":"{\"min\":\"-10000000000\",\"max\":\"10000000000\",\"step\":\"0.01\",\"unit\":\"kW\",\"unitName\":\"千瓦\"}"}', '', '系统', '1', '1692347065876', '0'), -('900888283', '', '运行时间_2', 'Runtime_2', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"h\",\"unitName\":\"小时\"}"}', '', '系统', '1', '1692347066154', '0'), -('903415297', '', '单元格加热开关', 'CellHeatingSwitch', 'RW', '0', '{"type":"struct","specs":"[{\"code\":\"CellCode\",\"name\":\"编号\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"100\\\"}\"}},{\"code\":\"Status\",\"name\":\"状态\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065998', '0'), -('904464974', '', '光照度', 'lightLuxValue', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"60000\",\"step\":\"0.01\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065930', '0'), -('906225156', '', '通道数目', 'ChannelNumber', 'R', '1', '{"type":"int","specs":"{\"min\":\"2\",\"max\":\"256\",\"step\":\"1\",\"unitName\":\"无\"}"}', 'NVR通道数目', '系统', '1', '1692347065827', '0'), -('908099602', '', '错误字', 'ErrorCode', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"32767\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347065808', '0'), -('912021603', '', '音量档位', 'VolumeLevel', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"静音\",\"1\":\"低音\",\"2\":\"中音\",\"3\":\"高音\"}"}', '', '系统', '1', '1692347066076', '0'), -('914824370', '', '人脸比对成功阈值', 'OnMatchThreshOld', 'RW', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066045', '0'), -('917914852', '', '目标温度_13', 'TargetTemperature_13', 'RW', '0', '{"type":"float","specs":"{\"min\":\"16\",\"max\":\"23\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066141', '0'), -('918043419', '', '报警器音量', 'AlarmVolume', 'RW', '0', '{"type":"enum","specs":"{\"0\":\"静音\",\"1\":\"低音量\",\"2\":\"高音量\"}"}', '', '系统', '1', '1692347066004', '0'), -('921768937', '', '当前门位置', 'CurrentDoorPosition', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065851', '0'), -('922398885', '', '网关版本', 'gateway_version', 'R', '1', '{"type":"text","specs":"{\"length\":\"255\"}"}', '', '系统', '1', '1692347066133', '0'), -('928702792', '', 'A相电流', 'nIa', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '', '系统', '1', '1692347065866', '0'), -('931962367', '', 'PM25浓度', 'PM25Value', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"500\",\"step\":\"0.01\",\"unit\":\"μg/m³\",\"unitName\":\"微克每立方米\"}"}', '', '系统', '1', '1692347065921', '0'), -('9333499', '', '当前电流', 'curr', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"65535\",\"step\":\"1\",\"unit\":\"A\",\"unitName\":\"安培\"}"}', '插座电流值', '系统', '1', '1692347065919', '0'), -('936404207', '', '静电电压', 'E_Craft_V_Elect_Spray', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100000\",\"step\":\"0.1\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065910', '0'), -('945980139', '', '标准服务响应', 'CommonServiceResponse', 'R', '0', '{"type":"struct","specs":"[{\"code\":\"seq\",\"name\":\"序列号\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"30\\\"}\"}}]"}', '', '系统', '1', '1692347066213', '0'), -('951186734', '', '跑步总时间', 'RunningTotalTime', 'R', '1', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"1\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066089', '0'), -('954902740', '', '当前温度_8', 'CurrentTemperature_8', 'R', '0', '{"type":"float","specs":"{\"min\":\"-20\",\"max\":\"55\",\"step\":\"0.01\",\"unit\":\"°C\",\"unitName\":\"摄氏度\"}"}', '', '系统', '1', '1692347066139', '0'), -('954950365', '', '上室湿度', 'HumidityUpper', 'RW', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347066000', '0'), -('964252151', '', '设备型号', 'DeviceType', 'R', '0', '{"type":"text","specs":"{\"length\":\"256\"}"}', '设备制造商的设备型号', '系统', '1', '1692347065827', '0'), -('967121992', '', '单曲ID', 'AudioID', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"500\",\"step\":\"1\",\"unitName\":\"无\"}"}', '', '系统', '1', '1692347066089', '0'), -('972154008', '', '设备异常状态', 'DeviceAbnormalState', 'R', '0', '{"type":"enum","specs":"{\"12\":\"异常\"}"}', '', '系统', '1', '1692347065952', '0'), -('978360105', '', '预设完成时间', 'PresetFinishTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066072', '0'), -('981831082', '', '滤芯寿命天数_5', 'FilterLifeTimeDays_5', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1100\",\"step\":\"0.01\",\"unit\":\"day\",\"unitName\":\"日\"}"}', '', '系统', '1', '1692347066157', '0'), -('982358418', '', '插孔开关3', 'SocketSwitch_3', 'RW', '0', '{"type":"bool","specs":"{\"0\":\"关闭\",\"1\":\"开启\"}"}', '', '系统', '1', '1692347066014', '0'), -('984824637', '', '加水模式', 'AddWaterModel', 'R', '0', '{"type":"enum","specs":"{\"0\":\"水量值无意义\",\"1\":\"自动加水\",\"2\":\"手动加水\"}"}', '', '系统', '1', '1692347065864', '0'), -('985130277', '', '洗涤时长', 'WashTime', 'RW', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"1440\",\"step\":\"0.01\",\"unit\":\"min\",\"unitName\":\"分钟\"}"}', '', '系统', '1', '1692347066050', '0'), -('988782590', '', '安全检测', 'SecurityCheck', 'R', '0', '{"type":"bool","specs":"{\"0\":\"无物体\",\"1\":\"有物体\"}"}', '', '系统', '1', '1692347065924', '0'), -('989368735', '', '输出电压', 'OutputVoltage', 'R', '0', '{"type":"int","specs":"{\"min\":\"0\",\"max\":\"3000\",\"step\":\"10\",\"unit\":\"V\",\"unitName\":\"伏特\"}"}', '', '系统', '1', '1692347065809', '0'), -('995072072', '', '网络配置', 'NetworkConfig', 'R', '1', '{"type":"struct","specs":"[{\"code\":\"ipAddr\",\"name\":\"IP地址\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"netmask\",\"name\":\"子网掩码\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"gateway\",\"name\":\"网关\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"mac\",\"name\":\"Mac地址\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"dns1\",\"name\":\"dns1\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"dns2\",\"name\":\"dns2\",\"data_type\":{\"type\":\"text\",\"specs\":\"{\\\"length\\\":\\\"32\\\"}\"}},{\"code\":\"mainCard\",\"name\":\"主网口\",\"data_type\":{\"type\":\"bool\",\"specs\":\"{}\"}}]"}', '', '系统', '1', '1692347065966', '0'), -('995343388', '', 'A相电流总谐波', 'IaTHD', 'R', '0', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"100\",\"step\":\"0.01\",\"unit\":\"%\",\"unitName\":\"百分比\"}"}', '', '系统', '1', '1692347065877', '0'), -('998330106', '', '下发底库信息', 'Pic_storage', 'RW', '1', '{"type":"text","specs":"{\"length\":\"2048\"}"}', '', '系统', '1', '1692347065978', '0'), -('998481891', '', '总耗气量', 'TotalGas', 'R', '1', '{"type":"float","specs":"{\"min\":\"0\",\"max\":\"10000\",\"step\":\"0.01\",\"unit\":\"m³\",\"unitName\":\"立方米\"}"}', '', '系统', '1', '1692347066160', '0'); diff --git a/manifest/sql/quick_navigation.sql b/manifest/sql/quick_navigation.sql deleted file mode 100644 index 265ac80..0000000 --- a/manifest/sql/quick_navigation.sql +++ /dev/null @@ -1,18 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:34:56.5830 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "quick_navigation"; -CREATE TABLE `quick_navigation` (`created` integer,`modified` integer,`id` text,`name` text,`icon` text,`sort` integer,`jump_link` text,PRIMARY KEY (`id`)); - -INSERT INTO "quick_navigation" ("created", "modified", "id", "name", "icon", "sort", "jump_link") VALUES -('0', '0', '09718758', '服务监控', 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAFZElEQVRYR8WYZchlVRSGn7EDW7ELFLsbHRMLFVsM8IcdoIKB+sMCHRMsrFF/CHZiKyomOnYHCo6Oid0dPMPal+2Ze87e937zOevPd79z1lr7PXuveNcew+jJnMBiwKLAIsDiwMLZs1mAbYFJg0AYM4hy6E4PLBgLC2CJBpAEbvaC712A2wddf1DAVwD7AYIeiVwGHDqMg0EA7wVcN8AiP8dxfw1skNm9AawD/DKAr55qLeClgZcB41L5CvgQ+Aj4GPgkwH2aPfs2dC8AjojfglwXeD0DOx2wL3BX+O38jhrAMwJPAOuFp3eBNYEfK3Zoe+BOIK1zGHBpZqdP/18DuCj7sFbXNYDHAceHh9+BDYHnK8CakK8C84fuHcDODbvdgZvi2Z8BPN/9KZYpAd4CeBDw2JRjgXMrwJqU2m0eupau1QHjuSmPARvHQ2227vLfBXgB4JUoWfp4IOrmPxWATwDOCL2/AvjjLXZ+yAvZpuwYYdRXvQ2wz02C7cLqc2A1wL8lWT9ifoZQPA04uWA0HjggdMyRVYDf+tm0AT4SOD8M3FE7kjtckrmimiwVik8CmwLucpd4mu9lVag19PoBNmOfBmaOFYxZHdTI9cCeofhNJNEHNYbA0Vl+fA8sB3zWtG0Ctp1aAZYPRX9bFawOJbEDXpUp7QbcWjLK3ls+bSrLxrMrgQNLgF3QhZUfgLUAYyrJfBmRkTNIbCQ4lrDNgNlC8XLgkAHAJlXrtrmj/B1NxoTsSb7DHqVHmsQKYU3MyY0MqyRvRuu1NQ8j5spWYWjD2gToVaYE2CR5CZh7mBUym19jV14bgZ8VouGkKuNG3pj8CdgX1sicoLSt911wBzmEvMGGkP7KJ0ywL0cANpnm/EPO4kdMPjEBnw6cGJrvAG8FEAFIbHJy89NUAFPjYp7IHXNGsY5bzycDfiYjNv36fc0Co6EjX74kHLu7Vq5JArZsGdwpnuUPj4wGggF9Gqrm1cphJxffJ4G8Ftg7XlgZbB6yp2ktbt5DAcJKsVECbOkydlMdbfLWaQncuW+nADAhr8MG9inxwonCjmN7/T/EDutUnZpRPmlbIWzTyrgcsLvrLrvbyoWAJGikIoFfsjHqN0d+SVNJLA5jm1wi73bG8KrxESVnbe+lic8CNR2yaw3rv7x5YhOw/zsBjA3r4gTQsYon9hywYsXX2iFT3bcpGQYCTOLEfoP/9KOXawMTsglgB+DuikWbKt49HBwPnZYtlflU7W+7mH/z7rgM8CIwR9heDeyfnLcReKldUpKtrQT8MQDoXYFbMn19uXBJZgKeAtw05e343euwbYAXAmzT6R7iGOC80mrx3gSz4NteFY/SI62Rs7NhwRFJfqOvnnQNoccBZ4WmE4BH9UVhVaflRy3woTcxYtGkKYmU8v4sTI8CJEH/kS7AjkjSxM4JoOHvVOCkeGaVMXktRyXxctGbJU9WuQcwd6aY0Ev3EnaYdMPoBOAEouN+4t2CiZUuCmWAXsKURAz3AtuEoknohN73NEuA9WFp2zKcSZLSpUcOZN74EBuCInCPuDQtq2t+nBN2bop2D7d9ZQ1g2ZKBnyaAPYCbGw7zfm+JcoesqyWxGlgVrA7KmYCXMK1SA1jji4HDA7jEKI/LnLcac97cpEGya23rrANmyhFrvzHfWT5rAcv8TYJrYppNQNx9W++s8SC/gXQ+zKfqnNw4actZ0kRhFbKzvV86klrA/fwI0tZrU0niBYzxLLhEVUsYfC8Xzyf2EYdEPwfe6w5z95D7MintgAfVfJU6w+6w97y3FRaxnTpV56Qm5w+SHC8XaypJb6lhAHvc9wGJYTVHfadswRiXU13+BY0uGsRNeoquAAAAAElFTkSuQmCC', '3', ''), -('0', '0', '13923721', '规则引擎', 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAFZElEQVRYR8WYZchlVRSGn7EDW7ELFLsbHRMLFVsM8IcdoIKB+sMCHRMsrFF/CHZiKyomOnYHCo6Oid0dPMPal+2Ze87e937zOevPd79z1lr7PXuveNcew+jJnMBiwKLAIsDiwMLZs1mAbYFJg0AYM4hy6E4PLBgLC2CJBpAEbvaC712A2wddf1DAVwD7AYIeiVwGHDqMg0EA7wVcN8AiP8dxfw1skNm9AawD/DKAr55qLeClgZcB41L5CvgQ+Aj4GPgkwH2aPfs2dC8AjojfglwXeD0DOx2wL3BX+O38jhrAMwJPAOuFp3eBNYEfK3Zoe+BOIK1zGHBpZqdP/18DuCj7sFbXNYDHAceHh9+BDYHnK8CakK8C84fuHcDODbvdgZvi2Z8BPN/9KZYpAd4CeBDw2JRjgXMrwJqU2m0eupau1QHjuSmPARvHQ2227vLfBXgB4JUoWfp4IOrmPxWATwDOCL2/AvjjLXZ+yAvZpuwYYdRXvQ2wz02C7cLqc2A1wL8lWT9ifoZQPA04uWA0HjggdMyRVYDf+tm0AT4SOD8M3FE7kjtckrmimiwVik8CmwLucpd4mu9lVag19PoBNmOfBmaOFYxZHdTI9cCeofhNJNEHNYbA0Vl+fA8sB3zWtG0Ctp1aAZYPRX9bFawOJbEDXpUp7QbcWjLK3ls+bSrLxrMrgQNLgF3QhZUfgLUAYyrJfBmRkTNIbCQ4lrDNgNlC8XLgkAHAJlXrtrmj/B1NxoTsSb7DHqVHmsQKYU3MyY0MqyRvRuu1NQ8j5spWYWjD2gToVaYE2CR5CZh7mBUym19jV14bgZ8VouGkKuNG3pj8CdgX1sicoLSt911wBzmEvMGGkP7KJ0ywL0cANpnm/EPO4kdMPjEBnw6cGJrvAG8FEAFIbHJy89NUAFPjYp7IHXNGsY5bzycDfiYjNv36fc0Co6EjX74kHLu7Vq5JArZsGdwpnuUPj4wGggF9Gqrm1cphJxffJ4G8Ftg7XlgZbB6yp2ktbt5DAcJKsVECbOkydlMdbfLWaQncuW+nADAhr8MG9inxwonCjmN7/T/EDutUnZpRPmlbIWzTyrgcsLvrLrvbyoWAJGikIoFfsjHqN0d+SVNJLA5jm1wi73bG8KrxESVnbe+lic8CNR2yaw3rv7x5YhOw/zsBjA3r4gTQsYon9hywYsXX2iFT3bcpGQYCTOLEfoP/9KOXawMTsglgB+DuikWbKt49HBwPnZYtlflU7W+7mH/z7rgM8CIwR9heDeyfnLcReKldUpKtrQT8MQDoXYFbMn19uXBJZgKeAtw05e343euwbYAXAmzT6R7iGOC80mrx3gSz4NteFY/SI62Rs7NhwRFJfqOvnnQNoccBZ4WmE4BH9UVhVaflRy3woTcxYtGkKYmU8v4sTI8CJEH/kS7AjkjSxM4JoOHvVOCkeGaVMXktRyXxctGbJU9WuQcwd6aY0Ev3EnaYdMPoBOAEouN+4t2CiZUuCmWAXsKURAz3AtuEoknohN73NEuA9WFp2zKcSZLSpUcOZN74EBuCInCPuDQtq2t+nBN2bop2D7d9ZQ1g2ZKBnyaAPYCbGw7zfm+JcoesqyWxGlgVrA7KmYCXMK1SA1jji4HDA7jEKI/LnLcac97cpEGya23rrANmyhFrvzHfWT5rAcv8TYJrYppNQNx9W++s8SC/gXQ+zKfqnNw4actZ0kRhFbKzvV86klrA/fwI0tZrU0niBYzxLLhEVUsYfC8Xzyf2EYdEPwfe6w5z95D7MintgAfVfJU6w+6w97y3FRaxnTpV56Qm5w+SHC8XaypJb6lhAHvc9wGJYTVHfadswRiXU13+BY0uGsRNeoquAAAAAElFTkSuQmCC', '4', ''), -('0', '0', '18319778', '添加产品', 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAFZElEQVRYR8WYZchlVRSGn7EDW7ELFLsbHRMLFVsM8IcdoIKB+sMCHRMsrFF/CHZiKyomOnYHCo6Oid0dPMPal+2Ze87e937zOevPd79z1lr7PXuveNcew+jJnMBiwKLAIsDiwMLZs1mAbYFJg0AYM4hy6E4PLBgLC2CJBpAEbvaC712A2wddf1DAVwD7AYIeiVwGHDqMg0EA7wVcN8AiP8dxfw1skNm9AawD/DKAr55qLeClgZcB41L5CvgQ+Aj4GPgkwH2aPfs2dC8AjojfglwXeD0DOx2wL3BX+O38jhrAMwJPAOuFp3eBNYEfK3Zoe+BOIK1zGHBpZqdP/18DuCj7sFbXNYDHAceHh9+BDYHnK8CakK8C84fuHcDODbvdgZvi2Z8BPN/9KZYpAd4CeBDw2JRjgXMrwJqU2m0eupau1QHjuSmPARvHQ2227vLfBXgB4JUoWfp4IOrmPxWATwDOCL2/AvjjLXZ+yAvZpuwYYdRXvQ2wz02C7cLqc2A1wL8lWT9ifoZQPA04uWA0HjggdMyRVYDf+tm0AT4SOD8M3FE7kjtckrmimiwVik8CmwLucpd4mu9lVag19PoBNmOfBmaOFYxZHdTI9cCeofhNJNEHNYbA0Vl+fA8sB3zWtG0Ctp1aAZYPRX9bFawOJbEDXpUp7QbcWjLK3ls+bSrLxrMrgQNLgF3QhZUfgLUAYyrJfBmRkTNIbCQ4lrDNgNlC8XLgkAHAJlXrtrmj/B1NxoTsSb7DHqVHmsQKYU3MyY0MqyRvRuu1NQ8j5spWYWjD2gToVaYE2CR5CZh7mBUym19jV14bgZ8VouGkKuNG3pj8CdgX1sicoLSt911wBzmEvMGGkP7KJ0ywL0cANpnm/EPO4kdMPjEBnw6cGJrvAG8FEAFIbHJy89NUAFPjYp7IHXNGsY5bzycDfiYjNv36fc0Co6EjX74kHLu7Vq5JArZsGdwpnuUPj4wGggF9Gqrm1cphJxffJ4G8Ftg7XlgZbB6yp2ktbt5DAcJKsVECbOkydlMdbfLWaQncuW+nADAhr8MG9inxwonCjmN7/T/EDutUnZpRPmlbIWzTyrgcsLvrLrvbyoWAJGikIoFfsjHqN0d+SVNJLA5jm1wi73bG8KrxESVnbe+lic8CNR2yaw3rv7x5YhOw/zsBjA3r4gTQsYon9hywYsXX2iFT3bcpGQYCTOLEfoP/9KOXawMTsglgB+DuikWbKt49HBwPnZYtlflU7W+7mH/z7rgM8CIwR9heDeyfnLcReKldUpKtrQT8MQDoXYFbMn19uXBJZgKeAtw05e343euwbYAXAmzT6R7iGOC80mrx3gSz4NteFY/SI62Rs7NhwRFJfqOvnnQNoccBZ4WmE4BH9UVhVaflRy3woTcxYtGkKYmU8v4sTI8CJEH/kS7AjkjSxM4JoOHvVOCkeGaVMXktRyXxctGbJU9WuQcwd6aY0Ev3EnaYdMPoBOAEouN+4t2CiZUuCmWAXsKURAz3AtuEoknohN73NEuA9WFp2zKcSZLSpUcOZN74EBuCInCPuDQtq2t+nBN2bop2D7d9ZQ1g2ZKBnyaAPYCbGw7zfm+JcoesqyWxGlgVrA7KmYCXMK1SA1jji4HDA7jEKI/LnLcac97cpEGya23rrANmyhFrvzHfWT5rAcv8TYJrYppNQNx9W++s8SC/gXQ+zKfqnNw4actZ0kRhFbKzvV86klrA/fwI0tZrU0niBYzxLLhEVUsYfC8Xzyf2EYdEPwfe6w5z95D7MintgAfVfJU6w+6w97y3FRaxnTpV56Qm5w+SHC8XaypJb6lhAHvc9wGJYTVHfadswRiXU13+BY0uGsRNeoquAAAAAElFTkSuQmCC', '1', ''), -('0', '0', '43719799', '添加设备', 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAFZElEQVRYR8WYZchlVRSGn7EDW7ELFLsbHRMLFVsM8IcdoIKB+sMCHRMsrFF/CHZiKyomOnYHCo6Oid0dPMPal+2Ze87e937zOevPd79z1lr7PXuveNcew+jJnMBiwKLAIsDiwMLZs1mAbYFJg0AYM4hy6E4PLBgLC2CJBpAEbvaC712A2wddf1DAVwD7AYIeiVwGHDqMg0EA7wVcN8AiP8dxfw1skNm9AawD/DKAr55qLeClgZcB41L5CvgQ+Aj4GPgkwH2aPfs2dC8AjojfglwXeD0DOx2wL3BX+O38jhrAMwJPAOuFp3eBNYEfK3Zoe+BOIK1zGHBpZqdP/18DuCj7sFbXNYDHAceHh9+BDYHnK8CakK8C84fuHcDODbvdgZvi2Z8BPN/9KZYpAd4CeBDw2JRjgXMrwJqU2m0eupau1QHjuSmPARvHQ2227vLfBXgB4JUoWfp4IOrmPxWATwDOCL2/AvjjLXZ+yAvZpuwYYdRXvQ2wz02C7cLqc2A1wL8lWT9ifoZQPA04uWA0HjggdMyRVYDf+tm0AT4SOD8M3FE7kjtckrmimiwVik8CmwLucpd4mu9lVag19PoBNmOfBmaOFYxZHdTI9cCeofhNJNEHNYbA0Vl+fA8sB3zWtG0Ctp1aAZYPRX9bFawOJbEDXpUp7QbcWjLK3ls+bSrLxrMrgQNLgF3QhZUfgLUAYyrJfBmRkTNIbCQ4lrDNgNlC8XLgkAHAJlXrtrmj/B1NxoTsSb7DHqVHmsQKYU3MyY0MqyRvRuu1NQ8j5spWYWjD2gToVaYE2CR5CZh7mBUym19jV14bgZ8VouGkKuNG3pj8CdgX1sicoLSt911wBzmEvMGGkP7KJ0ywL0cANpnm/EPO4kdMPjEBnw6cGJrvAG8FEAFIbHJy89NUAFPjYp7IHXNGsY5bzycDfiYjNv36fc0Co6EjX74kHLu7Vq5JArZsGdwpnuUPj4wGggF9Gqrm1cphJxffJ4G8Ftg7XlgZbB6yp2ktbt5DAcJKsVECbOkydlMdbfLWaQncuW+nADAhr8MG9inxwonCjmN7/T/EDutUnZpRPmlbIWzTyrgcsLvrLrvbyoWAJGikIoFfsjHqN0d+SVNJLA5jm1wi73bG8KrxESVnbe+lic8CNR2yaw3rv7x5YhOw/zsBjA3r4gTQsYon9hywYsXX2iFT3bcpGQYCTOLEfoP/9KOXawMTsglgB+DuikWbKt49HBwPnZYtlflU7W+7mH/z7rgM8CIwR9heDeyfnLcReKldUpKtrQT8MQDoXYFbMn19uXBJZgKeAtw05e343euwbYAXAmzT6R7iGOC80mrx3gSz4NteFY/SI62Rs7NhwRFJfqOvnnQNoccBZ4WmE4BH9UVhVaflRy3woTcxYtGkKYmU8v4sTI8CJEH/kS7AjkjSxM4JoOHvVOCkeGaVMXktRyXxctGbJU9WuQcwd6aY0Ev3EnaYdMPoBOAEouN+4t2CiZUuCmWAXsKURAz3AtuEoknohN73NEuA9WFp2zKcSZLSpUcOZN74EBuCInCPuDQtq2t+nBN2bop2D7d9ZQ1g2ZKBnyaAPYCbGw7zfm+JcoesqyWxGlgVrA7KmYCXMK1SA1jji4HDA7jEKI/LnLcac97cpEGya23rrANmyhFrvzHfWT5rAcv8TYJrYppNQNx9W++s8SC/gXQ+zKfqnNw4actZ0kRhFbKzvV86klrA/fwI0tZrU0niBYzxLLhEVUsYfC8Xzyf2EYdEPwfe6w5z95D7MintgAfVfJU6w+6w97y3FRaxnTpV56Qm5w+SHC8XaypJb6lhAHvc9wGJYTVHfadswRiXU13+BY0uGsRNeoquAAAAAElFTkSuQmCC', '2', ''); diff --git a/manifest/sql/thing_model_template.sql b/manifest/sql/thing_model_template.sql deleted file mode 100644 index 64aa6ee..0000000 --- a/manifest/sql/thing_model_template.sql +++ /dev/null @@ -1,420 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:35:12.0160 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "thing_model_template"; -CREATE TABLE `thing_model_template` (`created` integer,`modified` integer,`id` text NOT NULL,`category_key` text,`category_name` text,`thing_model_json` text,PRIMARY KEY (`id`)); - -INSERT INTO "thing_model_template" ("created", "modified", "id", "category_key", "category_name", "thing_model_json") VALUES -('1692347065', '0', '1004528556', 'WiFiProbeCollector', 'WiFi探针采集器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1005733642', 'FoodDehydrator', '食物烘干机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-20","step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","identifier":"RemainingWorkTime","name":"剩余时间","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"NTC短路","value":1},{"dataType":"ENUM","name":"NTC开路","value":2},{"dataType":"ENUM","name":"超温保护","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1015432720', 'SmartRearviewMirror', '智能后视镜', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","identifier":"SimCardType","name":"sim卡类型","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"invalid","value":0},{"dataType":"ENUM","name":"preview","value":1},{"dataType":"ENUM","name":"record","value":2},{"dataType":"ENUM","name":"off","value":3}],"dataType":"ENUM","identifier":"FcRecordOn","name":"前置摄像头录制状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"480P","value":0},{"dataType":"ENUM","name":"720P","value":1},{"dataType":"ENUM","name":"1080P","value":2},{"dataType":"ENUM","name":"2160P","value":3}],"dataType":"ENUM","identifier":"FcResolution","name":"前置摄像头分辨率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"NONE","value":0},{"dataType":"ENUM","name":"MIPI","value":1},{"dataType":"ENUM","name":"USB","value":2},{"dataType":"ENUM","name":"WEBCAM","value":3}],"dataType":"ENUM","identifier":"FcInterfaceType","name":"内置摄像头接口类型","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"False","value":0},{"dataType":"BOOL","name":"Ture","value":1}],"dataType":"BOOL","identifier":"ADASSwitch","name":"ADAS开关","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"Off","value":0},{"dataType":"ENUM","name":"Low","value":1},{"dataType":"ENUM","name":"Mid","value":2},{"dataType":"ENUM","name":"High","value":3}],"dataType":"ENUM","identifier":"FcwSensibility","name":"前车预警灵敏度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"False","value":0},{"dataType":"BOOL","name":"Ture","value":1}],"dataType":"BOOL","identifier":"WatchDogSwitch","name":"电子狗开关","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"Fasle","value":0},{"dataType":"BOOL","name":"Ture","value":1}],"dataType":"BOOL","identifier":"WifiSwitch","name":"wifi开关","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"127","min":"-128","step":"1","unit":"dBm","unitName":"分贝毫瓦"},"dataType":"INT","identifier":"CellSignalStrength","name":"信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","identifier":"Brand","name":"品牌","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"eventName":"倒车信号","eventType":"INFO_EVENT_TYPE","identifier":"CarReverseSignal","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"OFF","value":0},{"dataType":"BOOL","name":"ON","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"ReverseStatus","name":"倒车状态","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","unit":"","unitName":"无"},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"ReverseTime","name":"倒车切换时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"359","min":"0","precise":16,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"gnssHead","name":"方向","paraOrder":2}],"required":false},{"custom":false,"eventName":"水平碰撞","eventType":"ERROR_EVENT_TYPE","identifier":"CrashEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"crashAccP","name":"加速度峰值","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"CrashAccE","name":"加速度原始值","paraOrder":1}],"required":false},{"custom":false,"eventName":"翻车","eventType":"ERROR_EVENT_TYPE","identifier":"RolloverEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"RolloverAccP","name":"加速度峰值","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"RolloverAccE","name":"加速度原始值","paraOrder":1}],"required":false}]}'), -('1692347065', '0', '1028621822', 'OffVoltageMonitor', '断电监控', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1031233571', 'BreakingMachine', '破壁机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"KeepWarmSwitch","name":"保温开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"运行","value":0},{"dataType":"BOOL","name":"暂停","value":1}],"dataType":"BOOL","description":"","identifier":"PauseSwitch","name":"暂停开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"HeatSwitch","name":"加热开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10","min":"0","precise":1,"step":"0.50","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"8","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"StirringSpeed","name":"搅拌速度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"预约中","value":2},{"dataType":"ENUM","name":"暂停","value":3},{"dataType":"ENUM","name":"完成","value":4}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10","min":"0","precise":1,"step":"0.50","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentTime","name":"预约时间","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1037905255', 'EnergyMangement', '能源管理', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '1041002987', 'Airfryer', '空气炸锅', '{"services":[{"callType":"ASYNC","custom":false,"identifier":"Start","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"默认菜单","value":0},{"dataType":"ENUM","name":"冻薯条","value":1},{"dataType":"ENUM","name":"牛排","value":2},{"dataType":"ENUM","name":"鸡腿","value":3},{"dataType":"ENUM","name":"蛋糕","value":4},{"dataType":"ENUM","name":"虾","value":5},{"dataType":"ENUM","name":"披萨","value":6},{"dataType":"ENUM","name":"鱼","value":7}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Menu","name":"菜单","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","precise":16,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","direction":"PARAM_INPUT","identifier":"WorkTime","name":"工作时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"460","min":"0","step":"1","unit":"℉","unitName":"华氏度"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"ToastTemperature","name":"烘烤温度","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","precise":16,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","direction":"PARAM_INPUT","identifier":"NotificationTime","name":"提醒时间点","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"开始","value":0},{"dataType":"BOOL","name":"暂停","value":1}],"dataType":"BOOL","direction":"PARAM_INPUT","identifier":"PauseSwtich","name":"暂停开关","paraOrder":4}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"失败","value":0},{"dataType":"BOOL","name":"成功","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Result","name":"设置结果","paraOrder":0}],"required":false,"serviceName":"启动"},{"callType":"ASYNC","custom":false,"identifier":"AppointmentStart","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"默认菜单","value":0},{"dataType":"ENUM","name":"冻薯条","value":1},{"dataType":"ENUM","name":"牛排","value":2},{"dataType":"ENUM","name":"鸡腿","value":3},{"dataType":"ENUM","name":"蛋糕","value":4},{"dataType":"ENUM","name":"虾","value":5},{"dataType":"ENUM","name":"披萨","value":6},{"dataType":"ENUM","name":"鱼","value":7}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Menu","name":"菜单","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","precise":16,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","direction":"PARAM_INPUT","identifier":"WorkTime","name":"工作时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"460","min":"0","step":"1","unit":"℉","unitName":"华氏度"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"ToastTemperature","name":"烘烤温度","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","precise":16,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","direction":"PARAM_INPUT","identifier":"NotificationTime","name":"提醒时间点","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"720","min":"0","step":"1","unit":"min","unitName":"分"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"AppointmentTime","name":"预约时间","paraOrder":4},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"开始","value":0},{"dataType":"BOOL","name":"暂停","value":1}],"dataType":"BOOL","direction":"PARAM_INPUT","identifier":"PauseSwtich","name":"暂停开关","paraOrder":5}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"失败","value":0},{"dataType":"BOOL","name":"成功","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Result","name":"设置结果","paraOrder":0}],"required":false,"serviceName":"预约启动"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"开始","value":0},{"dataType":"BOOL","name":"暂停","value":1}],"dataType":"BOOL","identifier":"PauseSwtich","name":"暂停开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"默认菜单","value":0},{"dataType":"ENUM","name":"冻薯条","value":1},{"dataType":"ENUM","name":"牛排","value":2},{"dataType":"ENUM","name":"鸡腿","value":3},{"dataType":"ENUM","name":"蛋糕","value":4},{"dataType":"ENUM","name":"虾","value":5},{"dataType":"ENUM","name":"披萨","value":6},{"dataType":"ENUM","name":"鱼","value":7}],"dataType":"ENUM","identifier":"Menu","name":"菜单","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"460","min":"0","step":"1","unit":"℉","unitName":"华氏度"},"dataType":"INT","identifier":"ToastTemperature","name":"烘烤温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"720","min":"0","step":"1","unit":"min","unitName":"分"},"dataType":"INT","identifier":"AppointmentTime","name":"预约时间","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","identifier":"WorkTime","name":"工作时间","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"460","min":"0","step":"0.01","unit":"℉","unitName":"华氏度"},"dataType":"DOUBLE","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"默认菜单","value":0},{"dataType":"ENUM","name":"冻薯条","value":1},{"dataType":"ENUM","name":"牛排","value":2},{"dataType":"ENUM","name":"鸡腿","value":3},{"dataType":"ENUM","name":"蛋糕","value":4},{"dataType":"ENUM","name":"虾","value":5},{"dataType":"ENUM","name":"披萨","value":6},{"dataType":"ENUM","name":"鱼","value":7}],"dataType":"ENUM","identifier":"WorkState","name":"工作状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","identifier":"RemainingWorkTime","name":"剩余时间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","identifier":"NotificationTime","name":"提醒时间点","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"华氏度","value":0},{"dataType":"BOOL","name":"摄氏度","value":1}],"dataType":"BOOL","identifier":"TemperatureUnit","name":"温度单位","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WotkSwitch","name":"工作开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"NTC短路","value":1},{"dataType":"ENUM","name":"NTC开路","value":2},{"dataType":"ENUM","name":"超温保护","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"eventName":"时间点提醒","eventType":"INFO_EVENT_TYPE","identifier":"TimeNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","precise":16,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Time","name":"提醒时间点","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1045161070', 'EpdTable', '电子标签', '{"services":[{"callType":"ASYNC","custom":false,"description":"给电子纸桌签下发桌签需要显示的数据。黑白红三色电子纸特定的数据格式","identifier":"send_epd_table_datas","inputParams":[],"outputParams":[],"required":false,"serviceName":"刷屏数据"},{"callType":"ASYNC","custom":false,"description":"","identifier":"UpdateDisplay","inputParams":[],"outputParams":[],"required":true,"serviceName":"更新显示"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","description":"","identifier":"Version","name":"固件版本号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"3","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"获取电子纸设备是否在刷屏,刷屏阶段,不接受数据传输","identifier":"epd_work_status","name":"电子纸工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"99999","min":"1","precise":0,"step":"1","unit":"mm","unitName":"毫米"},"dataType":"INT","description":"","identifier":"ScreenWidth","name":"屏幕宽度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"99999","min":"1","precise":0,"step":"1","unit":"mm","unitName":"毫米"},"dataType":"INT","description":"","identifier":"ScreenLength","name":"屏幕长度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"黑白","value":0},{"dataType":"ENUM","name":"黑白红","value":1},{"dataType":"ENUM","name":"黑白黄","value":2},{"dataType":"ENUM","name":"全彩","value":3}],"dataType":"ENUM","description":"","identifier":"ScreenColour","name":"屏幕颜色","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"EPD","value":0},{"dataType":"ENUM","name":"BCD","value":1},{"dataType":"ENUM","name":"TFT","value":2},{"dataType":"ENUM","name":"LCD","value":3},{"dataType":"ENUM","name":"OLED","value":4}],"dataType":"ENUM","description":"","identifier":"ScreenType","name":"屏幕类型","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"PictureURL","name":"图片地址","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"SignalIntensity","name":"信号强度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"LabelID","name":"标签ID","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"LabelBatteryPercentage","name":"标签电量","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"低电量报警","eventType":"INFO_EVENT_TYPE","identifier":"LowElectricityAlarm","outputData":[],"required":true},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1053583922', 'MilkModulator', '调奶器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"240","min":"30","precise":0,"step":"1","unit":"mL","unitName":"毫升"},"dataType":"INT","description":"","identifier":"TargetWaterVolume","name":"目标水量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"55","min":"40","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"TargetTemperature","name":"目标水温","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"50","min":"0.1","precise":7,"step":"0.01","unit":"g","unitName":"克"},"dataType":"DOUBLE","description":"","identifier":"TargetMilkPowderVolume","name":"目标奶粉量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"冲奶","value":1},{"dataType":"ENUM","name":"出水","value":2},{"dataType":"ENUM","name":"清洗","value":3},{"dataType":"ENUM","name":"UV杀菌","value":4},{"dataType":"ENUM","name":"风干","value":5}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1059544569', 'ElectricVehicleChargingStation', '电动汽车充电站', '{"services":[],"properties":[],"events":[{"custom":false,"eventName":"离线告警","eventType":"ALERT_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1060028569', 'AutomaticCooker', '烹饪机器人', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"烹饪","value":1},{"dataType":"ENUM","name":"收汁","value":2},{"dataType":"ENUM","name":"补炊","value":3},{"dataType":"ENUM","name":"完成","value":4},{"dataType":"ENUM","name":"暂停","value":5}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"36000","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","description":"","identifier":"CookingTime","name":"烹饪时间","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"爆炒","value":1},{"dataType":"ENUM","name":"红烧","value":2},{"dataType":"ENUM","name":"焖炖","value":3},{"dataType":"ENUM","name":"煲汤","value":4},{"dataType":"ENUM","name":"蛋类","value":5}],"dataType":"ENUM","description":"","identifier":"CookingMode","name":"烹饪模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":14},"dataType":"TEXT","description":"","identifier":"MenuName","name":"菜谱名称","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":80},"dataType":"TEXT","description":"","identifier":"FoodID","name":"食材ID","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":80},"dataType":"TEXT","description":"","identifier":"SeasoningID","name":"调料ID","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1061811165', 'Projector', '投影仪', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1070594716', 'GasMeter', '燃气表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1079156302', 'SmartCleanFace', '智能洁面仪', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"CtrlCommand","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"重置无车","value":0},{"dataType":"ENUM","name":"重置标尺","value":1},{"dataType":"ENUM","name":"关机","value":2},{"dataType":"ENUM","name":"强制重启","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"CommandType","name":"指令类型","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"控制指令"},{"callType":"ASYNC","custom":false,"description":"","identifier":"GetStates","inputParams":[],"outputParams":[],"required":false,"serviceName":"获取设备状态"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"BinarySwitch","name":"二进制开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"250","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"EnumerationLevel","name":"模式档位","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"设备故障","eventType":"INFO_EVENT_TYPE","identifier":"Error_alarm","outputData":[],"required":false},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0},{"dataType":"ENUM","name":"电源故障","value":1},{"dataType":"ENUM","name":"遇阻故障","value":2},{"dataType":"ENUM","name":"过热故障","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1085635480', 'InnerInsulationCurtain', '内保温帘幕', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1091418722', 'Faucet', '龙头', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"WaterOutletSwitch","name":"出水开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"80","min":"0","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","identifier":"WaterTemperature","name":"水温","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","step":"50","unit":"mL","unitName":"毫升"},"dataType":"INT","identifier":"WaterRequire","name":"水量值","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1092485122', 'DoorViewer', '猫眼', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"Restart","inputParams":[],"outputParams":[],"required":false,"serviceName":"重新启动"},{"callType":"ASYNC","custom":false,"description":"","identifier":"RestoreFactorySettings","inputParams":[],"outputParams":[],"required":true,"serviceName":"恢复出厂设置"},{"callType":"ASYNC","custom":false,"description":"","identifier":"FormatTFCard","inputParams":[],"outputParams":[],"required":false,"serviceName":"TF卡格式化"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"RingVolume","name":"门铃音量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"RingLEDSwitch","name":"门铃灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"撤防","value":0},{"dataType":"BOOL","name":"布防","value":1}],"dataType":"BOOL","description":"","identifier":"AlarmSwitch","name":"报警开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低灵敏度","value":0},{"dataType":"ENUM","name":"高灵敏度","value":1}],"dataType":"ENUM","description":"","identifier":"AlarmSensitivity","name":"报警灵敏度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"StayAlarmVolume","name":"逗留报警音量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"IndoorHumanDetectionSwitch","name":"室内人体探测开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低清","value":1},{"dataType":"ENUM","name":"标清","value":2},{"dataType":"ENUM","name":"高清","value":3}],"dataType":"ENUM","description":"","identifier":"StreamVideoQuality","name":"主码流视频质量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"LCDLuminance","name":"屏幕亮度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未插充电器","value":0},{"dataType":"ENUM","name":"充电中","value":1},{"dataType":"ENUM","name":"已充满","value":2}],"dataType":"ENUM","description":"","identifier":"ChargeState","name":"充电状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1096867337', 'emergency_button', '紧急按钮', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"lqi","name":"信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"zsta","name":"设备状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"batpt","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1098426900', 'AirCompressorMachine', '空压机', '{"services":[{"callType":"ASYNC","custom":false,"description":"触发设备的工艺参数报警","identifier":"SCraftAlarm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"E_CraftAlarm","name":"参数报警标识","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"工艺参数报警"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"-10000","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"E_Craft_TT_Comp","name":"温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"Pa","unitName":"帕"},"dataType":"FLOAT","description":"","identifier":"E_Craft_PT_Comp","name":"压力","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100000","min":"-10000","precise":7,"step":"0.1","unit":"m","unitName":"米"},"dataType":"FLOAT","description":"","identifier":"E_Craft_LT_Comp","name":"润滑油液面高度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","description":"设备理想生产周期","identifier":"E_Craft_Ideal_Cycle_Time","name":"设备理想生产周期","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备合格率","identifier":"E_Q","name":"设备合格率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备性能稼动率","identifier":"E_P","name":"设备性能稼动率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备时间稼动率","identifier":"E_A","name":"设备时间稼动率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备最新的OEE","identifier":"E_OEE","name":"设备综合效率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例:\n0 -- 正常运行\n1 -- 缺料\n2 -- 无生产任务\n3 -- 休息","identifier":"E_Stop_Reason","name":"停机原因","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"min","unitName":"分"},"dataType":"INT","description":"设备运行总时间","identifier":"E_TotalRunTime","name":"设备运行总时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备次品的累加器","identifier":"E_Defect_UP","name":"设备不良品","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备产量的累加器","identifier":"E_OutPut_UP","name":"设备产量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"E_Status_UP == 0 初始状态(开机)\nE_Status_UP == 1 运行\nE_Status_UP == 2 停止\nE_Status_UP == 3 故障","identifier":"E_Status_UP","name":"设备运行状态","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1105578333', 'FaceIdentification', '客群识别设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","description":"","identifier":"Identity","name":"人员特征数据","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1118284186', 'FireDoor', '防火门', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"完好","value":0},{"dataType":"ENUM","name":"轻微受损","value":1},{"dataType":"ENUM","name":"严重受损","value":2}],"dataType":"ENUM","identifier":"ExtentOfDamage","name":"受损程度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"高度","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '113337954', 'ElectricValve', '电动阀', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1137617762', 'Building', '智慧建筑', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '1163329468', 'SmartWasteSortingDustBin', '智能分类垃圾桶', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"ResidualWasteCover","name":"干垃圾桶盖","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"HouseholdFoodWasteCover","name":"湿垃圾桶盖","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1168504406', 'Coffee machine', '咖啡机', '{"services":[{"callType":"SYNC","custom":false,"description":"批量库存查询","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"SYNC","custom":false,"description":"单个库存查询","identifier":"getInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"c","name":"库存","paraOrder":0}],"required":true,"serviceName":"单个库存查询"},{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"库存","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"增加库存"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '1189439745', 'HomeLinkEdgeGateway', '全屋边缘网关', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"UnbindDeviceList","name":"LCA未配网子设备列表","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1197910554', 'ArcExtinguishing', '电弧灭弧', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1213225254', 'EnvironmentalPerception', '环境感知', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '1215476758', 'Flowmeter', '流量计', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m³","unitName":"立方米"},"dataType":"DOUBLE","description":"流量值","identifier":"FLO_Value","name":"流量值","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1217361711', 'PharmaceuticalManufacturing', '医药制造业', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '121771511', 'BluetoothAccess', '蓝牙门禁', '{"services":[{"callType":"ASYNC","custom":false,"identifier":"remoteOpen","inputParams":[],"outputParams":[],"required":true,"serviceName":"远程开门"},{"callType":"ASYNC","custom":false,"identifier":"syncPermissions","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"permissionUrl","name":"权限url","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"同步门禁权限"}],"properties":[],"events":[{"custom":false,"eventName":"异常刷卡","eventType":"ALERT_EVENT_TYPE","identifier":"abnormalBleCard","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"cardId","name":"门禁卡ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无效卡","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"eventType","name":"事件类型","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"通行事件","eventType":"INFO_EVENT_TYPE","identifier":"passEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"cardId","name":"门禁卡ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"userId","name":"用户Id","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"extInfo","name":"附加信息","paraOrder":2}],"required":true},{"custom":false,"eventName":"报警事件","eventType":"ALERT_EVENT_TYPE","identifier":"alarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"防拆报警","value":0},{"dataType":"ENUM","name":"防拆报警解除","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"alarmType","name":"报警类型","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1221286208', 'FAU', '新风机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音","value":1},{"dataType":"ENUM","name":"低风","value":2},{"dataType":"ENUM","name":"中风","value":3},{"dataType":"ENUM","name":"高风","value":4}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"风速档位","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSavingMode","name":"节能模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1234032285', 'Currentdetectingsensor', '单向电流检测传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"36","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"630000","min":"0","precise":7,"step":"0.01","unit":"mA","unitName":"毫安"},"dataType":"DOUBLE","description":"","identifier":"Current","name":"当前电流","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1258193006', 'QrCodeAccess', '二维码门禁', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"remoteOpen","inputParams":[],"outputParams":[],"required":true,"serviceName":"远程开门"},{"callType":"SYNC","custom":false,"description":"","identifier":"addQrCode","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"qrCode","name":"二维码","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"expiryTime","name":"截止时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"userId","name":"用户Id","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"effectiveTime","name":"生效时间","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"新增二维码"},{"callType":"SYNC","custom":false,"description":"","identifier":"delQrCode","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"qrCode","name":"二维码","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"删除二维码"}],"properties":[],"events":[{"custom":false,"description":"","eventName":"通行事件","eventType":"INFO_EVENT_TYPE","identifier":"passEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"userId","name":"用户Id","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"qrCode","name":"二维码","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"报警事件","eventType":"INFO_EVENT_TYPE","identifier":"alarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"防拆报警","value":0},{"dataType":"ENUM","name":"防拆报警解除","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"alarmType","name":"报警类型","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1268433666', 'PasswordAccess', '密码门禁', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"remoteOpen","inputParams":[],"outputParams":[],"required":true,"serviceName":"远程开门"},{"callType":"SYNC","custom":false,"description":"","identifier":"setPassword","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"设置密码","value":0},{"dataType":"ENUM","name":"删除密码","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"operateType","name":"操作类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"password","name":"密码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"999999999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"number","name":"密码编号","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"userId","name":"用户Id","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"设置密码"}],"properties":[],"events":[{"custom":false,"description":"","eventName":"报警事件","eventType":"INFO_EVENT_TYPE","identifier":"alarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"防拆报警","value":0},{"dataType":"ENUM","name":"防拆报警解除","value":1},{"dataType":"ENUM","name":"挟持报警","value":2},{"dataType":"ENUM","name":"挟持报警解除","value":3},{"dataType":"ENUM","name":"三次密码错误报警","value":4},{"dataType":"ENUM","name":"三次密码错误报警解除","value":5}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"alarmType","name":"报警类型","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"通行事件","eventType":"INFO_EVENT_TYPE","identifier":"passEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"99999999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"number","name":"密码编号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"userId","name":"用户Id","paraOrder":1}],"required":true}]}'), -('1692347065', '0', '1271027497', 'EmerBroadcasting', '应急广播', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1282930769', 'EFence', '电子围栏', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"ControlDevice","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"HostId","name":"主机ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EfenceId","name":"围栏ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Action","name":"动作","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"99999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Code","name":"返回码","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Message","name":"返回消息","paraOrder":1}],"required":false,"serviceName":"控制设备"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryHost","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"99999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Code","name":"返回码","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Message","name":"返回消息","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"Data","name":"返回数据","paraOrder":2}],"required":false,"serviceName":"查询主机"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryEfence","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"HostId","name":"主机ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"99999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Code","name":"返回码","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Message","name":"返回消息","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"Data","name":"返回数据","paraOrder":2}],"required":false,"serviceName":"查询围栏"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryStatus","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"HostId","name":"主机ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EfenceId","name":"围栏ID","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"99999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Code","name":"返回码","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Message","name":"返回消息","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":16},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"返回数据","paraOrder":2}],"required":false,"serviceName":"查询状态"}],"properties":[],"events":[{"custom":false,"description":"","eventName":"通用事件","eventType":"INFO_EVENT_TYPE","identifier":"EfenceEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"HostId","name":"主机ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"EfenceId","name":"围栏ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"EfenceName","name":"围栏名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"EventType","name":"事件类型","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"EventCode","name":"事件编码","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserId","name":"事件相关的用户ID","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserName","name":"事件相关的用户名","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"EventTime","name":"事件时间","paraOrder":7}],"required":false}]}'), -('1692347065', '0', '1291107312', 'RobotCleaner', '扫地机器人', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"定点","value":1},{"dataType":"ENUM","name":"边缘","value":2},{"dataType":"ENUM","name":"充电","value":3},{"dataType":"ENUM","name":"单间","value":4}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"前进","value":1},{"dataType":"ENUM","name":"后退","value":2},{"dataType":"ENUM","name":"左转","value":3},{"dataType":"ENUM","name":"右转","value":4}],"dataType":"ENUM","description":"","identifier":"CleanDirection","name":"打扫方向","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未充电","value":0},{"dataType":"ENUM","name":"充电中","value":1}],"dataType":"ENUM","description":"","identifier":"ChargingState","name":"充电状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"200","min":"0","precise":7,"step":"0.01","unit":"㎡","unitName":"平方米"},"dataType":"DOUBLE","description":"","identifier":"CleanArea","name":"本地清扫面积","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"CleanRunTime","name":"本地清扫时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryState","name":"电池状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"定点","value":1},{"dataType":"ENUM","name":"自动","value":2},{"dataType":"ENUM","name":"充电","value":3},{"dataType":"ENUM","name":"静音","value":4},{"dataType":"ENUM","name":"标准","value":5},{"dataType":"ENUM","name":"强力","value":6},{"dataType":"ENUM","name":"地毯","value":7},{"dataType":"ENUM","name":"杀菌","value":8},{"dataType":"ENUM","name":"延边","value":9}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PauseSwitch","name":"暂停开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1296701859', 'CoSee', '大屏投放终端', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"RemoteControl","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"message","name":"遥控信息","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"远程遥控"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"设备地理位置","identifier":"GeoLocation","name":"地理位置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"遥控处理结果","eventType":"INFO_EVENT_TYPE","identifier":"ControlResult","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"function","name":"功能名称","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"error","value":0},{"dataType":"BOOL","name":"success","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"success","name":"处理结果","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"errorMessage","name":"错误消息","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"显示内容更新","eventType":"INFO_EVENT_TYPE","identifier":"RefreshSchedule","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"更新失败","value":0},{"dataType":"ENUM","name":"更新成功","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"更新结果","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"设备异常告警","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"errorCode","name":"异常类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"error","name":"异常详情","paraOrder":1}],"required":false}]}'), -('1692347065', '0', '1336645850', 'ToiletSeat', '马桶', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"Flush","name":"冲水","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '135348207', 'Lamp', '灯控开关', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"StopCountdown","inputParams":[],"outputParams":[],"required":true,"serviceName":"停止倒计时"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"4000","min":"0","precise":7,"step":"0.01","unit":"W","unitName":"瓦特"},"dataType":"DOUBLE","description":"","identifier":"CurrentPower","name":"当前功率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"16","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"Current","name":"当前电流","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1353677821', 'Watch', '手表', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '1359078486', 'PetFeeder', '宠物喂食机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","description":"","identifier":"Time","name":"设备时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LEDSwitch","name":"LED开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"RewardButtonSwitch","name":"打赏按钮开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"电源","value":0},{"dataType":"ENUM","name":"电池","value":1}],"dataType":"ENUM","description":"","identifier":"PowerSupplyMode","name":"供电模式","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1376674031', 'PressurePump', '加压泵', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '1378246829', 'PowerSwitch2', '入墙开关2', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_2","name":"开关2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"翻转","value":1}],"dataType":"ENUM","description":"","identifier":"ChangeSwitch_1","name":"翻转1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"翻转","value":1}],"dataType":"ENUM","description":"","identifier":"ChangeSwitch_2","name":"ChangeSwitch_1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"全关","value":0},{"dataType":"BOOL","name":"全开","value":1}],"dataType":"BOOL","description":"","identifier":"SwitchAll","name":"总控","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_1","name":"开关1","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1384287267', 'Dryer', '干衣机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"BacteriostatSwitch","name":"蓝光抑菌开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"1","step":"1","unit":"min","unitName":"分"},"dataType":"DOUBLE","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"NTC短路","value":1},{"dataType":"ENUM","name":"NTC开路","value":2},{"dataType":"ENUM","name":"超温保护","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1402304420', 'LawnMower', '割草机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"开始","value":0},{"dataType":"BOOL","name":"暂停","value":1}],"dataType":"BOOL","identifier":"PauseSwtich","name":"暂停开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"Workingswitch","name":"工作开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","identifier":"BatteryPercentage","name":"电池电量百分比","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"0","step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"200","min":"0","step":"0.01","unit":"㎡","unitName":"平方米"},"dataType":"DOUBLE","identifier":"Area","name":"面积","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"NTC短路","value":1},{"dataType":"ENUM","name":"NTC开路","value":2},{"dataType":"ENUM","name":"超温保护","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1405791337', 'ThreePhaseMeter', '三相电表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"ActiveEnergyCombinedTotal","name":"组合有功总电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"ActiveEnergyImport","name":"正向有功总电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"ActiveEnergyExport","name":"反向有功总电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"ActiveEnergyImportInPhaseL1","name":"A相正向有功电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"ActiveEnergyImportInPhaseL2","name":"B相正向有功电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"99999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"ActiveEnergyImportInPhaseL3","name":"C相正向有功电能","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1426142929', 'SmartBuilding', '智能楼宇', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '142817749', 'AcoustoOpticalarm', '声光报警设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未报警状态","value":0},{"dataType":"BOOL","name":"报警状态","value":1}],"dataType":"BOOL","description":"","identifier":"AlarmStatus","name":"报警控制","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"WirelessModuleStatus","name":"无线转接模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '145665415', 'SideFan', '侧风机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1459148336', 'ECGCard', '心电卡', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"Reset","inputParams":[],"outputParams":[],"required":false,"serviceName":"复位"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999","min":"0","precise":7,"step":"0.01","unit":"mV","unitName":"毫伏"},"dataType":"DOUBLE","description":"","identifier":"ECGSignal","name":"心电信号","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1474789892', 'ElectricMotorcycle', '电动摩托车', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ReBootTerminal","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TerminalID","name":"设备ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SerialNumber","name":"指令编号","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SerialNumber","name":"指令编号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"错误","value":0},{"dataType":"ENUM","name":"失败","value":1},{"dataType":"ENUM","name":"成功","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ExecutingState","name":"执行状态","paraOrder":1}],"required":false,"serviceName":"传输模块复位"},{"callType":"ASYNC","custom":false,"description":"","identifier":"CallCycle","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TerminalID","name":"设备ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SerialNumber","name":"指令编号","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SerialNumber","name":"指令编号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"错误","value":0},{"dataType":"ENUM","name":"失败","value":1},{"dataType":"ENUM","name":"成功","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ExecutingState","name":"执行状态","paraOrder":1}],"required":false,"serviceName":"寻车"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Position","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TerminalID","name":"设备ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SerialNumber","name":"指令编号","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SerialNumber","name":"指令编号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"错误","value":0},{"dataType":"ENUM","name":"失败","value":1},{"dataType":"ENUM","name":"成功","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ExecutingState","name":"执行状态","paraOrder":1}],"required":false,"serviceName":"定位"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"100","precise":0,"step":"1","unit":"m","unitName":"米"},"dataType":"INT","description":"","identifier":"ElectronicFence","name":"电子围栏","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"次数","childSpecsDTO":{"dataType":"INT","max":"10","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Count","name":"震动报警灵敏度"},{"childDataType":"INT","childName":"级别","childSpecsDTO":{"dataType":"INT","max":"16","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Level","name":"震动报警灵敏度"}],"dataType":"STRUCT","description":"","identifier":"VibrateSensitivity","name":"震动报警灵敏度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1677721500","min":"0","precise":0,"step":"1","unit":"m","unitName":"米"},"dataType":"INT","description":"","identifier":"Mileage","name":"里程","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"DefendState","name":"设防状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"静音","value":0},{"dataType":"ENUM","name":"低音量","value":1},{"dataType":"ENUM","name":"高音量","value":2}],"dataType":"ENUM","description":"","identifier":"AlarmVolume","name":"报警器音量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"km/h","unitName":"千米每小时"},"dataType":"INT","description":"","identifier":"Speed","name":"骑行速度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ELock","name":"电门锁","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"EABSLevel","name":"电刹强度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"childName":"使能开关","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"STRUCT","identifier":"EnabledSwitch","name":"移车助力"},{"childDataType":"INT","childName":"陡缓级别","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"SteepSlowLevel","name":"移车助力"}],"dataType":"STRUCT","description":"","identifier":"MoveHelp","name":"移车助力","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"StartStrength","name":"启动强度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"childName":"使能开关","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"STRUCT","identifier":"EnabledSwitch","name":"安全启动"},{"childDataType":"DOUBLE","childName":"进入时间","childSpecsDTO":{"dataType":"DOUBLE","max":"120","min":"1","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"WakeUpTime","name":"安全启动"}],"dataType":"STRUCT","description":"","identifier":"StartSecure","name":"安全启动","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"AutoCruise","name":"自动巡航","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SaveElectricityMode","name":"省电骑行","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerOutSwitch","name":"放电线路开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerInSwitch","name":"充电线路开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SaddleLockSwitch","name":"鞍座锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"BatteryFactoryMode","name":"电池工厂模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"非法移动告警","eventType":"INFO_EVENT_TYPE","identifier":"IllegalMoveWarning","outputData":[],"required":true},{"custom":false,"description":"","eventName":"车辆断电告警","eventType":"INFO_EVENT_TYPE","identifier":"VehiclePowerWarning","outputData":[],"required":false},{"custom":false,"description":"","eventName":"翻倒告警","eventType":"INFO_EVENT_TYPE","identifier":"TurnoverWarning","outputData":[],"required":false},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1477270052', 'Camera', '摄像头', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"StartPTZAction","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"左","value":0},{"dataType":"ENUM","name":"右","value":1},{"dataType":"ENUM","name":"上","value":2},{"dataType":"ENUM","name":"下","value":3},{"dataType":"ENUM","name":"上左","value":4},{"dataType":"ENUM","name":"上右","value":5},{"dataType":"ENUM","name":"下左","value":6},{"dataType":"ENUM","name":"下右","value":7},{"dataType":"ENUM","name":"放大","value":8},{"dataType":"ENUM","name":"缩小","value":9}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"ActionType","name":"动作类型","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"慢速","value":0},{"dataType":"ENUM","name":"中速","value":1},{"dataType":"ENUM","name":"快速","value":2}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Speed","name":"速度","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"开始PTZ控制"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopPTZAction","inputParams":[],"outputParams":[],"required":false,"serviceName":"停止PTZ控制"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartPushStreaming","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"辅码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"码流类型","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"60","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PreTime","name":"提前推流时间","paraOrder":5}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"设备不支持","value":1},{"dataType":"ENUM","name":"设备资源不足","value":2},{"dataType":"ENUM","name":"推流连接失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"推流结果","paraOrder":0}],"required":true,"serviceName":"开始直播"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopPushStreaming","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"辅码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"码流类型","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"停止直播"},{"callType":"ASYNC","custom":false,"description":"","identifier":"TriggerPicCapture","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UploadUrl","name":"上传地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PicID","name":"图片ID","paraOrder":0}],"required":true,"serviceName":"触发设备抓图"},{"callType":"SYNC","custom":false,"description":"","identifier":"StartRecord","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地录像","value":0},{"dataType":"ENUM","name":"云端录像","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"RecordType","name":"录像方式","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"999999","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"RecordDuration","name":"录制时长","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"20","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PreRecordDuration","name":"预录时长","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UploadUrl","name":"上传地址","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"RecordID","name":"录像ID","paraOrder":0}],"required":false,"serviceName":"开始录像"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopRecord","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"RecordID","name":"录像ID","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"停止录像"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVoiceIntercom","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":521},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"IntercomUrl","name":"对讲地址","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Key","name":"加解密秘钥","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加解密类型","paraOrder":2}],"outputParams":[],"required":false,"serviceName":"开始语音对讲"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopVoiceIntercom","inputParams":[],"outputParams":[],"required":false,"serviceName":"停止语音对讲"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopVod","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"停止录像观看"},{"callType":"ASYNC","custom":false,"description":"","identifier":"FormatStorageMedium","inputParams":[],"outputParams":[],"required":false,"serviceName":"格式化存储介质"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Reboot","inputParams":[],"outputParams":[],"required":true,"serviceName":"重启"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVod","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FileName","name":"录像名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":5}],"outputParams":[],"required":true,"serviceName":"开始录像观看"},{"callType":"ASYNC","custom":false,"description":"","identifier":"VoiceMessageDownstream","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"MessageData","name":"语音消息","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"语音消息下发"},{"callType":"ASYNC","custom":false,"description":"","identifier":"P2PSignalDownstream","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Data","name":"信令数据","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"P2P信令下发"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryRecordList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2},{"dataType":"ENUM","name":"所有类型","value":99}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Type","name":"录像类型","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"QuerySize","name":"查询数量","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"录像名","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[15].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"FileName","name":"录像列表"},{"childDataType":"INT","childName":"开始时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[15].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"BeginTime","name":"录像列表"},{"childDataType":"INT","childName":"结束时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[15].outputParams[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"录像列表"},{"childDataType":"TEXT","childName":"文件大小","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[15].outputParams[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"Size","name":"录像列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"childName":"录像类型","dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"dataType":"STRUCT","identifier":"Type","name":"录像列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"RecordList","name":"录像列表","paraOrder":0}],"required":true,"serviceName":"查询录像列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartP2PStreaming","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"StunUrl","name":"STUN服务地址","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SignalUrl","name":"信号服务地址","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"开始P2P直播"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVodByTime","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":6}],"outputParams":[],"required":true,"serviceName":"开始录像按时间观看"},{"callType":"ASYNC","custom":false,"description":"","identifier":"PTZActionControl","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"左","value":0},{"dataType":"ENUM","name":"右","value":1},{"dataType":"ENUM","name":"上","value":2},{"dataType":"ENUM","name":"下","value":3},{"dataType":"ENUM","name":"上左","value":4},{"dataType":"ENUM","name":"上右","value":5},{"dataType":"ENUM","name":"下左","value":6},{"dataType":"ENUM","name":"下右","value":7},{"dataType":"ENUM","name":"放大","value":8},{"dataType":"ENUM","name":"缩小","value":9}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"ActionType","name":"动作类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"10","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"Step","name":"步进量","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"PTZ步进控制"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryRecordTimeList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"QuerySize","name":"查询数量","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2},{"dataType":"ENUM","name":"所有类型","value":99}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Type","name":"录像类型","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"开始时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[19].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"BeginTime","name":"时间列表"},{"childDataType":"INT","childName":"结束时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[19].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"时间列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"childName":"录像类型","dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"dataType":"STRUCT","identifier":"Type","name":"时间列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"TimeList","name":"时间列表","paraOrder":0}],"required":true,"serviceName":"查询录像时间列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"PTZCalibrate","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"完全校准","value":0},{"dataType":"ENUM","name":"水平校准","value":1},{"dataType":"ENUM","name":"垂直校准","value":2}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Direction","name":"方向","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"失败","value":1},{"dataType":"ENUM","name":"不支持","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"校准结果","paraOrder":0}],"required":false,"serviceName":"PTZ校准"},{"callType":"SYNC","custom":false,"description":"月份格式为yyyyMM,如\"201806\"。输出参数为字符串,长度为当月天数,1表示当天有录像,0表示当天无录像。","identifier":"QueryMonthRecord","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":16},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Month","name":"月份","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"RecordFlags","name":"月录像标识","paraOrder":0}],"required":false,"serviceName":"查询设备端月录像"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"StreamVideoQuality","name":"主码流视频质量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"SubStreamVideoQuality","name":"辅码流视频质量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"时间段开始秒数","childSpecsDTO":{"dataType":"INT","max":"86399","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[2].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"BeginTime","name":"报警提醒计划"},{"childDataType":"INT","childName":"时间段结束秒数","childSpecsDTO":{"dataType":"INT","max":"86399","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[2].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"报警提醒计划"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"周日","value":0},{"dataType":"ENUM","name":"周一","value":1},{"dataType":"ENUM","name":"周二","value":2},{"dataType":"ENUM","name":"周三","value":3},{"dataType":"ENUM","name":"周四","value":4},{"dataType":"ENUM","name":"周五","value":5},{"dataType":"ENUM","name":"周六","value":6}],"childName":"每周日期","dataSpecsList":[{"dataType":"ENUM","name":"周日","value":0},{"dataType":"ENUM","name":"周一","value":1},{"dataType":"ENUM","name":"周二","value":2},{"dataType":"ENUM","name":"周三","value":3},{"dataType":"ENUM","name":"周四","value":4},{"dataType":"ENUM","name":"周五","value":5},{"dataType":"ENUM","name":"周六","value":6}],"dataType":"STRUCT","identifier":"DayOfWeek","name":"报警提醒计划"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","description":"报警时间段列表,其中的BeginTine和EndTime分别代表时间段开始和结束的秒数,0表示00:00:00,86399表示23:59:59","identifier":"AlarmNotifyPlan","name":"报警提醒计划","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"AlarmSwitch","name":"报警开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"MotionDetectSensitivity","name":"移动侦测灵敏度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"VoiceDetectionSensitivity","name":"声音侦测灵敏度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低频","value":0},{"dataType":"ENUM","name":"中频","value":1},{"dataType":"ENUM","name":"高频","value":2}],"dataType":"ENUM","description":"","identifier":"AlarmFrequencyLevel","name":"报警频率","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"MicSwitch","name":"麦克风开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SpeakerSwitch","name":"扬声器开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"StatusLightSwitch","name":"状态灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常状态","value":0},{"dataType":"ENUM","name":"翻转状态","value":1}],"dataType":"ENUM","description":"","identifier":"ImageFlipState","name":"画面翻转状态","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"不录像","value":0},{"dataType":"ENUM","name":"事件录像","value":1},{"dataType":"ENUM","name":"全天录像","value":2}],"dataType":"ENUM","description":"","identifier":"StorageRecordMode","name":"存储介质录像模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未插卡","value":0},{"dataType":"ENUM","name":"正常","value":1},{"dataType":"ENUM","name":"未格式化","value":2},{"dataType":"ENUM","name":"正在格式化","value":3}],"dataType":"ENUM","description":"","identifier":"StorageStatus","name":"存储介质状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"白天模式","value":0},{"dataType":"ENUM","name":"夜晚模式","value":1},{"dataType":"ENUM","name":"自动模式","value":2}],"dataType":"ENUM","description":"","identifier":"DayNightMode","name":"日夜模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"INT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","description":"","identifier":"EncryptTypeList","name":"加密类型列表","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"EncryptSwitch","name":"视频加密开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","precise":7,"step":"0.01","unit":"MB","unitName":"兆字节"},"dataType":"DOUBLE","description":"","identifier":"StorageTotalCapacity","name":"总存储空间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","precise":7,"step":"0.01","unit":"MB","unitName":"兆字节"},"dataType":"DOUBLE","description":"","identifier":"StorageRemainCapacity","name":"剩余存储空间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"VoiceIntercomType","name":"语音对讲类型列表","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"AlarmPromptSwitch","name":"报警提示开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"IpcVersion","name":"摄像机版本号","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不支持","value":0},{"dataType":"BOOL","name":"支持","value":1}],"dataType":"BOOL","description":"","identifier":"PreRecordSupport","name":"是否支持预录","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不支持","value":0},{"dataType":"BOOL","name":"支持","value":1}],"dataType":"BOOL","description":"","identifier":"DirectUploadSupport","name":"是否支持直存","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"全部支持","value":0},{"dataType":"ENUM","name":"OSS","value":1},{"dataType":"ENUM","name":"HTTP2","value":2}],"dataType":"ENUM","description":"","identifier":"UploadPictureType","name":"图片传输类型","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"VideoCustomData","name":"视频自定义数据","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"侦测报警","eventType":"ALERT_EVENT_TYPE","identifier":"AlarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"宠物侦测","value":4},{"dataType":"ENUM","name":"越界侦测","value":5},{"dataType":"ENUM","name":"区域入侵侦测","value":6},{"dataType":"ENUM","name":"跌倒侦测","value":7},{"dataType":"ENUM","name":"人脸检测","value":8},{"dataType":"ENUM","name":"笑脸检测","value":9},{"dataType":"ENUM","name":"异响侦测","value":10},{"dataType":"ENUM","name":"哭声侦测","value":11},{"dataType":"ENUM","name":"笑声侦测","value":12},{"dataType":"ENUM","name":"火警侦测","value":13},{"dataType":"ENUM","name":"人群聚集","value":14},{"dataType":"ENUM","name":"人流统计","value":15}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"告警类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlarmPicID","name":"报警抓图ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"告警内容","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0},{"dataType":"ENUM","name":"网络异常","value":1},{"dataType":"ENUM","name":"存储介质异常","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"P2P信令上报","eventType":"INFO_EVENT_TYPE","identifier":"P2PSignalUpstream","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"信令数据","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"图片上传结果","eventType":"INFO_EVENT_TYPE","identifier":"PicUploadResult","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"网络异常","value":1},{"dataType":"ENUM","name":"鉴权错误","value":2},{"dataType":"ENUM","name":"文件内容错误","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"上传结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ErrorMessage","name":"错误描述","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PicInfo","name":"图片信息","paraOrder":2}],"required":false},{"custom":false,"description":"","eventName":"设备智能事件","eventType":"INFO_EVENT_TYPE","identifier":"IntelligentEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"人流统计","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"EventType","name":"事件类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"EventPicID","name":"图片ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"事件内容","paraOrder":2}],"required":false},{"custom":false,"description":"","eventName":"智能告警","eventType":"ALERT_EVENT_TYPE","identifier":"IntelligentAlarm","outputData":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"口罩识别","value":11017},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"客流统计","value":14001},{"dataType":"ENUM","name":"行为识别","value":11021}],"childName":"告警类型","dataSpecsList":[{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"口罩识别","value":11017},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"客流统计","value":14001},{"dataType":"ENUM","name":"行为识别","value":11021}],"dataType":"STRUCT","identifier":"AlarmType","name":"事件列表"},{"childDataType":"TEXT","childName":"图片ID","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[5].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicID","name":"事件列表"},{"childDataType":"INT","childName":"图片大小","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"1","step":"1","unit":"Byte","unitName":"字节"},"dataSpecs":{"$ref":"$.events[5].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicSize","name":"事件列表"},{"childDataType":"DATE","childName":"告警时间","childSpecsDTO":{"dataType":"DATE"},"dataSpecs":{"$ref":"$.events[5].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"EventTime","name":"事件列表"},{"childDataType":"TEXT","childName":"告警内容","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.events[5].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"Data","name":"事件列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"EventList","name":"事件列表","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"电量低告警","eventType":"ALERT_EVENT_TYPE","identifier":"LowBatteyEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"BatteryLevel","name":"电量水平","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1509292878', 'SmartHome', '全屋智能', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '1515273093', 'DrinkingFoundation', '饮水机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"低液位","value":0},{"dataType":"BOOL","name":"高液位","value":1}],"dataType":"BOOL","description":"","identifier":"WaterLevel","name":"饮水机液位","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"WirelessModelStatus","name":"无线转接模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1544429125', 'ParkHDDetectMachine', '车位传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"135_c_1","identifier":"Car_number_1","name":"1号车牌","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"135_c_2","identifier":"Car_number_2","name":"2号车牌","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"135_c_3","identifier":"Car_number_3","name":"3号车牌","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","description":"135_o_1","identifier":"Parking_1","name":"1号车位状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","description":"135_o_2","identifier":"Parking_2","name":"2号车位状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","description":"135_o_3","identifier":"Parking_3","name":"3号车位状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"135_pic","identifier":"Pic_name","name":"识别照片","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1553705130', 'Massage chair', '按摩椅', '{"services":[{"callType":"SYNC","custom":false,"description":"批量库存查询","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"SYNC","custom":false,"description":"单个库存查询","identifier":"getInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"c","name":"库存","paraOrder":0}],"required":true,"serviceName":"单个库存查询"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"下单的数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"},{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"库存","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"增加库存"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '1560196166', 'ParkingDetector', '车位检测器', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"CtrlCommand","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"重置无车","value":0},{"dataType":"ENUM","name":"重置标尺","value":1},{"dataType":"ENUM","name":"关机","value":2},{"dataType":"ENUM","name":"强制重启","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"CommandType","name":"指令类型","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"控制指令"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","description":"","identifier":"ParkingState","name":"车位状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","description":"","identifier":"Version","name":"固件版本号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"127","min":"-127","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"车位状态变化上报","eventType":"INFO_EVENT_TYPE","identifier":"ParkingChangeNotification","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"出车","value":0},{"dataType":"BOOL","name":"入车","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"ParkingEvent","name":"车位事件","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"心跳事件上报","eventType":"INFO_EVENT_TYPE","identifier":"HeartbeatNotification","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"ParkingState","name":"车位状态","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"4.5","min":"2.5","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"VoltageValue","name":"电压值","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1563344800', 'LightEnsor', '光照传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"单位,为lux,请补充并修改","identifier":"Light","name":"光照度","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1567750932', 'BreadMachine', '面包机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"预约中","value":2},{"dataType":"ENUM","name":"保温中","value":3},{"dataType":"ENUM","name":"预热中","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"浅","value":0},{"dataType":"ENUM","name":"标准","value":1},{"dataType":"ENUM","name":"深","value":2}],"dataType":"ENUM","description":"","identifier":"Color","name":"烤色","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2000","min":"500","precise":0,"step":"1","unit":"g","unitName":"克"},"dataType":"INT","description":"","identifier":"Weight","name":"重量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WarmDuration","name":"保温时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"15","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"MixedMode","name":"搅拌模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"230","min":"70","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"230","min":"90","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地食谱","value":1},{"dataType":"ENUM","name":"云食谱","value":2}],"dataType":"ENUM","description":"","identifier":"RecipeInformation","name":"食谱信息","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentTime","name":"预约时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1581112316', 'Scene', '场景面板', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"DeleteScene","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"SceneID","name":"场景ID","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"删除场景"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-127","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"场景无触发","value":0},{"dataType":"BOOL","name":"场景触发","value":1}],"dataType":"BOOL","description":"","identifier":"SceneTrigger","name":"场景触发","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","description":"","identifier":"SceneName","name":"场景名称","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"场景无触发","value":0},{"dataType":"BOOL","name":"场景触发","value":1}],"dataType":"BOOL","description":"","identifier":"SceneTrigger_1","name":"场景触发_1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"场景无触发","value":0},{"dataType":"BOOL","name":"场景触发","value":1}],"dataType":"BOOL","description":"","identifier":"SceneTrigger_2","name":"场景触发_2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"场景无触发","value":0},{"dataType":"BOOL","name":"场景触发","value":1}],"dataType":"BOOL","description":"","identifier":"SceneTrigger_3","name":"场景触发_3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"场景无触发","value":0},{"dataType":"BOOL","name":"场景触发","value":1}],"dataType":"BOOL","description":"","identifier":"SceneTrigger_4","name":"场景触发_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","description":"","identifier":"SceneName_1","name":"场景名称_1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","description":"","identifier":"SceneName_2","name":"场景名称_2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","description":"","identifier":"SceneName_3","name":"场景名称_3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","description":"","identifier":"SceneName_4","name":"场景名称_4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"ScreenLevel","name":"场景面板亮度","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1586373670', 'BroadcastController', '广播主机', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ReceiveEvents","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EventID","name":"事件编号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"EventTime","name":"事件发生时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EventCode","name":"事件类型编号","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EventPos","name":"事件位置编号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"执行成功","value":0},{"dataType":"ENUM","name":"执行失败","value":1},{"dataType":"ENUM","name":"预留","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ReturnCode","name":"返回码","paraOrder":0}],"required":false,"serviceName":"事件触发"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1601288803', 'AttendanceMachine', '考勤机', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ToggleLightSwitch","inputParams":[],"outputParams":[],"required":false,"serviceName":"翻转主灯开关"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","description":"","identifier":"ProvinceCode","name":"省份编码","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","description":"","identifier":"SerialNumber","name":"流水号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":36},"dataType":"TEXT","description":"","identifier":"SchoolID","name":"学校ID","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":20},"dataType":"TEXT","description":"","identifier":"DeviceCode","name":"设备编码","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":20},"dataType":"TEXT","description":"","identifier":"CardID","name":"卡号ID","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","description":"","identifier":"CardTime","name":"刷卡时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"进校","value":0},{"dataType":"ENUM","name":"离校","value":1}],"dataType":"ENUM","description":"","identifier":"AttendanceState","name":"考勤状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","description":"","identifier":"AttendanceTimeNotification","name":"上报考勤时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"MACAddress","name":"MAC地址","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"AttendancePictureAddress","name":"考勤图片地址","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":20},"dataType":"TEXT","description":"","identifier":"ClassID","name":"班级ID","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":20},"dataType":"TEXT","description":"","identifier":"DataUpdateTime","name":"数据同步频率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"普通模式","value":0},{"dataType":"ENUM","name":"考试模式","value":1},{"dataType":"ENUM","name":"紧急模式","value":2}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"PlatformURL","name":"平台链接","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"VoiceMailURL","name":"语音留言链接","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '161077076', 'HIKVISIONEdgeServer', '海康边缘服务器', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"UnSubscribeEvent","inputParams":[{"custom":false,"dataSpecs":{"childDataType":"INT","customFlag":true,"dataSpecs":{"dataType":"INT","step":"1"},"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_INPUT","identifier":"EventTypes","name":"事件类型","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"取消事件订阅"},{"callType":"SYNC","custom":false,"description":"","identifier":"SubscribeEvent","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EventTypes","name":"事件类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EventDest","name":"指定事件接收地址","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SubType","name":"订阅类型","paraOrder":2},{"custom":false,"dataSpecs":{"childDataType":"INT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_INPUT","identifier":"EventLevel","name":"事件等级","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"订阅事件"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetEventSubscription","inputParams":[],"outputParams":[],"required":false,"serviceName":"查询事件订阅信息"}],"properties":[],"events":[{"custom":false,"description":"","eventName":"AI事件","eventType":"INFO_EVENT_TYPE","identifier":"AIEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"EventContent","name":"事件信息","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1612153636', 'FishTank', '鱼缸', '{"services":[{"callType":"ASYNC","custom":false,"identifier":"WaterTemp_Control","inputParams":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243799,"name":"升温","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243800,"name":"降温","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"mode","name":"工作模式","paraOrder":0},{"custom":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234593,"max":"100","min":"0","step":"0.1","unit":"min"},"dataType":"FLOAT","direction":"PARAM_INPUT","identifier":"step","name":"步长_升高一度需要分钟数","paraOrder":1},{"custom":false,"dataSpecs":{"custom":true,"dataType":"INT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234594,"max":"6","min":"0","step":"1"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"SwitchNo","name":"开关","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243801,"name":"失败","value":0},{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243802,"name":"成功","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"result","name":"执行结果","paraOrder":0}],"required":false,"serviceName":"水温温度调节"},{"callType":"ASYNC","custom":false,"identifier":"EnvTemp_Control","inputParams":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243803,"name":"升温","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243804,"name":"降温","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"mode","name":"工作模式","paraOrder":0},{"custom":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234595,"max":"100","min":"0","step":"0.1","unit":"min"},"dataType":"FLOAT","direction":"PARAM_INPUT","identifier":"step","name":"步长_升高一度需要分钟数","paraOrder":1},{"custom":false,"dataSpecs":{"custom":true,"dataType":"INT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234596,"max":"6","min":"0","step":"1"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"SwitchNo","name":"开关","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243805,"name":"失败","value":0},{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243806,"name":"成功","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"result","name":"执行结果","paraOrder":0}],"required":false,"serviceName":"环境温度调节"},{"callType":"ASYNC","custom":false,"identifier":"EnvHumidity_Control","inputParams":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243807,"name":"增加湿度","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243808,"name":"降低湿度","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"mode","name":"工作模式","paraOrder":0},{"custom":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234597,"max":"100","min":"0","step":"0.1","unit":"min"},"dataType":"FLOAT","direction":"PARAM_INPUT","identifier":"step","name":"步长_升高1个百分比需要的分钟数","paraOrder":1},{"custom":false,"dataSpecs":{"custom":true,"dataType":"INT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234598,"max":"6","min":"0","step":"1"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"SwitchNo","name":"开关","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243809,"name":"失败","value":0},{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243810,"name":"成功","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"result","name":"执行结果","paraOrder":0}],"required":false,"serviceName":"环境湿度调节"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"Temperature","name":"温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"照明开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"水温","identifier":"WaterTemperature","name":"水温","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"WaterTemp_High_Threshold","name":"水温高温报警阈值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"WaterTemp_Low_Threshold","name":"水温低温报警阈值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234576,"max":"100","min":"0","step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","identifier":"EnvTemperature","name":"环境温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"EnvTemp_High_Threshold","name":"环境高温报警阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234578,"max":"100","min":"0","step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","identifier":"EnvTemp_Low_Threshold","name":"环境低温报警阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234579,"max":"100","min":"0","step":"0.1","unit":"°","unitName":"度"},"dataType":"FLOAT","identifier":"EnvHumidity","name":"环境湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234580,"max":"100","min":"0","step":"0.1","unit":"°","unitName":"度"},"dataType":"FLOAT","identifier":"EnvHumidity_High_Threshold","name":"环境湿度高报警阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"°","unitName":"度"},"dataType":"FLOAT","description":"","identifier":"EnvHumidity_Low_Threshold","name":"环境湿度低报警阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"BOOL","childEnumSpecsDTO":[{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243792,"name":"关","value":0},{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243793,"name":"开","value":1}],"childName":"开关状态","dataSpecsList":[{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243792,"name":"关","value":0},{"custom":true,"dataType":"BOOL","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243793,"name":"开","value":1}],"dataType":"STRUCT","identifier":"switch","isStd":0,"name":"开关"},{"childDataType":"TEXT","childName":"别名","childSpecsDTO":{"custom":true,"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.properties[11].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"nickName","isStd":0,"name":"开关"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243794,"name":"手动模式","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243795,"name":"定时模式","value":1},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243796,"name":"周期模式","value":2},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243797,"name":"恒温模式","value":3},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243798,"name":"恒湿模式","value":4}],"childName":"工作模式","dataSpecsList":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243794,"name":"手动模式","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243795,"name":"定时模式","value":1},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243796,"name":"周期模式","value":2},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243797,"name":"恒温模式","value":3},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243798,"name":"恒湿模式","value":4}],"dataType":"STRUCT","identifier":"WorkMode","isStd":0,"name":"开关"},{"childDataType":"TEXT","childName":"定时模式参数","childSpecsDTO":{"custom":true,"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[11].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"timing","isStd":0,"name":"开关"},{"childDataType":"TEXT","childName":"周期模式","childSpecsDTO":{"custom":true,"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.properties[11].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"period","isStd":0,"name":"开关"},{"childDataType":"TEXT","childName":"恒温模式参数","childSpecsDTO":{"custom":true,"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.properties[11].dataSpecs.dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"const_temp","isStd":0,"name":"开关"},{"childDataType":"TEXT","childName":"恒湿模式参数","childSpecsDTO":{"custom":true,"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.properties[11].dataSpecs.dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"const_humidity","isStd":0,"name":"开关"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"不执行","value":0},{"dataType":"BOOL","name":"执行","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"不执行","value":0},{"dataType":"BOOL","name":"执行","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"开关"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","description":"","identifier":"Socket","name":"开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"INT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234582,"max":"3000","min":"0","step":"1","unitName":"无"},"dataType":"INT","identifier":"TDS","name":"TDS值","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"INT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234583,"max":"3000","min":"0","step":"1"},"dataType":"INT","identifier":"TDS_High_Threshold","name":"TDS高值报警阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234584,"max":"14","min":"0","step":"0.1","unitName":"无"},"dataType":"FLOAT","identifier":"PH_Low_Threshold","name":"PH低值报警阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"INT","max":"10000","min":"0","precise":0,"step":"1","unit":"W"},"dataType":"INT","description":"","identifier":"CurrentPowerConsumption","name":"当前功耗","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"°"},"dataType":"DOUBLE","description":"","identifier":"ElectricityConsumption","name":"用电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234587,"max":"14","min":"0","step":"0.1"},"dataType":"FLOAT","identifier":"PH","name":"PH","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234588,"max":"14","min":"0","step":"0.1"},"dataType":"FLOAT","identifier":"PH_High_Threshold","name":"PH高值报警阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"INT","max":"525600","min":"0","precise":0,"step":"1","unit":"min"},"dataType":"INT","description":"","identifier":"RunningTimeOfEquipment","name":"设备运行时长","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"DOUBLE","max":"630000","min":"0","precise":7,"step":"0.01","unit":"mA"},"dataType":"DOUBLE","description":"","identifier":"Current","name":"当前电流","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"custom":true,"dataType":"DOUBLE","max":"36","min":"0","precise":7,"step":"0.01","unit":"V"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"温度报警","eventType":"INFO_EVENT_TYPE","identifier":"TemperatureAlarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0},{"dataType":"ENUM","name":"高温报警","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"报警类型","paraOrder":0}],"required":false},{"custom":false,"eventName":"TDS报警","eventType":"ALERT_EVENT_TYPE","identifier":"TDSAlarm","outputData":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243811,"name":"正常","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243812,"name":"高","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"报警类型","paraOrder":0},{"custom":false,"dataSpecs":{"custom":true,"dataType":"INT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234599,"max":"30000","min":"0","step":"1"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"TDS","name":"TDS","paraOrder":1}],"required":false},{"custom":false,"description":"","eventName":"水温报警","eventType":"ALERT_EVENT_TYPE","identifier":"WaterTemperatureAlarm","outputData":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","name":"正常","value":0},{"custom":true,"dataType":"ENUM","name":"高温异常","value":1},{"custom":true,"dataType":"ENUM","name":"低温异常","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"报警类型","paraOrder":0},{"custom":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","max":"100","min":"0","step":"0.1","unit":"°C"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"Temperature","name":"当前温度","paraOrder":1}],"required":true},{"custom":false,"eventName":"环境湿度报警","eventType":"ALERT_EVENT_TYPE","identifier":"EnvironmentalHumidityAlarm","outputData":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243816,"name":"正常","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243817,"name":"高湿报警","value":1},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243818,"name":"低湿报警","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"报警类型","paraOrder":0},{"custom":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234601,"max":"100","min":"0","step":"0.1","unit":"%"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"Humidity","name":"当前湿度","paraOrder":1}],"required":false},{"custom":false,"eventName":"环境温度报警","eventType":"ALERT_EVENT_TYPE","identifier":"EnvironmentalTemperatureAlarm","outputData":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243819,"name":"正常","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243820,"name":"高温报警","value":1},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243821,"name":"低温报警","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"报警类型","paraOrder":0},{"custom":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234602,"max":"100","min":"0","step":"0.1","unit":"°C"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"Temperature","name":"当前温度","paraOrder":1}],"required":false},{"custom":false,"eventName":"PH告警","eventType":"ALERT_EVENT_TYPE","identifier":"PHAlarm","outputData":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243822,"name":"正常","value":0},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243823,"name":"高","value":1},{"custom":true,"dataType":"ENUM","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":4243824,"name":"低","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"报警类型","paraOrder":0},{"custom":false,"dataSpecs":{"custom":true,"dataType":"FLOAT","gmtCreate":1557121343000,"gmtModified":1557121343000,"id":3234603,"max":"14","min":"0","step":"0.1"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"PH","name":"PH","paraOrder":1}],"required":false},{"custom":false,"description":"","eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"custom":true,"dataType":"ENUM","name":"正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1616059491', 'DOSensor', '溶解氧监测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '162131070', 'PressureBlower', '正压送风机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1621761522', 'ActiveVehMaintenance', '车辆主动维护', '{"services":[{"callType":"ASYNC","custom":false,"identifier":"ReCenterOpMessage","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"10000","value":0},{"dataType":"ENUM","name":"10001","value":1},{"dataType":"ENUM","name":"10002","value":2},{"dataType":"ENUM","name":"10003","value":3},{"dataType":"ENUM","name":"10004","value":4},{"dataType":"ENUM","name":"10005","value":5},{"dataType":"ENUM","name":"10007","value":7},{"dataType":"ENUM","name":"10009","value":9},{"dataType":"ENUM","name":"10010","value":10},{"dataType":"ENUM","name":"10011","value":11},{"dataType":"ENUM","name":"10012","value":12}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"ReCenterMessageType","name":"消息类型","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"救援消息推送"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"是","value":0},{"dataType":"BOOL","name":"否","value":1}],"dataType":"BOOL","identifier":"CollideStatus","name":"碰撞状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无事故","value":0},{"dataType":"ENUM","name":"一般事故","value":1},{"dataType":"ENUM","name":"较大事故","value":2},{"dataType":"ENUM","name":"重大事故","value":3},{"dataType":"ENUM","name":"特别重大事故","value":4}],"dataType":"ENUM","identifier":"CollideLevels","name":"碰撞等级","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"Invalid","value":0},{"dataType":"ENUM","name":"Preview","value":1},{"dataType":"ENUM","name":"Record","value":2},{"dataType":"ENUM","name":"Off","value":3}],"dataType":"ENUM","identifier":"FcRecordState","name":"前置摄像头录制状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"False","value":0},{"dataType":"BOOL","name":"Ture","value":1}],"dataType":"BOOL","identifier":"IcRecordAudio","name":"内置是否开启录音","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"Off","value":0},{"dataType":"ENUM","name":"Low","value":1},{"dataType":"ENUM","name":"Mid","value":2},{"dataType":"ENUM","name":"High","value":3}],"dataType":"ENUM","identifier":"FcwSensibility","name":"前车预警灵敏度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"Off","value":0},{"dataType":"ENUM","name":"Low","value":1},{"dataType":"ENUM","name":"Mid","value":2},{"dataType":"ENUM","name":"High","value":3}],"dataType":"ENUM","identifier":"Ldw","name":"车道偏离","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"AdasSwitch","name":"adas开关","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"BtSwitch","name":"车载蓝牙开关","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"DriveModeSwitch","name":"行车模式开关","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"WatchDogSwitch","name":"电子狗开关","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"eventName":"水平碰撞","eventType":"ERROR_EVENT_TYPE","identifier":"CrashEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"CrashAccP","name":"加速度峰值","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"CrashAccE","name":"加速度原始值","paraOrder":1}],"required":false},{"custom":false,"eventName":"翻车","eventType":"ERROR_EVENT_TYPE","identifier":"RolloverEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"RolloverAccP","name":"加速度峰值","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"RolloverAccE","name":"加速度原始值","paraOrder":1}],"required":false},{"custom":false,"eventName":"车辆稳定性","eventType":"ALERT_EVENT_TYPE","identifier":"StabilityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"StabilityAccP","name":"加速度峰值","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"2000","min":"-2000","precise":7,"step":"0.1","unit":"m/s²","unitName":"米每二次方秒"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"StabilityAccE","name":"加速度原始值","paraOrder":1}],"required":false}]}'), -('1692347065', '0', '1625629409', 'HVACExtController', 'HVAC外接控制器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"解锁","value":0},{"dataType":"BOOL","name":"锁定","value":1}],"dataType":"BOOL","identifier":"LockSwitch","name":"锁定开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"低速","value":1},{"dataType":"ENUM","name":"中速","value":2},{"dataType":"ENUM","name":"高速","value":3}],"dataType":"ENUM","identifier":"WindSpeed","name":"风速","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-100","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-100","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"送风地暖","value":0},{"dataType":"ENUM","name":"送风","value":1},{"dataType":"ENUM","name":"制冷","value":2},{"dataType":"ENUM","name":"制热","value":3},{"dataType":"ENUM","name":"地暖","value":4},{"dataType":"ENUM","name":"双制热","value":5}],"dataType":"ENUM","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1634053674', 'N4DeviceType', 'N4设备', '{"services":[],"properties":[],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1634551014', 'WaterDetector', '水浸报警器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-127","precise":7,"step":"0.01","unit":"dBm","unitName":"分贝毫瓦"},"dataType":"DOUBLE","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"有水浸入","value":1}],"dataType":"ENUM","description":"","identifier":"WaterSensorState","name":"水浸检测状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"当设备被撬时,上报该事件","eventName":"防撬报警","eventType":"INFO_EVENT_TYPE","identifier":"TamperAlarm","outputData":[],"required":false},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1634625534', 'CirculatingFan', '环流风机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1645805567', 'IntelligentLitterBox', '智能猫砂盆', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"NightLightSwitch","name":"小夜灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"空闲","value":0},{"dataType":"ENUM","name":"清理","value":1},{"dataType":"ENUM","name":"清空","value":2},{"dataType":"ENUM","name":"重置","value":3}],"dataType":"ENUM","identifier":"RunningState","name":"运行状态","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1664464678', 'PHDetector', '酸碱度检测计', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"PH","name":"PH","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1671459452', 'Curtain_motor', '窗帘电机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"pt","name":"打开百分比","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"cts","name":"窗帘伸缩","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1692178091', 'Smart_Neck_Massage', '智能颈部按摩仪', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"GetStates","inputParams":[],"outputParams":[],"required":false,"serviceName":"获取设备状态"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","description":"","identifier":"increase_speed","name":"加速","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","description":"","identifier":"decrease_speed","name":"减速","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"BinarySwitch","name":"二进制开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"250","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"EnumerationLevel","name":"模式档位","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"设备故障","eventType":"INFO_EVENT_TYPE","identifier":"Error_alarm","outputData":[],"required":false}]}'), -('1692347065', '0', '1699889055', 'ManholesCoverShiftDetection', '井盖移位检测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"BatteryLevel","name":"电池电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"井盖打开","value":1}],"dataType":"ENUM","description":"","identifier":"CoverState","name":"井盖状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"180","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"","identifier":"SafetyAngleThreshold","name":"安全角度阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"180","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"","identifier":"TiltValue","name":"井盖倾斜度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1700881360', 'DishWasher', '洗碗机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"空挡","value":0},{"dataType":"ENUM","name":"自动洗","value":1},{"dataType":"ENUM","name":"强力洗","value":2},{"dataType":"ENUM","name":"标准洗","value":3},{"dataType":"ENUM","name":"节能洗","value":4},{"dataType":"ENUM","name":"玻璃洗","value":5},{"dataType":"ENUM","name":"一小时洗","value":6},{"dataType":"ENUM","name":"超快洗","value":7},{"dataType":"ENUM","name":"预冲洗","value":8}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未洗涤","value":0},{"dataType":"ENUM","name":"预洗","value":1},{"dataType":"ENUM","name":"主洗","value":2},{"dataType":"ENUM","name":"漂洗","value":3},{"dataType":"ENUM","name":"干燥","value":4},{"dataType":"ENUM","name":"结束","value":5}],"dataType":"ENUM","description":"","identifier":"WorkStage","name":"工作阶段","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"KeepDryFunction","name":"保管功能","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"KeepDryRemainingTime","name":"保管剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"255","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentTime","name":"预约时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"DoorOpeningState","name":"门打开状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"TotalWashCount","name":"总洗涤次数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"255.9","min":"0","precise":7,"step":"0.01","unit":"L","unitName":"升"},"dataType":"DOUBLE","description":"","identifier":"SingleWaterConsumption","name":"单次耗水量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2.55","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"SinglePowerConsumption","name":"单次耗电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"65535.9","min":"0","precise":7,"step":"0.01","unit":"L","unitName":"升"},"dataType":"DOUBLE","description":"","identifier":"TotalWaterConsumption","name":"耗水总量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"65535.99","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"TotalPowerConsumption","name":"耗电总量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"预约中","value":2},{"dataType":"ENUM","name":"保温中","value":3},{"dataType":"ENUM","name":"预热中","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"空闲中","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"暂停","value":2}],"dataType":"ENUM","description":"","identifier":"Large_Work_Status","name":"大槽工作状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"空闲中","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"暂停","value":2}],"dataType":"ENUM","description":"","identifier":"Small_Work_Status","name":"小槽工作状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"普通洗碗","value":0},{"dataType":"ENUM","name":"普通果蔬","value":1},{"dataType":"ENUM","name":"高温除菌","value":2},{"dataType":"ENUM","name":"超声波","value":3},{"dataType":"ENUM","name":"智能模式","value":4}],"dataType":"ENUM","description":"","identifier":"Small_Work_Mode","name":"小槽工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"中","value":0},{"dataType":"ENUM","name":"强","value":1},{"dataType":"ENUM","name":"轻","value":2}],"dataType":"ENUM","description":"","identifier":"Large_Clean_Strength","name":"大槽清洗强度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"中","value":0},{"dataType":"ENUM","name":"强","value":1},{"dataType":"ENUM","name":"轻","value":2}],"dataType":"ENUM","description":"","identifier":"Small_Clean_Strength","name":"小槽清洗强度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"中","value":0},{"dataType":"ENUM","name":"高","value":1},{"dataType":"ENUM","name":"低","value":2}],"dataType":"ENUM","description":"","identifier":"Large_Water_Level","name":"大槽水位选择","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"中","value":0},{"dataType":"ENUM","name":"高","value":1},{"dataType":"ENUM","name":"低","value":2}],"dataType":"ENUM","description":"","identifier":"Small_Water_Level","name":"小槽水位选择","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":254},"dataType":"TEXT","description":"","identifier":"Large_Clean_Param","name":"大槽智能清洗参数","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":254},"dataType":"TEXT","description":"","identifier":"Small_Clean_Param","name":"小槽智能清洗参数","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"异常","value":1}],"dataType":"ENUM","description":"","identifier":"SinkDishWasher_Error_Code","name":"水槽洗碗机错误码","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在升级","value":0},{"dataType":"BOOL","name":"正在升级","value":1}],"dataType":"BOOL","description":"","identifier":"OTA_Status","name":"固件升级状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"普通洗碗","value":0},{"dataType":"ENUM","name":"普通果蔬","value":1},{"dataType":"ENUM","name":"高温除菌","value":2},{"dataType":"ENUM","name":"超声波清洗","value":3},{"dataType":"ENUM","name":"智能清洗","value":4}],"dataType":"ENUM","description":"","identifier":"Large_Work_Mode","name":"大槽工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Large_Slot_Switch","name":"大槽开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Small_Slot_Switch","name":"小槽开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"固件升级","eventType":"INFO_EVENT_TYPE","identifier":"ota_status","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在升级","value":0},{"dataType":"BOOL","name":"正在升级","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"OTA_Status","name":"固件升级状态","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1706342023', 'Soilsensor', '土壤传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2000","min":"0","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"airTemp","name":"大棚空气温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"airHumidity","name":"大棚空气湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"soilTemperature","name":"土壤温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"soilHumidity","name":"土壤湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"lightLuxValue","name":"光照度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"655350","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"co2","name":"二氧化碳浓度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"20000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"soilEC","name":"大棚土壤EC值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60000","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"voltage","name":"电源电压","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"soilPH","name":"土壤PH值","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1713505226', 'ParkingLot', '停车场', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"GetAreaList","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"全量","value":0},{"dataType":"ENUM","name":"1级区域","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"type","name":"获取类型","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"获取停车区域列表"},{"callType":"SYNC","custom":false,"description":"","identifier":"AddVehicleInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserName","name":"用户姓名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"CellPhoneNumber","name":"车主手机号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"IdNumber","name":"身份证号","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"没有锁定","value":0},{"dataType":"ENUM","name":"锁定","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StateLocked","name":"锁定状态","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"LockStartExpireTime","name":"锁车起始时间","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"LockEndExpireTime","name":"锁车截止时间","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AccessBarrierListUrl","name":"通行权限道闸列表Url","paraOrder":7}],"outputParams":[],"required":true,"serviceName":"新增车辆信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"DeleteVehicleInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"删除车辆信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"ModifyVehicleInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserName","name":"用户姓名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"IdNumber","name":"身份证号","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"没有锁定","value":0},{"dataType":"ENUM","name":"锁定","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StateLocked","name":"锁定状态","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"LockStartExpireTime","name":"锁车起始时间","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"LockEndExpireTime","name":"锁车截止时间","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AccessBarrierListUrl","name":"通行权限道闸列表Url","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"CellPhoneNumber","name":"用户手机号","paraOrder":7}],"outputParams":[],"required":true,"serviceName":"修改车辆信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetVehicleInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserName","name":"用户姓名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"IdNumber","name":"身份证号","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"不在停车场内","value":0},{"dataType":"ENUM","name":"在停车场内","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"StateParked","name":"驻车状态","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"LockStartExpireTime","name":"锁车起始时间","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"LockEndExpireTime","name":"锁车截止时间","paraOrder":5},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"没有锁定","value":0},{"dataType":"ENUM","name":"锁定","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"StateLocked","name":"锁定状态","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AccessBarrierListUrl","name":"通行权限道闸列表Url","paraOrder":7},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ParkedSpacePK","name":"驻车车位PK","paraOrder":8},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ParkedSpaceDN","name":"驻车车位DN","paraOrder":9},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ParkingAreaPK","name":"驻车区域PK","paraOrder":10},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ParkedAreaDN","name":"驻车区域DN","paraOrder":11},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"CellPhoneNumber","name":"用户手机号","paraOrder":12}],"required":true,"serviceName":"查询车辆信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"CorrectPlateNumber","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"正确车牌号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"RecordID","name":"本地停车系统记录ID","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"车牌号校正"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetBarrierList","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"BarrierListUrl","name":"道闸列表Url","paraOrder":0}],"required":true,"serviceName":"获取道闸列表"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetPlateNumberList","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumberListUrl","name":"车牌号列表Url","paraOrder":0}],"required":true,"serviceName":"查询车牌号列表"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"99999999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"TotalParkSpace","name":"车位总数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"99999999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"RemainParkSpace","name":"余位总数","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"车辆信息变更","eventType":"INFO_EVENT_TYPE","identifier":"UpdateVehicleInfoFromLocal","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserName","name":"用户姓名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"新增","value":0},{"dataType":"ENUM","name":"修改","value":1},{"dataType":"ENUM","name":"删除","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"TypeOperation","name":"操作类型","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"IdNumber","name":"身份证号","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"没有锁定","value":0},{"dataType":"ENUM","name":"锁定","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"StateLocked","name":"锁定状态","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"LockStartExpireTime","name":"锁车起始时间","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"LockEndExpireTime","name":"锁车截止时间","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AccessBarrierListUrl","name":"通行权限道闸列表Url","paraOrder":7}],"required":true}]}'), -('1692347065', '0', '1718257762', 'Sterilizer', '消毒柜', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"FullAutoModeSwitch","name":"全自动模式开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"DryingUpperSwitch","name":"上层烘干开关","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"HumidityUpper","name":"上室湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"IonsSwitch","name":"负离子开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"OzoneUpperSwitch","name":"上室臭氧开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PreserveUpperSwitch","name":"上层保鲜开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SmartMouldproofSwitch","name":"智能防霉开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"300","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"TemperatureLower","name":"下室温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"TempLowerSwitch","name":"下室高温开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"300","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"TemperatureUpper","name":"上室温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"TimerSwitch","name":"预约开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"VigorousDisinfectionUpperSwitch","name":"上层强消毒开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WarmplateLowerSwitch","name":"下室暖盘开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WarmplateUpperSwitch","name":"上室暖盘开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"暂停","value":0},{"dataType":"ENUM","name":"启动","value":1},{"dataType":"ENUM","name":"取消","value":2},{"dataType":"ENUM","name":"取消预约","value":3}],"dataType":"ENUM","description":"","identifier":"Disinfection_Status","name":"消毒柜工作状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"空闲","value":0},{"dataType":"ENUM","name":"消毒","value":1},{"dataType":"ENUM","name":"烘干","value":2},{"dataType":"ENUM","name":"暖碟","value":3},{"dataType":"ENUM","name":"延时解锁","value":4},{"dataType":"ENUM","name":"快洁","value":5},{"dataType":"ENUM","name":"智能消毒","value":6}],"dataType":"ENUM","description":"","identifier":"Disinfection_Mode","name":"消毒柜工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"min","unitName":"分钟"},"dataType":"INT","description":"","identifier":"work_left_time","name":"工作剩余时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"86399","min":"1","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","description":"","identifier":"Start_Timer","name":"定时启动","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在进行固件升级","value":0},{"dataType":"BOOL","name":"正在进行固件升级","value":1}],"dataType":"BOOL","description":"","identifier":"OTA_Status","name":"固件升级状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":254},"dataType":"TEXT","description":"","identifier":"UnableToWorkTimeSlot","name":"碗碟使用时间段","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"传感器故障","value":1},{"dataType":"ENUM","name":"消毒故障","value":2},{"dataType":"ENUM","name":"加热故障","value":3},{"dataType":"ENUM","name":"通讯故障","value":4}],"dataType":"ENUM","description":"","identifier":"Disinfection_Error_Code","name":"消毒柜故障号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"current_temperature","name":"腔体当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurrentHumidity","name":"腔体当前湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"DOUBLE","description":"","identifier":"O3","name":"腔体当前臭氧浓度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"固件升级","eventType":"INFO_EVENT_TYPE","identifier":"ota_status","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在进行固件升级","value":0},{"dataType":"BOOL","name":"正在进行固件升级","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"OTA_Status","name":"固件升级状态","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '1747344870', 'Smoke_sensor', '烟感传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"127","min":"-127","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"lqi","name":"信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"zsta","name":"设备状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"batpt","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1768610760', 'ShowerRoom', '淋浴房', '{"services":[],"properties":[],"events":[]}'); -INSERT INTO "thing_model_template" ("created", "modified", "id", "category_key", "category_name", "thing_model_json") VALUES -('1692347065', '0', '177604041', 'Ice cream machine', '冰淇淋机', '{"services":[{"callType":"SYNC","custom":false,"description":"单个库存查询","identifier":"getInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"c","name":"库存","paraOrder":0}],"required":true,"serviceName":"单个库存查询"},{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"库存","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"增加库存"},{"callType":"SYNC","custom":false,"description":"批量库存查询","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '1776661340', 'NAS', '网络存储器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"DiskTotalCapacity","name":"磁盘总容量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"DiskUsedCapacity","name":"磁盘已用容量","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1778611129', 'AnoxicPooAnoxicPool', '缺氧池缺氧池', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '1804147390', 'AirConditioning', '空调机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_1","name":"当前温度_1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_2","name":"当前温度_2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_3","name":"当前温度_3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_4","name":"当前温度_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_5","name":"当前温度_5","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_6","name":"当前温度_6","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_7","name":"当前温度_7","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_8","name":"当前温度_8","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_9","name":"当前温度_9","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_10","name":"当前温度_10","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_11","name":"当前温度_11","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_12","name":"当前温度_12","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_13","name":"当前温度_13","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_14","name":"当前温度_14","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_15","name":"当前温度_15","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_16","name":"当前温度_16","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_17","name":"当前温度_17","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_18","name":"当前温度_18","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_19","name":"当前温度_19","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature_20","name":"当前温度_20","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_1","name":"目标温度_1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_2","name":"目标温度_2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_3","name":"目标温度_3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_4","name":"目标温度_4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_5","name":"目标温度_5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_6","name":"目标温度_6","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_7","name":"目标温度_7","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_8","name":"目标温度_8","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_9","name":"目标温度_9","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_10","name":"目标温度_10","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_11","name":"目标温度_11","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_12","name":"目标温度_12","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_13","name":"目标温度_13","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_14","name":"目标温度_14","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_15","name":"目标温度_15","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_16","name":"目标温度_16","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_17","name":"目标温度_17","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_18","name":"目标温度_18","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_19","name":"目标温度_19","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"23","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature_20","name":"目标温度_20","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"ChannelCount","name":"中央空调通道数量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"开启","value":1}],"dataType":"ENUM","description":"","identifier":"ECO","name":"ECO","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_1","name":"电源开关_1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_2","name":"电源开关_2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_3","name":"电源开关_3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_4","name":"电源开关_4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_5","name":"电源开关_5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_6","name":"电源开关_6","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_7","name":"电源开关_7","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_8","name":"电源开关_8","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_9","name":"电源开关_9","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_10","name":"电源开关_10","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_11","name":"电源开关_11","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_12","name":"电源开关_12","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_13","name":"电源开关_13","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_14","name":"电源开关_14","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_15","name":"电源开关_15","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_16","name":"电源开关_16","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_17","name":"电源开关_17","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_18","name":"电源开关_18","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_19","name":"电源开关_19","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_20","name":"电源开关_20","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_1","name":"风速_1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_2","name":"风速_2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_3","name":"风速_3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_4","name":"风速_4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_5","name":"风速_5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_6","name":"风速_6","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_7","name":"风速_7","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4}],"dataType":"ENUM","description":"","identifier":"WindSpeed_8","name":"风速_8","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_9","name":"风速_9","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_10","name":"风速_10","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_11","name":"风速_11","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_12","name":"风速_12","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_13","name":"风速_13","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_14","name":"风速_14","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_15","name":"风速_15","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_16","name":"风速_16","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_17","name":"风速_17","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_18","name":"风速_18","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_19","name":"风速_19","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed_20","name":"风速_20","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_1","name":"工作模式_1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_2","name":"工作模式_2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_3","name":"工作模式_3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_4","name":"工作模式_4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_5","name":"工作模式_5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_6","name":"工作模式_6","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_7","name":"工作模式_7","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_8","name":"工作模式_8","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_9","name":"工作模式_9","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_10","name":"工作模式_10","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_11","name":"工作模式_11","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_12","name":"工作模式_12","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_13","name":"工作模式_13","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_14","name":"工作模式_14","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_15","name":"工作模式_15","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_16","name":"工作模式_16","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_17","name":"工作模式_17","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_18","name":"工作模式_18","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_19","name":"工作模式_19","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode_20","name":"工作模式_20","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Blo","name":"干燥","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Ions","name":"健康_负离子","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PTC","name":"电辅_辅热","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Quiet","name":"静音","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Screen","name":"背景灯_屏显","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Sleep","name":"睡眠","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Turbo","name":"强力","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Buzzer","name":"蜂鸣器","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"VerticalSwitch","name":"上下摆风开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"HorizontalSwitch","name":"水平摆风开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"30","min":"16","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"风速","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"4000","min":"0","precise":7,"step":"0.01","unit":"W","unitName":"瓦特"},"dataType":"DOUBLE","description":"","identifier":"CurrentPower","name":"当前功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"PowerConsumption","name":"功耗","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[119].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1826481083', 'SkyWindow', '天窗', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"二进制开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1834880363', 'Fan', '风扇', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"IonsSwitch","name":"负离子开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"OscillatingSwitch","name":"摇头开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ScreenSwitch","name":"屏显开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Humidification","name":"加湿开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"32","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3},{"dataType":"ENUM","name":"最高档","value":4}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"风速","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"缺水","value":1}],"dataType":"BOOL","description":"","identifier":"WaterShortage","name":"加湿缺水","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常风","value":1},{"dataType":"ENUM","name":"自然风","value":2},{"dataType":"ENUM","name":"睡眠风","value":3},{"dataType":"ENUM","name":"静音风","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurrentHumidity","name":"当前湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"TargetHumidity","name":"目标湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭上下扫风","value":0},{"dataType":"BOOL","name":"打开上下扫风","value":1}],"dataType":"BOOL","description":"","identifier":"VerticalAngle","name":"上下扫风","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭左右扫风","value":0},{"dataType":"BOOL","name":"打开左右扫风","value":1}],"dataType":"BOOL","description":"","identifier":"HorizontalAngle","name":"左右扫风","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[14].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启动","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1843577563', 'ParkingBarrier', '停车道闸', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"打开","value":1}],"dataType":"ENUM","description":"","identifier":"BarrierState","name":"道闸状态","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"锁定车辆识别","eventType":"INFO_EVENT_TYPE","identifier":"LockedVehicleRecognition","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumberImageUrl","name":"车牌号照片Url","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"进场","value":0},{"dataType":"ENUM","name":"出场","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Direction","name":"方向","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"通行事件","eventType":"INFO_EVENT_TYPE","identifier":"CarPassEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"普通车辆","value":0},{"dataType":"ENUM","name":"临时车辆","value":1},{"dataType":"ENUM","name":"白名单","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"TypePermission","name":"权限类型","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumberImageUrl","name":"车牌号照片Url","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"OrderNumber","name":"订单编号","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常抬杆","value":0},{"dataType":"ENUM","name":"异常抬杆","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"OpenType","name":"抬杆类型","paraOrder":4},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"进场","value":0},{"dataType":"ENUM","name":"出场","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Direction","name":"方向","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"RecordId","name":"本地停车系统记录ID","paraOrder":6}],"required":true},{"custom":false,"description":"","eventName":"黑名单车辆识别","eventType":"INFO_EVENT_TYPE","identifier":"BlackListRecognition","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumberImageUrl","name":"车牌号照片Url","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"进场","value":0},{"dataType":"ENUM","name":"出场","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Direction","name":"方向","paraOrder":2}],"required":true}]}'), -('1692347065', '0', '1870075423', 'VideoIntercomDoor', '可视对讲机门口机', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"SyncGroupIdAndRoomId","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"groupRoomMappingFileUrl","name":"映射关系文件url","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"同步组号和房间号"},{"callType":"SYNC","custom":false,"description":"","identifier":"NotifyPhoneNumberCheckResult","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"phoneNumber","name":"手机号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"失败","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"checkResult","name":"校验结果","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"下发手机号校验结果"},{"callType":"SYNC","custom":false,"description":"","identifier":"SyncSipNumber","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"sipNumber","name":"sipNumber","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"password","name":"密码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":40,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"sipServerAddr","name":"sipServer地址","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":5,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"sipServerPort","name":"sipServer端口号","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"颁发SipNumber"},{"callType":"SYNC","custom":false,"description":"","identifier":"querySipNumber","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"sipNumber","name":"sipNumber","paraOrder":0}],"required":true,"serviceName":"查询SipNumber"}],"properties":[],"events":[{"custom":false,"description":"","eventName":"校验手机号","eventType":"INFO_EVENT_TYPE","identifier":"checkPhoneNumber","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"phoneNumber","name":"手机号","paraOrder":0}],"required":true},{"custom":false,"description":"源类型为云对讲时,号码为SipNumber。源类型为固话对讲时,号码为手机号","eventName":"开门事件","eventType":"INFO_EVENT_TYPE","identifier":"doorOpenEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"云对讲","value":0},{"dataType":"ENUM","name":"固话对讲","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"sourceType","name":"源类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"number","name":"源号码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"extInfo","name":"附加信息","paraOrder":2}],"required":true}]}'), -('1692347065', '0', '1871643155', 'SmartDoorIntercoms', '门禁对讲机', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"StopPushStreaming","inputParams":[],"outputParams":[],"required":true,"serviceName":"停止直播流"},{"callType":"SYNC","custom":false,"description":"","identifier":"StartPushStreaming","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"辅码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"类型","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PreTime","name":"提前推流时间","paraOrder":5}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"设备不支持","value":1},{"dataType":"ENUM","name":"设备资源不足","value":2},{"dataType":"ENUM","name":"推流连接成功","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"推流结果","paraOrder":0}],"required":true,"serviceName":"开启直播流"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopVoiceIntercom","inputParams":[],"outputParams":[],"required":false,"serviceName":"停止语音对讲"},{"callType":"ASYNC","custom":false,"description":"","identifier":"VoiceMessageDownstream","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"MessageData","name":"语音消息","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"语音消息下发"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVoiceIntercom","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"IntercomUrl","name":"对讲地址","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Key","name":"加解密秘钥","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加解密类型","paraOrder":2}],"outputParams":[],"required":true,"serviceName":"开始语音对讲"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常状态","value":0},{"dataType":"ENUM","name":"翻转状态","value":1}],"dataType":"ENUM","identifier":"ImageFlipState","name":"画面翻转状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"开启","value":1}],"dataType":"ENUM","identifier":"AlarmSwitch","name":"报警开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关","value":0},{"dataType":"ENUM","name":"开","value":1}],"dataType":"ENUM","description":"","identifier":"LockState","name":"门锁状态","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","description":"","identifier":"DoorNumber","name":"呼叫门牌号","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"空闲","value":0},{"dataType":"ENUM","name":"呼叫中","value":1},{"dataType":"ENUM","name":"通话中","value":2}],"dataType":"ENUM","description":"","identifier":"IntercomState","name":"对讲机状态","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"StreamVideoQuality","name":"主码流视频质量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"SubStreamVideoQuality","name":"辅码流视频质量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"MotionDetectSensitivity","name":"移动侦测灵敏度","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"NTC短路","value":1},{"dataType":"ENUM","name":"NTC开路","value":2},{"dataType":"ENUM","name":"超温保护","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1882852284', 'FaceRecognizeDevice', '人脸识别机', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryDataCheckCode","inputParams":[{"custom":false,"dataSpecs":{"dataType":"DATE","unit":"","unitName":"无"},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"CheckTime","name":"校验截止时间戳","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"查询设备数据校验码"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryUserData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserId","name":"用户ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserId","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","unit":"","unitName":"无"},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"EventTime","name":"用户信息事件时间戳","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"FacePicList","name":"图片列表","paraOrder":2},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"图片Md5","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[1].outputParams[3].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"FaceMd5","name":"特征列表"},{"childDataType":"TEXT","childName":"算法Id","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.services[1].outputParams[3].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"特征列表"}],"dataType":"ARRAY","size":100},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"FeatureList","name":"特征列表","paraOrder":3}],"required":true,"serviceName":"查询用户是否存在"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SyncFaceData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FaceDataUrl","name":"人脸数据URL地址","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"同步人脸数据"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"高度","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"人脸库同步确认","eventType":"INFO_EVENT_TYPE","identifier":"OnSync","outputData":[{"custom":false,"dataSpecs":{"dataType":"DATE","unit":"","unitName":"无"},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"SyncTime","name":"同步时间戳","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Payload","name":"透传参数","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"同步成功","value":200},{"dataType":"ENUM","name":"同步失败重试","value":201},{"dataType":"ENUM","name":"同步失败不重试","value":202}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Code","name":"状态码","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"上报设备数据校验码","eventType":"INFO_EVENT_TYPE","identifier":"PublishDataCheckCode","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"获取校验码成功","value":0},{"dataType":"ENUM","name":"获取校验码失败","value":1},{"dataType":"ENUM","name":"取消获取校验码","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Code","name":"状态码","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserInfoCheckCode","name":"用户消息校验码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PicCheckCode","name":"人脸图片校验码","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"FeatureCheckCode","name":"特征值校验码","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DATE","unit":"","unitName":"无"},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"CheckTime","name":"校验截止时间戳","paraOrder":4}],"required":true},{"custom":false,"description":"","eventName":"智能告警","eventType":"ALERT_EVENT_TYPE","identifier":"IntelligentAlarm","outputData":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"口罩识别","value":11017},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"客流统计","value":14001}],"childName":"告警类型","dataSpecsList":[{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"口罩识别","value":11017},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"客流统计","value":14001}],"dataType":"STRUCT","identifier":"AlarmType","name":"事件列表"},{"childDataType":"TEXT","childName":"图片ID","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[2].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicID","name":"事件列表"},{"childDataType":"INT","childName":"图片大小","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"1","step":"1","unit":"Byte","unitName":"字节"},"dataSpecs":{"$ref":"$.events[2].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicSize","name":"事件列表"},{"childDataType":"DATE","childName":"告警时间","childSpecsDTO":{"dataType":"DATE"},"dataSpecs":{"$ref":"$.events[2].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"EventTime","name":"事件列表"},{"childDataType":"TEXT","childName":"告警内容","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.events[2].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"Data","name":"事件列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"EventList","name":"事件列表","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"同步人脸图片失败","eventType":"ALERT_EVENT_TYPE","identifier":"OnFacePicError","outputData":[{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"SyncTime","name":"同步时间戳","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"16200","min":"16001","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Code","name":"错误码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"FaceMd5","name":"图片MD5值","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserId","name":"用户ID","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgorithmId","name":"算法ID","paraOrder":4}],"required":true}]}'), -('1692347065', '0', '1893171847', 'FlowRate', '流速液位监测设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1905487058', 'ParkingLock', '地锁', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"3.7","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"BatteryVoltage","name":"电池电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"85","min":"-55","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","description":"","identifier":"ParkingState","name":"停车状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Powerswitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1910655401', 'LiftTable', '升降桌', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"255","min":"0","step":"1","unit":"cm","unitName":"厘米"},"dataType":"INT","identifier":"Height","name":"高度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"位置一","value":1},{"dataType":"ENUM","name":"位置二","value":2},{"dataType":"ENUM","name":"位置三","value":3},{"dataType":"ENUM","name":"位置四","value":4}],"dataType":"ENUM","identifier":"Position","name":"预设位置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"ChildLock","name":"童锁","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"厘米","value":0},{"dataType":"ENUM","name":"英尺","value":1}],"dataType":"ENUM","identifier":"HeightUnit","name":"高度单位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"PositionSet","name":"位置记忆","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1929736814', 'GuideScreen', '导购屏', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关机","value":0},{"dataType":"BOOL","name":"开机","value":1}],"dataType":"BOOL","description":"state_/ids/checkAPIStatus.action","identifier":"MultiScreenApp_state","name":"多屏状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"clear","identifier":"Clear","name":"清空屏幕","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"/ids/materialDownload.action","identifier":"Download_material","name":"素材下发","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"/ids/materialSendSpot.action","identifier":"Insert_material","name":"插播素材","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"/ids/subtitleSendSpot.action","identifier":"Insert_subtitle","name":"插播字幕","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关机","value":0},{"dataType":"BOOL","name":"开机","value":1}],"dataType":"BOOL","description":"power","identifier":"Power","name":"开关机控制","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"/ids/endSpot.action","identifier":"Stop_insertion","name":"终止插播","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"/ids/endSpot.action","identifier":"Task","name":"节目计划","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"/ids/runProgram.action","identifier":"Run_program","name":"终端执行","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1944588437', 'ParkOverAll', '道闸一体机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"135","identifier":"Car_number","name":"识别车牌","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"25","identifier":"Brake_state","name":"道闸状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"135_pic","identifier":"Pic_name","name":"识别图片","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","description":"20","identifier":"Brake_control","name":"道闸控制","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"150","identifier":"Display","name":"屏幕显示及语音播报","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1953453299', 'ElevatorCollectingBox', '电梯集采盒', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1963466100', 'ElectricKettle', '电水壶', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"预热中","value":2},{"dataType":"ENUM","name":"保温中","value":3},{"dataType":"ENUM","name":"暂停","value":4},{"dataType":"ENUM","name":"完成","value":5}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"150ml","value":1},{"dataType":"ENUM","name":"250ml","value":2}],"dataType":"ENUM","description":"","identifier":"TargetCapacity","name":"目标容量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不缺水","value":0},{"dataType":"BOOL","name":"缺水","value":1}],"dataType":"BOOL","description":"","identifier":"NoWaterState","name":"缺水状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"25","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"20","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"HoldingTemperature","name":"保温温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"HoldingSwicth","name":"保温开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '1973304574', 'WaterMonitoring', '水质检测终端', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '1984818557', 'QrCodeAccessControl', '二维码门禁机', '{"services":[{"callType":"ASYNC","custom":false,"identifier":"syncPermissions","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"permissionUrl","name":"权限url","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"同步门禁权限"},{"callType":"ASYNC","custom":false,"identifier":"remoteOpen","inputParams":[],"outputParams":[],"required":true,"serviceName":"远程开门"}],"properties":[],"events":[{"custom":false,"eventName":"报警事件","eventType":"ALERT_EVENT_TYPE","identifier":"alarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"防拆报警","value":0},{"dataType":"ENUM","name":"防拆报警解除","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"alarmType","name":"报警类型","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"通行事件","eventType":"INFO_EVENT_TYPE","identifier":"passEvent","outputData":[{"custom":false,"dataSpecs":{"custom":false,"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"userId","name":"用户Id","paraOrder":0},{"custom":false,"dataSpecs":{"custom":false,"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"qrCode","name":"二维码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"extInfo","name":"附加信息","paraOrder":2}],"required":true}]}'), -('1692347065', '0', '1985891803', 'BackgroundMusicController', '背景音乐控制器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"播放","value":0},{"dataType":"ENUM","name":"暂停","value":1},{"dataType":"ENUM","name":"上一曲","value":2},{"dataType":"ENUM","name":"下一曲","value":3}],"dataType":"ENUM","identifier":"MusicPlayControl","name":"音乐播放控制","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"原声","value":0},{"dataType":"ENUM","name":"古典","value":1},{"dataType":"ENUM","name":"现代","value":2},{"dataType":"ENUM","name":"摇滚","value":3},{"dataType":"ENUM","name":"流行","value":4},{"dataType":"ENUM","name":"舞曲","value":5}],"dataType":"ENUM","identifier":"SoundEffect","name":"音效","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"降低音量","value":0},{"dataType":"BOOL","name":"提高音量","value":1}],"dataType":"BOOL","identifier":"VolumeControl","name":"音量控制","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"Mute","name":"静音","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"列表顺序","value":0},{"dataType":"ENUM","name":"列表循环","value":1},{"dataType":"ENUM","name":"单曲循环","value":2},{"dataType":"ENUM","name":"随机","value":3}],"dataType":"ENUM","identifier":"MusicPlayMode","name":"音乐播放模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地","value":0},{"dataType":"ENUM","name":"蓝牙","value":1},{"dataType":"ENUM","name":"外音","value":2}],"dataType":"ENUM","identifier":"AudioSource","name":"音频信号源","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1989186384', 'FillLight', '补光灯', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '1989359939', 'MetalProductsIndustry', '金属制品业', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2001931024', 'Outlet', '插座', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"3000","min":"0","step":"0.01","unit":"W","unitName":"瓦特"},"dataType":"DOUBLE","identifier":"RealTimePower","name":"实时功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_1","name":"插孔开关1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_2","name":"插孔开关2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"USBSwitch_1","name":"USB开关1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"USBSwitch_2","name":"USB开关2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"16","min":"0","step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","identifier":"RMSCurrent","name":"有效电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"250","min":"0","step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","identifier":"RMSVoltage","name":"有效电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"99999","min":"0","step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","identifier":"TotalConsumption","name":"总耗电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1440","min":"0","step":"1","unit":"min","unitName":"分"},"dataType":"INT","identifier":"RemainingTime","name":"倒计时剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"99999","min":"0","step":"0.1","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"FLOAT","description":"需要将此属性更新到“插座Outlet”品类的属性中,谢谢","identifier":"UnitPowerConsumption","name":"单位耗电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[12].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[12].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[12].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[12].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer","name":"随机定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[13].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[13].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[13].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[13].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_1","name":"随机定时1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[14].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[14].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[14].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[14].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_2","name":"随机定时2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[15].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[15].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[15].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[15].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_3","name":"随机定时3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_4","name":"随机定时4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[17].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[17].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[17].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[17].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_5","name":"随机定时5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_6","name":"随机定时6","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[19].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[19].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[19].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[19].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_7","name":"随机定时7","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[20].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[20].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[20].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[20].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_8","name":"随机定时8","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[21].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[21].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[21].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[21].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"}],"dataType":"STRUCT","description":"将此属性添加到“插座”品类中,可选","identifier":"RandomTimer_9","name":"随机定时9","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer","name":"循环定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[23].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[23].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[23].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[23].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[23].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[23].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_1","name":"循环定时1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[24].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[24].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[24].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[24].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[24].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[24].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_2","name":"循环定时2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[25].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[25].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[25].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[25].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[25].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[25].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_3","name":"循环定时3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[26].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[26].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[26].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[26].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[26].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[26].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_4","name":"循环定时4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_5","name":"循环定时5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[28].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[28].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[28].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[28].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[28].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[28].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_6","name":"循环定时6","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[29].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[29].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[29].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"1","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[29].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[29].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[29].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_7","name":"循环定时7","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[30].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[30].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[30].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[30].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[30].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[30].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_8","name":"循环定时8","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"开始时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[31].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"StartTime","name":"开始时间"},{"childDataType":"TEXT","childName":"结束时间","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[31].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"结束时间"},{"childDataType":"TEXT","childName":"重复","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[31].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Repeat","name":"重复"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"},{"childDataType":"INT","childName":"时差","childSpecsDTO":{"dataType":"INT","max":"50400","min":"-43200","step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[31].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeZoneOffset","name":"时差"},{"childDataType":"INT","childName":"运行时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[31].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"RunTime","name":"运行时间"},{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"720","min":"10","step":"10","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[31].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SleepTime","name":"间隔时间"}],"dataType":"STRUCT","description":"请将此属性 添加到 插座 品类中,可选","identifier":"PeriodTimer_9","name":"循环定时9","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[32].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致。","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"操作对象","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[33].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Target","name":"倒计时列表"},{"childDataType":"TEXT","childName":"倒计时命令","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[33].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Contents","name":"倒计时列表"}],"dataType":"STRUCT","description":"","identifier":"CountDownList","name":"倒计时列表","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_1","name":"电源开关_1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_2","name":"电源开关_2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_3","name":"电源开关_3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_4","name":"电源开关_4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"630000","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"Current","name":"当前电流","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"36","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"0","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2003543554', 'Shared washing machine', '共享洗衣机', '{"services":[{"callType":"SYNC","custom":false,"description":"批量库存查询","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"SYNC","custom":false,"description":"单个库存查询","identifier":"getInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"c","name":"库存数","paraOrder":0}],"required":true,"serviceName":"单个库存查询"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"下单的数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"},{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"数量","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误码","paraOrder":1}],"required":true,"serviceName":"增加库存"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货的时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误码","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '2010947717', 'LiquidLevelAlarm', '液位传感器', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2018504882', 'LightingFacility', '灯光设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"LightStatus","name":"灯的状态","required":true,"rwFlag":"WRITE_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"LightLuxModuleStatus","name":"光照度模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2022255322', 'CapsuleCoffeeMachine', '胶囊咖啡机', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2054580514', 'BodyFatScale', '体脂秤', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"FactoryReset","inputParams":[],"outputParams":[],"required":false,"serviceName":"恢复出厂设置"},{"callType":"ASYNC","custom":false,"description":"","identifier":"MeasureBodyFat","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"UserAge","name":"用户年龄","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"男","value":1},{"dataType":"ENUM","name":"女","value":2}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"UserGender","name":"用户性别","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"300","min":"1","precise":7,"step":"0.01","unit":"cm","unitName":"厘米"},"dataType":"DOUBLE","direction":"PARAM_INPUT","identifier":"UserHeight","name":"用户身高","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"UserID","name":"用户ID","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"500","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"BMI","name":"BMI","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"FatRate","name":"脂肪率","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"MoistureRate","name":"水分率","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"MuscleRate","name":"肌肉率","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"cal","unitName":"卡路里"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"BMR","name":"基础代谢率","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"20000","min":"0","precise":7,"step":"0.01","unit":"cal","unitName":"卡路里"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"AMR","name":"活动代谢率","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000","min":"0","precise":7,"step":"0.01","unit":"Ω","unitName":"欧姆"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Impedance","name":"阻抗","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"400","min":"0","precise":7,"step":"0.01","unit":"g","unitName":"克"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"MuscleMass","name":"肌肉重量","paraOrder":7},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"MeasurementCurrentTime","name":"测量当前时间","paraOrder":8},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"200","min":"0","precise":7,"step":"0.01","unit":"g","unitName":"克"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"SkeletalMuscle","name":"骨骼肌","paraOrder":9},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"300","min":"0","precise":7,"step":"0.01","unit":"kg","unitName":"千克"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Weight","name":"体重","paraOrder":10},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"BoneMass","name":"骨骼率","paraOrder":11},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"ModyScore","name":"健康评分","paraOrder":12},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"BodyAge","name":"身体年龄","paraOrder":13},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"200","min":"0","precise":7,"step":"0.01","unit":"g","unitName":"克"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"VisceralFat","name":"内脏脂肪","paraOrder":14},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"200","min":"0","precise":7,"step":"0.01","unit":"g","unitName":"克"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"SubcutaneousFat","name":"皮下脂肪","paraOrder":15},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"200","min":"0","precise":7,"step":"0.01","unit":"g","unitName":"克"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Protein","name":"蛋白质","paraOrder":16},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"UserID","name":"用户ID","paraOrder":17}],"required":false,"serviceName":"测量体脂"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"千克","value":0},{"dataType":"ENUM","name":"磅","value":1},{"dataType":"ENUM","name":"英石","value":2},{"dataType":"ENUM","name":"斤","value":3},{"dataType":"ENUM","name":"公斤","value":4}],"dataType":"ENUM","description":"","identifier":"MeasurementUnit","name":"测量单位","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2059687184', 'BrushFace', '扫脸娃娃机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","description":"","identifier":"User_picture","name":"用户照片","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","description":"","identifier":"Permission_info","name":"权益信息","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","description":"","identifier":"Associate_url","name":"绑定连接","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","description":"","identifier":"Associate_request","name":"绑定请求","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"Smile","name":"微笑信息","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"Status","name":"二维码状态","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2070033823', 'EmergencyLight', '应急照明灯', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2071344007', 'MajorAppliance', '大家电', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2091655145', 'MechanicalControlValve', '机械控制阀', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"Switch","name":"阀门开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2092225399', 'ZigbeeTemplate', 'Zigbee功能模板', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"868M","value":0},{"dataType":"ENUM","name":"915M","value":1},{"dataType":"ENUM","name":"2_4G","value":2}],"dataType":"ENUM","description":"","identifier":"ZB_Band","name":"ZB带宽","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"NETWORK_KEY","name":"网络秘钥","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"ZB_CO_MAC","name":"ZB设备MAC地址","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"EXT_PAN_ID","name":"扩展网路标识","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"26","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"ZB_Channel","name":"ZB通道","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"ZB_PAN_ID","name":"网路标识","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '209337823', 'ManholeCover', '井盖', '{"services":[{"callType":"ASYNC","custom":false,"identifier":"AngleSelfAdaption","inputParams":[],"outputParams":[],"required":false,"serviceName":"角度自适应校准"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"3.6","min":"2.8","precise":7,"step":"0.1","unit":"V","unitName":"伏特"},"dataType":"FLOAT","description":"显示电池电压","identifier":"BatteryRemain","name":"电池电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"180","min":"5","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"","identifier":"TiltValue","name":"井盖倾斜度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"180","min":"5","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"","identifier":"SafetyAngleThreshold","name":"安全角度阈值","required":true,"rwFlag":"WRITE_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"井盖被打开","value":1}],"dataType":"BOOL","description":"井盖状态,1代表井盖被打开,0代表井盖状态正常","identifier":"CoverStatus","name":"井盖状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"高度","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"9","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"设备地理位置,离线录入","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"10","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","description":"","identifier":"HeartBeatInterval","name":"心跳周期","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"180","min":"5","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"","identifier":"TiltAlarmThreshold","name":"告警角度阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"告警","value":1}],"dataType":"BOOL","description":"","identifier":"Alarm","name":"告警信息","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2101533883', 'MoxibustionApparatus', '艾灸仪', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关机","value":0},{"dataType":"ENUM","name":"开机","value":1},{"dataType":"ENUM","name":"暂停","value":2}],"dataType":"ENUM","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"min","unitName":"分"},"dataType":"INT","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"温灸","value":1},{"dataType":"ENUM","name":"啄灸","value":2},{"dataType":"ENUM","name":"瘢痕灸","value":3},{"dataType":"ENUM","name":"智能灸","value":4},{"dataType":"ENUM","name":"处方灸","value":5}],"dataType":"ENUM","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"eventName":"超时告警","eventType":"ALERT_EVENT_TYPE","identifier":"TimeoutWarning","outputData":[],"required":false},{"custom":false,"eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ReportContent","name":"报告内容","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '2120524444', 'water_logging', '水浸传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"127","min":"-127","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"lqi","name":"信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"zsta","name":"设备状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"batpt","name":"电池剩余电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2124325636', 'ParkArea', '社区车行停车区域', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"AddVehicleInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserName","name":"用户姓名","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"免费","value":0},{"dataType":"ENUM","name":"本地系统收费","value":1},{"dataType":"ENUM","name":"云端系统收费","value":2},{"dataType":"ENUM","name":"本地或云端收费","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"PayType","name":"付费渠道","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"StartExpireTime","name":"起始有效时间","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"EndExpireTime","name":"截止有效时间","paraOrder":5}],"outputParams":[],"required":true,"serviceName":"添加车辆信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"DeleteVehicleInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"删除车辆信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"ModifyVehicleInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserName","name":"用户姓名","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"免费","value":0},{"dataType":"ENUM","name":"本地系统收费","value":1},{"dataType":"ENUM","name":"云端系统收费","value":2},{"dataType":"ENUM","name":"本地或云端收费","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"PayType","name":"付费渠道","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"StartExpireTime","name":"起始有效时间","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"EndExpireTime","name":"截止有效时间","paraOrder":5}],"outputParams":[],"required":true,"serviceName":"修改车辆信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetVehicleInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserName","name":"用户姓名","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"免费","value":0},{"dataType":"ENUM","name":"本地系统收费","value":1},{"dataType":"ENUM","name":"云端系统收费","value":2},{"dataType":"ENUM","name":"本地或云端收费","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"PayType","name":"付费渠道","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"StartExpireTime","name":"起始有效时间","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"EndExpireTime","name":"截止有效时间","paraOrder":5}],"required":true,"serviceName":"获取车辆信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetVehicleList","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"VehicleListUrl","name":"车辆信息列表Url","paraOrder":0}],"required":true,"serviceName":"获取车辆信息列表"},{"callType":"SYNC","custom":false,"description":"","identifier":"CorrectPlateNumber","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"正确车牌号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumberImageUrl","name":"错误车牌号照片Url","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"校正车牌"},{"callType":"SYNC","custom":false,"description":"","identifier":"LockVehicle","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"StartExpireTime","name":"起始有效时间","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"EndExpireTime","name":"截止有效时间","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"锁定车辆"},{"callType":"SYNC","custom":false,"description":"","identifier":"UnlockVehicle","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"接触车辆锁定"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"999999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"TotalParkSpace","name":"车位总数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"999999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"RemainParkSpace","name":"空闲车位数量","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"本地系统新增车辆信息","eventType":"INFO_EVENT_TYPE","identifier":"AddVehicleInfoFromLocal","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserName","name":"用户姓名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"StartExpireTime","name":"起始有效时间","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"EndExpireTime","name":"截止有效时间","paraOrder":3}],"required":true},{"custom":false,"description":"","eventName":"本地系统删除车辆信息","eventType":"INFO_EVENT_TYPE","identifier":"DeleteVehicleInfoFromLocal","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"本地系统修改车辆信息","eventType":"INFO_EVENT_TYPE","identifier":"ModifyVehicleInfoFromLocal","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserName","name":"用户姓名","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"免费","value":0},{"dataType":"ENUM","name":"本地系统收费","value":1},{"dataType":"ENUM","name":"云端系统收费","value":2},{"dataType":"ENUM","name":"本地或云端收费","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"PayType","name":"付费渠道","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"StartExpireTime","name":"起始有效时间","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"EndExpireTime","name":"截止有效时间","paraOrder":5}],"required":true}]}'), -('1692347065', '0', '2134035224', 'Seeper', '易涝点监测设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2136952015', 'AirEnergyHeater', '空气能热水器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"HotWaterVolumeStatus","name":"热水量状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动模式","value":0},{"dataType":"ENUM","name":"节能模式","value":1}],"dataType":"ENUM","description":"","identifier":"HeatMode","name":"加热模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"30","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"150.0","min":"30.0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"EnvironmentTemperature","name":"环境温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"150","min":"30","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"水箱温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"h","unitName":"小时"},"dataType":"DOUBLE","description":"","identifier":"Runtime","name":"累计运行时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"PowerConsumption","name":"节能统计","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关机","value":0},{"dataType":"ENUM","name":"保温","value":1},{"dataType":"ENUM","name":"制热","value":2}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2142720662', 'VREquipment', '智能VR类设备', '{"services":[],"properties":[],"events":[{"custom":false,"eventName":"离线告警","eventType":"ALERT_EVENT_TYPE","identifier":"Offline_alarm","outputData":[],"required":true}]}'), -('1692347065', '0', '2143697036', 'AerobicPool', '好氧池', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '214602949', 'PublicService', '公共服务', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2156416903', 'Health', '个护健康', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '217890879', 'Oven', '烤箱', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"120","min":"0","precise":1,"step":"1","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WarmDuration","name":"保温时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"PowerLevel","name":"功率档位","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"预约中","value":2},{"dataType":"ENUM","name":"保温中","value":3},{"dataType":"ENUM","name":"预热中","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"FanSwitch","name":"通风开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"TurnSwitch","name":"转叉开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"炉灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"230","min":"90","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"ToastTemperature","name":"烘烤温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"230","min":"70","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PauseSwitch","name":"暂停开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"255","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TopTemperature","name":"上加热管温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"255","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"DownTemperature","name":"下加热管温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"TopTime","name":"上管加热时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"DownTime","name":"下管加热时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PreheatSwitch","name":"预热开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地食谱","value":1},{"dataType":"ENUM","name":"云食谱","value":2}],"dataType":"ENUM","description":"","identifier":"RecipeInfo","name":"食谱信息","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"120","min":"0","precise":0,"step":"1","unit":"min","unitName":"分钟"},"dataType":"INT","description":"","identifier":"AppointmentTime","name":"预约时间","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"启动","value":0},{"dataType":"ENUM","name":"暂停","value":1},{"dataType":"ENUM","name":"取消","value":2}],"dataType":"ENUM","description":"","identifier":"OperationControl","name":"运行控制","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"烹饪","value":0},{"dataType":"ENUM","name":"预热","value":1},{"dataType":"ENUM","name":"保温","value":2}],"dataType":"ENUM","description":"","identifier":"ModeControl","name":"模式控制","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2182847083', 'EnvironmentMonitoring', '环境监测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"DOUBLE","description":"PM2.5浓度","identifier":"PM2D5","name":"PM2D5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"DOUBLE","description":"pm1.0浓度","identifier":"PM1D0","name":"PM1D0","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"DOUBLE","description":"PM10浓度","identifier":"PM10","name":"PM10","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000","min":"0","precise":7,"step":"0.01","unit":"lx","unitName":"流明"},"dataType":"DOUBLE","description":"光照强度","identifier":"LightLux","name":"光照度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"5000","min":"0","precise":7,"step":"0.01","unit":"ppm","unitName":"ppm"},"dataType":"DOUBLE","description":"二氧化碳浓度","identifier":"CO2Value","name":"二氧化碳","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"90","min":"-40","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"温度","identifier":"CurrentTemperature","name":"温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"空气相对湿度","identifier":"RelativeHumidity","name":"相对湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"106","min":"55","precise":7,"step":"0.1","unit":"kPa","unitName":"千帕"},"dataType":"FLOAT","description":"大气压强","identifier":"Atmosphere","name":"大气压","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"55.0","min":"-40.0","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"土壤温度","identifier":"SoilTemperature","name":"土壤温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"土壤湿度","identifier":"SoilMoisture","name":"土壤湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"图片地址","identifier":"PicPath","name":"图片地址","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"61.2","min":"0","precise":7,"step":"0.1","unit":"m/s","unitName":"米每秒"},"dataType":"FLOAT","description":"风速","identifier":"WindSpeed","name":"风速","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"360","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"风向","identifier":"WindDirection","name":"风向","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2000","min":"0","precise":7,"step":"0.01","unit":"mm","unitName":"毫米"},"dataType":"DOUBLE","description":"降雨量","identifier":"Rainfall","name":"降雨量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"7","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"土壤PH值","identifier":"SoilPH","name":"土壤PH","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"15","min":"0","precise":7,"step":"0.01","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"DOUBLE","description":"紫外线强度","identifier":"UV","name":"紫外强度","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2192239852', 'InfraredDetectors', '红外体征探测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2193172036', 'IntegratedStove', '集成灶', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"SysPower","name":"系统开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"LPowerOff","name":"左灶关火","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"RPowerOff","name":"右灶关火","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"LStoveStatus","name":"左灶状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"RStoveStatus","name":"右灶状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"HoodPower","name":"烟机电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"HoodLight","name":"烟机照明开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3}],"dataType":"ENUM","description":"","identifier":"HoodSpeed","name":"烟机风量档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"待机中","value":0},{"dataType":"BOOL","name":"工作中","value":1}],"dataType":"BOOL","description":"","identifier":"HoodWorkState","name":"烟机工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"SteamerPower","name":"蒸箱开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"模式1","value":1},{"dataType":"ENUM","name":"模式2","value":2},{"dataType":"ENUM","name":"模式3","value":3},{"dataType":"ENUM","name":"模式4","value":4},{"dataType":"ENUM","name":"模式5","value":5}],"dataType":"ENUM","description":"","identifier":"SteamerMode","name":"蒸箱模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"SteameTemperatureSet","name":"蒸箱制作温度设置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"min","unitName":"分钟"},"dataType":"INT","description":"","identifier":"SteamerTimeSetMinute","name":"蒸箱制作时间设置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"min","unitName":"分钟"},"dataType":"INT","description":"","identifier":"SteamerTimeRemainingMinute","name":"蒸箱制作剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"待机中","value":0},{"dataType":"BOOL","name":"工作中","value":1}],"dataType":"BOOL","description":"","identifier":"SteamerState","name":"蒸箱工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"SteamerCurrentTemperature","name":"蒸箱当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"SysVoice","name":"语音功能开启关闭设置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2193527515', 'TeaBar', '茶吧机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"HeatingSwitch","name":"加热开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"45","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"放温水","value":1},{"dataType":"ENUM","name":"放冷水","value":2}],"dataType":"ENUM","description":"","identifier":"WaterState","name":"放水状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"RefrigerationSwitch","name":"制冷开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"HeatPreservationSwitch","name":"保温开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"WaterTemperature","name":"冷水温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"KettleTemperature","name":"水壶温度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2206955516', 'Gas meter manufacturing', '气表制造', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2209364368', 'Charging pile', '充电桩', '{"services":[{"callType":"SYNC","custom":false,"description":"单个库存查询","identifier":"getInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"c","name":"库存","paraOrder":0}],"required":true,"serviceName":"单个库存查询"},{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"库存","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"增加库存"},{"callType":"SYNC","custom":false,"description":"批量库存查询","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '221422357', 'MultiAccessControl', '多功能门禁', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"SyncFacePictures","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FacePicURL","name":"同步文件URL地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1},{"dataType":"ENUM","name":"下载文件失败","value":2},{"dataType":"ENUM","name":"解析文件失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"设备同步图片状态值","paraOrder":0}],"required":false,"serviceName":"人脸-同步人脸库图片"},{"callType":"SYNC","custom":false,"description":"","identifier":"QuerySyncPicSchedule","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"GroupID","name":"人脸库组ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":16,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Rate","name":"人脸图布控百分比","paraOrder":0}],"required":false,"serviceName":"人脸-查询人脸布控进度"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAddedUserInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"GroupID","name":"人脸库组ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"StoreID","name":"人脸布控文件storeID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"StoreID","value":0},{"dataType":"ENUM","name":"FileName","value":1},{"dataType":"ENUM","name":"URL","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Type","name":"类型","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"查询添加用户信息的布控状态","paraOrder":2}],"required":false,"serviceName":"人脸-查询布控成功的人脸图"},{"callType":"SYNC","custom":false,"description":"","identifier":"syncPermissions","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"permissionUrl","name":"权限url","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"通用-同步门禁权限"},{"callType":"SYNC","custom":false,"description":"","identifier":"RemoteControl","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Command","name":"控制指令","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Params","name":"控制参数","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"通用-远程控制"},{"callType":"SYNC","custom":false,"description":"","identifier":"remoteOpen","inputParams":[],"outputParams":[],"required":false,"serviceName":"通用-远程开门"},{"callType":"SYNC","custom":false,"description":"","identifier":"NotifyPhoneNumberCheckResult","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"phoneNumber","name":"手机号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"失败","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"checkResult","name":"校验结果","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"可视对讲-下发手机号校验结果"},{"callType":"SYNC","custom":false,"description":"","identifier":"SyncSipNumber","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"sipNumber","name":"sipNumber","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"password","name":"密码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":5},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"sipServerPort","name":"sipServer端口号","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":40},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"sipServerAddr","name":"sipServer地址","paraOrder":3}],"outputParams":[],"required":false,"serviceName":"可视对讲-颁发SipNumber"},{"callType":"SYNC","custom":false,"description":"","identifier":"SyncGroupIdAndRoomId","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"groupRoomMappingFileUrl","name":"映射关系文件url","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"可视对讲-同步组号和房间号"},{"callType":"SYNC","custom":false,"description":"","identifier":"querySipNumber","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"sipNumber","name":"sipNumber","paraOrder":0}],"required":false,"serviceName":"可视对讲_查询SipNumber"},{"callType":"ASYNC","custom":false,"description":"人脸2.0(不推荐)","identifier":"QueryUserData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserId","name":"用户ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserId","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"EventTime","name":"用户信息事件时间戳","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"FacePicList","name":"图片列表","paraOrder":2},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"图片Md5","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[10].outputParams[3].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"FaceMd5","name":"特征列表"},{"childDataType":"TEXT","childName":"算法Id","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.services[10].outputParams[3].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"特征列表"}],"dataType":"ARRAY","size":100},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"FeatureList","name":"特征列表","paraOrder":3}],"required":false,"serviceName":"人脸-查询用户是否存在"},{"callType":"ASYNC","custom":false,"description":"人脸2.0(不推荐)","identifier":"SyncFaceData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FaceDataUrl","name":"人脸数据URL地址","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"人脸-同步人脸数据"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SendOssStsToken","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Credentials","name":"加密的访问凭证","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"BucketName","name":"OSSbucket名称","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EndPoint","name":"OSS的EndPoint名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ObjectName","name":"OSS存储空间名称","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"完成","value":0},{"dataType":"ENUM","name":"进行中","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Status","name":"OssStsToken下发状态","paraOrder":0}],"required":false,"serviceName":"下发OssStsToken"},{"callType":"SYNC","custom":false,"description":"用于人脸特征下发,请求参数URL是特征文件。每批次最大100个人脸特征。\n基于人脸门禁1.0物模型","identifier":"SyncFaceFeatures","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FacePicFeaturesURL","name":"同步特征文件URL地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1},{"dataType":"ENUM","name":"下载文件失败","value":2},{"dataType":"ENUM","name":"解析文件失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"设备同步图片状态值","paraOrder":0}],"required":false,"serviceName":"人脸-人脸特征下发"},{"callType":"SYNC","custom":false,"description":"直接查询设备上的人脸权限数,由设备直接返回,不经过SDK统计","identifier":"QueryFacePermTotal","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"FacePermTotal","name":"当前人脸库权限总数","paraOrder":0}],"required":false,"serviceName":"人脸-查询设备上人脸权限总数"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"ExtInfo","name":"通用-扩展信息","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"加密二维码","identifier":"RSAPublicKey","name":"通用-RSA公钥","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","description":"用于人脸特征下发,标识设备端的算法版本\n基于人脸门禁1.0物模型","identifier":"FaceAlgorithmVersion","name":"人脸算法版本","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","description":"用于人脸特征下发,基于人脸门禁1.0物模型","identifier":"FirmwareVersion","name":"设备固件版本","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"支持","value":0},{"dataType":"BOOL","name":"不支持","value":1}],"dataType":"BOOL","description":"用于人脸特征下发,基于人脸门禁1.0物模型\n设备级开关","identifier":"SupportFaceFeature","name":"支持人脸特征下发","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"人脸1.0 - 上报可识别人脸事件","eventName":"人脸-人脸比对事件上报","eventType":"INFO_EVENT_TYPE","identifier":"OnMatched","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserPicID","name":"用户人脸图ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"FaceMatchedPicStorID","name":"人脸比对图片StorID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"Similarity","name":"人脸比对相似度结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserInfo","name":"人脸ID相关属性","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"GroupID","name":"人脸组ID","paraOrder":4}],"required":false},{"custom":false,"description":"","eventName":"通用-通行事件","eventType":"INFO_EVENT_TYPE","identifier":"passEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"10000","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"code","name":"通行结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"message","name":"结果说明","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"type","name":"认证类型","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"content","name":"认证内容","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"extInfo","name":"扩展信息","paraOrder":4}],"required":false},{"custom":false,"description":"","eventName":"通用-报警事件","eventType":"ALERT_EVENT_TYPE","identifier":"alarmEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"alarmType","name":"报警类型","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"可视对讲-开门事件","eventType":"INFO_EVENT_TYPE","identifier":"doorOpenEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"云对讲","value":0},{"dataType":"ENUM","name":"固话对讲","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"sourceType","name":"源类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"number","name":"源号码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"extInfo","name":"附加信息","paraOrder":2}],"required":false},{"custom":false,"description":"","eventName":"可视对讲-校验手机号","eventType":"INFO_EVENT_TYPE","identifier":"checkPhoneNumber","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"phoneNumber","name":"手机号","paraOrder":0}],"required":false},{"custom":false,"description":"人脸2.0(不推荐)","eventName":"人脸库同步确认","eventType":"INFO_EVENT_TYPE","identifier":"OnSync","outputData":[{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"SyncTime","name":"同步时间戳","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Payload","name":"透传参数","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"同步成功","value":200},{"dataType":"ENUM","name":"同步失败重试","value":201},{"dataType":"ENUM","name":"同步失败不重试","value":202}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Code","name":"状态码","paraOrder":2}],"required":false},{"custom":false,"description":"人脸2.0(不推荐)","eventName":"智能告警","eventType":"ALERT_EVENT_TYPE","identifier":"IntelligentAlarm","outputData":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"口罩识别","value":11017},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"客流统计","value":14001}],"childName":"告警类型","dataSpecsList":[{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"口罩识别","value":11017},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"客流统计","value":14001}],"dataType":"STRUCT","identifier":"AlarmType","name":"事件列表"},{"childDataType":"TEXT","childName":"图片ID","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[6].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicID","name":"事件列表"},{"childDataType":"INT","childName":"图片大小","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"1","precise":0,"step":"1","unit":"B","unitName":"字节"},"dataSpecs":{"$ref":"$.events[6].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicSize","name":"事件列表"},{"childDataType":"TEXT","childName":"告警时间","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.events[6].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"EventTime","name":"事件列表"},{"childDataType":"TEXT","childName":"告警内容","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.events[6].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"Data","name":"事件列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"EventList","name":"事件列表","paraOrder":0}],"required":false},{"custom":false,"description":"人脸2.0(不推荐)","eventName":"同步人脸图片失败","eventType":"ALERT_EVENT_TYPE","identifier":"OnFacePicError","outputData":[{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"SyncTime","name":"同步时间戳","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"16200","min":"16001","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Code","name":"错误码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"FaceMd5","name":"图片MD5值","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserId","name":"用户ID","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgorithmId","name":"算法ID","paraOrder":4}],"required":false},{"custom":false,"description":"","eventName":"StsToken请求上报","eventType":"INFO_EVENT_TYPE","identifier":"OssStsTokenRequest","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"图片文件上传","value":0},{"dataType":"ENUM","name":"文本文件上传","value":1},{"dataType":"ENUM","name":"其他类型文件上传","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"RequestType","name":"请求上传文件类型","paraOrder":0}],"required":false},{"custom":false,"description":"人脸1.0 - 上报人脸检测(非识别)事件,一般用于陌生人脸上报","eventName":"人脸-人脸检测事件上报","eventType":"INFO_EVENT_TYPE","identifier":"OnDetect","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"StoreID","name":"人脸检测图StoreID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"GroupID","name":"人脸组ID","paraOrder":1}],"required":false}]}'), -('1692347065', '0', '2225143050', 'Heater', '取暖器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"16","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"标准","value":0},{"dataType":"ENUM","name":"智能","value":1}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3}],"dataType":"ENUM","description":"","identifier":"HeatLevel","name":"加热档位","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"4000","min":"0","precise":7,"step":"0.01","unit":"W","unitName":"瓦特"},"dataType":"DOUBLE","description":"","identifier":"CurrentPower","name":"当前功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"加热中","value":1}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"加热状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"PowerConsumption","name":"功耗","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[9].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2264156841', 'FarmRecorder', '农田记录仪', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"时景视频URL","childSpecsDTO":{"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"DailyVideoUrl","name":"全天时景"},{"childDataType":"INT","childName":"视频高","childSpecsDTO":{"dataType":"INT","max":"3456","min":"0","step":"1","unit":"px","unitName":"像素"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"DailyVideoHeight","name":"全天时景"},{"childDataType":"INT","childName":"视频宽","childSpecsDTO":{"dataType":"INT","max":"4608","min":"0","step":"1","unit":"px","unitName":"像素"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"DailyVideoWidth","name":"全天时景"},{"childDataType":"TEXT","childName":"时景缩略图URL","childSpecsDTO":{"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"ThumbnailUrl","name":"全天时景"},{"childDataType":"INT","childName":"缩略图高","childSpecsDTO":{"dataType":"INT","max":"3456","min":"0","step":"1","unit":"px","unitName":"像素"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"ThumbnailHeight","name":"全天时景"},{"childDataType":"INT","childName":"缩略图宽","childSpecsDTO":{"dataType":"INT","max":"4608","min":"0","step":"1","unit":"px","unitName":"像素"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"ThumbnailWidth","name":"全天时景"}],"dataType":"STRUCT","identifier":"DailyVideo","name":"全天时景","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"图像URL","childSpecsDTO":{"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"DailyImageUrl","name":"图像"},{"childDataType":"INT","childName":"图像宽","childSpecsDTO":{"dataType":"INT","max":"4608","min":"0","step":"1","unit":"px","unitName":"像素"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"DailyImageWidth","name":"图像"},{"childDataType":"INT","childName":"图像高","childSpecsDTO":{"dataType":"INT","max":"3456","min":"0","step":"1","unit":"px","unitName":"像素"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"DailyImageHeight","name":"图像"}],"dataType":"STRUCT","identifier":"DailyImage","name":"图像","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1920","min":"0","step":"300","unit":"s","unitName":"秒"},"dataType":"INT","identifier":"Interval","name":"采集间隔","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2270906429', 'GasDetector', '燃气报警器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-127","precise":7,"step":"0.01","unit":"dBm","unitName":"分贝毫瓦"},"dataType":"DOUBLE","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"天然气","value":0},{"dataType":"ENUM","name":"人工煤气","value":1},{"dataType":"ENUM","name":"液化石油气","value":2}],"dataType":"ENUM","description":"","identifier":"GasType","name":"燃气类型","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"燃气泄漏","value":1}],"dataType":"ENUM","description":"","identifier":"GasSensorState","name":"燃气检测状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"LelPercentage","name":"燃气爆炸危险度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"当设备被撬时,上报该事件","eventName":"防撬报警","eventType":"INFO_EVENT_TYPE","identifier":"TamperAlarm","outputData":[],"required":false},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2272848771', 'ParkingSpace', '停车车位', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无车","value":0},{"dataType":"ENUM","name":"有车","value":1}],"dataType":"ENUM","description":"","identifier":"StateParked","name":"驻车状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"ParkedNumber","name":"驻车车牌","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"车位状态变化","eventType":"INFO_EVENT_TYPE","identifier":"UpdateParkSpaceStatus","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无车","value":0},{"dataType":"ENUM","name":"有车","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"StateParked","name":"驻车状态","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ParkedNumber","name":"驻车车牌","paraOrder":1}],"required":true}]}'); -INSERT INTO "thing_model_template" ("created", "modified", "id", "category_key", "category_name", "thing_model_json") VALUES -('1692347065', '0', '2280499026', 'VisionAccessNode', '摄像头边缘节点 ', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"StartAlgorithmTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ProductKey","name":"子设备产品名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DeviceName","name":"子设备名","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Algorithm","name":"算法","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":4096},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmParam","name":"算法参数","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskID","name":"任务号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"算法不支持","value":1},{"dataType":"ENUM","name":"资源不足","value":2},{"dataType":"ENUM","name":"设备异常","value":3},{"dataType":"ENUM","name":"设备不存在","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"启动结果","paraOrder":1}],"required":true,"serviceName":"启动算法任务"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopAlgorithmTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"任务号","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"任务号错误","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"停止结果","paraOrder":0}],"required":true,"serviceName":"停止算法任务"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAlgorithmTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"256","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PageNum","name":"分页号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"32","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PageSize","name":"分页大小","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"算法不支持","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"查询结果","paraOrder":0},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"任务ID","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[2].outputParams[1].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"TaskID","name":"任务列表"},{"childDataType":"TEXT","childName":"算法","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[2].outputParams[1].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Algorithm","name":"任务列表"},{"childDataType":"TEXT","childName":"子设备产品名","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[2].outputParams[1].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"ProductKey","name":"任务列表"},{"childDataType":"TEXT","childName":"子设备名","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[2].outputParams[1].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"DeviceName","name":"任务列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"未分配","value":1},{"dataType":"ENUM","name":"未运行","value":2},{"dataType":"ENUM","name":"运行中","value":3},{"dataType":"ENUM","name":"运行异常","value":4},{"dataType":"ENUM","name":"正常结束","value":5},{"dataType":"ENUM","name":"视频源异常","value":6}],"childName":"任务状态","dataSpecsList":[{"dataType":"ENUM","name":"未分配","value":1},{"dataType":"ENUM","name":"未运行","value":2},{"dataType":"ENUM","name":"运行中","value":3},{"dataType":"ENUM","name":"运行异常","value":4},{"dataType":"ENUM","name":"正常结束","value":5},{"dataType":"ENUM","name":"视频源异常","value":6}],"dataType":"STRUCT","identifier":"Status","name":"任务列表"},{"childDataType":"TEXT","childName":"算法参数","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.services[2].outputParams[1].dataSpecs.dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmParam","name":"任务列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"TaskList","name":"任务列表","paraOrder":1}],"required":true,"serviceName":"查询算法任务"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryLicenseList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PageNum","name":"分页码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"50","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PageSize","name":"分页大小","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"CurrentPage","name":"当前页","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"65536","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Total","name":"总记录数","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"50","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"PageSize","name":"分页大小","paraOrder":3},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"算法名称","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[3].outputParams[4].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmName","name":"算法名称"},{"childDataType":"TEXT","childName":"算法ID","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[3].outputParams[4].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"算法ID"},{"childDataType":"INT","childName":"总配额","childSpecsDTO":{"dataType":"INT","max":"65536","min":"1","step":"1"},"dataSpecs":{"$ref":"$.services[3].outputParams[4].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"TotalAuota","name":"总配额"},{"childDataType":"INT","childName":"当前已使用配额","childSpecsDTO":{"dataType":"INT","max":"65536","min":"0","step":"1"},"dataSpecs":{"$ref":"$.services[3].outputParams[4].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"UsedQuota","name":"当前已使用配额"}],"dataType":"ARRAY","size":512},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"LicenseList","name":"授权列表","paraOrder":4}],"required":true,"serviceName":"查询授权列表"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAlgoList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PageNum","name":"分页码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"50","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PageSize","name":"分页码大小","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"65536","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Total","name":"总记录数","paraOrder":0},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"算法名称","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[4].outputParams[1].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmName","name":"算法列表"},{"childDataType":"TEXT","childName":"算法Id","childSpecsDTO":{"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.services[4].outputParams[1].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"算法列表"},{"childDataType":"TEXT","childName":"算法配置参数","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.services[4].outputParams[1].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmParam","name":"算法列表"},{"childDataType":"TEXT","childName":"算法版本号","childSpecsDTO":{"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.services[4].outputParams[1].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmVersion","name":"算法列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"AlgorithmList","name":"算法列表","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"CurrentPage","name":"当前页","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"50","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"PageSize","name":"分页大小","paraOrder":4}],"required":true,"serviceName":"查询设备算法列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"DeployAlgorithmModel","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmId","name":"算法id","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"65536","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"AlgorithmType","name":"算法类型","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmName","name":"算法名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelId","name":"模型id","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelVersion","name":"模型版本","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelUrl","name":"模型下载url","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Platform","name":"模型平台","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskId","name":"部署任务id","paraOrder":7},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"MD5","name":"模型md5值","paraOrder":8},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"不加密","value":0},{"dataType":"BOOL","name":"加密","value":1}],"dataType":"BOOL","direction":"PARAM_INPUT","identifier":"Encryption","name":"模型是否加密","paraOrder":9}],"outputParams":[],"required":true,"serviceName":"算法部署"},{"callType":"SYNC","custom":false,"description":"","identifier":"StartAlgoTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskId","name":"任务编号","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1},{"dataType":"ENUM","name":"算法任务未找到","value":2},{"dataType":"ENUM","name":"不存在该算法的配额","value":3},{"dataType":"ENUM","name":"没有可用的配额","value":4},{"dataType":"ENUM","name":"算法路数达到能力上限","value":5}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":0}],"required":true,"serviceName":"开启算法任务"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAlgoTaskDetails","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskId","name":"任务编号","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1},{"dataType":"ENUM","name":"任务未找到","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskId","name":"任务编号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgorithmId","name":"算法ID","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskCreateTime","name":"任务创建时间","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskUpdateTime","name":"任务更新时间","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskName","name":"任务名称","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgorithmParam","name":"算法参数","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SubProductKey","name":"子设备产品名称","paraOrder":7},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SubDeviceName","name":"子设备名称","paraOrder":8},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"未开启","value":0},{"dataType":"ENUM","name":"未分配","value":1},{"dataType":"ENUM","name":"未运行","value":2},{"dataType":"ENUM","name":"运行中","value":3},{"dataType":"ENUM","name":"运行异常","value":4},{"dataType":"ENUM","name":"正常结束","value":5},{"dataType":"ENUM","name":"视频源异常","value":6},{"dataType":"ENUM","name":"算法不支持","value":7},{"dataType":"ENUM","name":"模型加载中","value":8},{"dataType":"ENUM","name":"模型加载出错","value":9}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"TaskStatus","name":"任务状态","paraOrder":9},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Comment","name":"备注","paraOrder":10}],"required":true,"serviceName":"查询算法任务详细信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"UpdateAlgoTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskId","name":"任务编号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskName","name":"任务名称","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SubProductKey","name":"子设备产品名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SubDeviceName","name":"子设备名称","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmId","name":"算法Id","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmParam","name":"算法参数","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Comment","name":"备注","paraOrder":6}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskId","name":"任务编号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1},{"dataType":"ENUM","name":"三元组未找到","value":2},{"dataType":"ENUM","name":"设备不存在","value":3},{"dataType":"ENUM","name":"算法任务未找到","value":4},{"dataType":"ENUM","name":"超过最大ROI数","value":5},{"dataType":"ENUM","name":"算法不支持","value":6},{"dataType":"ENUM","name":"关联设备的算法任务已存在","value":7}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":1}],"required":true,"serviceName":"更新算法任务"},{"callType":"SYNC","custom":false,"description":"","identifier":"DeleteAlgoTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskId","name":"任务编号","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1},{"dataType":"ENUM","name":"算法任务未找到","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":0}],"required":true,"serviceName":"删除算法任务"},{"callType":"SYNC","custom":false,"description":"","identifier":"CreateAlgoTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskName","name":"任务名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SubProductKey","name":"子设备产品名称","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SubDeviceName","name":"子设备名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmId","name":"算法Id","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmParam","name":"算法参数","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Comment","name":"备注","paraOrder":5}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskId","name":"任务编号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1},{"dataType":"ENUM","name":"三元组未找到","value":2},{"dataType":"ENUM","name":"设备不存在","value":3},{"dataType":"ENUM","name":"超过最大算法任务数","value":4},{"dataType":"ENUM","name":"超过最大ROI数","value":5},{"dataType":"ENUM","name":"算法不支持","value":6},{"dataType":"ENUM","name":"关联设备的算法任务已存在","value":7}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":1}],"required":true,"serviceName":"创建算法任务"},{"callType":"SYNC","custom":false,"description":"","identifier":"StopAlgoTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskId","name":"任务编号","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1},{"dataType":"ENUM","name":"算法任务未找到","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":0}],"required":true,"serviceName":"关闭算法任务"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAlgoTaskList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PageNum","name":"分页码","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"50","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PageSize","name":"分页大小","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskName","name":"任务名称","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"65536","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Total","name":"总记录数","paraOrder":0},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"更新时间","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.services[12].outputParams[1].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"TaskUpdateTime","name":"任务列表"},{"childDataType":"TEXT","childName":"任务名称","childSpecsDTO":{"dataType":"TEXT","length":256},"dataSpecs":{"$ref":"$.services[12].outputParams[1].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"TaskName","name":"任务列表"},{"childDataType":"TEXT","childName":"任务编号","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[12].outputParams[1].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"TaskId","name":"任务列表"},{"childDataType":"TEXT","childName":"算法名称","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[12].outputParams[1].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmName","name":"任务列表"},{"childDataType":"TEXT","childName":"算法ID","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[12].outputParams[1].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"任务列表"},{"childDataType":"TEXT","childName":"算法参数","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.services[12].outputParams[1].dataSpecs.dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmParam","name":"任务列表"},{"childDataType":"TEXT","childName":"子设备产品名称","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[12].outputParams[1].dataSpecs.dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SubProductKey","name":"任务列表"},{"childDataType":"TEXT","childName":"子设备名称","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[12].outputParams[1].dataSpecs.dataSpecsList[7].childSpecsDTO"},"dataType":"STRUCT","identifier":"SubDeviceName","name":"任务列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"未开启","value":0},{"dataType":"ENUM","name":"未分配","value":1},{"dataType":"ENUM","name":"未运行","value":2},{"dataType":"ENUM","name":"运行中","value":3},{"dataType":"ENUM","name":"运行异常","value":4},{"dataType":"ENUM","name":"正常结束","value":5},{"dataType":"ENUM","name":"视频源异常","value":6},{"dataType":"ENUM","name":"算法不支持","value":7},{"dataType":"ENUM","name":"算法模型加载中","value":8},{"dataType":"ENUM","name":"算法模型加载出错","value":9}],"childName":"任务状态","dataSpecsList":[{"dataType":"ENUM","name":"未开启","value":0},{"dataType":"ENUM","name":"未分配","value":1},{"dataType":"ENUM","name":"未运行","value":2},{"dataType":"ENUM","name":"运行中","value":3},{"dataType":"ENUM","name":"运行异常","value":4},{"dataType":"ENUM","name":"正常结束","value":5},{"dataType":"ENUM","name":"视频源异常","value":6},{"dataType":"ENUM","name":"算法不支持","value":7},{"dataType":"ENUM","name":"算法模型加载中","value":8},{"dataType":"ENUM","name":"算法模型加载出错","value":9}],"dataType":"STRUCT","identifier":"TaskStatus","name":"任务列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"TaskList","name":"任务列表","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"参数错误","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"CurrentPage","name":"当前页","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"50","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"PageSize","name":"分页大小","paraOrder":4}],"required":true,"serviceName":"查询算法任务列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SendDecryptionKey","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"失败","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Code","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Message","name":"信息","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DecryptionKey","name":"解密秘钥","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelId","name":"模型id","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"发送解密密钥"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SendChallenge","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"失败","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Code","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Message","name":"信息","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Challenge","name":"挑战字","paraOrder":2}],"outputParams":[],"required":true,"serviceName":"发送挑战字"},{"callType":"SYNC","custom":false,"description":"","identifier":"StartDeviceDiagnosis","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"连接诊断","value":0},{"dataType":"ENUM","name":"视频诊断","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"DiagnosisType","name":"诊断类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ProductKey","name":"子设备PK","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DeviceName","name":"子设备DN","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"请求成功","value":0},{"dataType":"ENUM","name":"请求失败","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"请求结果","paraOrder":0}],"required":true,"serviceName":"开始设备诊断"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryDeviceDiagnosisResult","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ProductKey","name":"子设备PK","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DeviceName","name":"子设备DN","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"连接诊断","value":0},{"dataType":"ENUM","name":"视频诊断","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"DiagnosisType","name":"诊断类型","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Result","name":"诊断结果","paraOrder":0}],"required":true,"serviceName":"查询诊断结果"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAddedUserInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"GroupID","name":"人脸库组ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"查询添加用户信息的布控状态","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"StoreID","name":"人脸布控文件storeID","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"StoreID","value":0},{"dataType":"ENUM","name":"FileName","value":1},{"dataType":"ENUM","name":"URL","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Type","name":"类型","paraOrder":2}],"required":true,"serviceName":"查询布控成功的人脸图"},{"callType":"SYNC","custom":false,"description":"","identifier":"QuerySyncPicSchedule","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"GroupID","name":"人脸库组ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Rate","name":"人脸图布控百分比","paraOrder":0}],"required":true,"serviceName":"查询人脸布控进度"},{"callType":"SYNC","custom":false,"description":"","identifier":"SyncFacePictures","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FacePicURL","name":"同步文件URL地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1},{"dataType":"ENUM","name":"下载文件失败","value":2},{"dataType":"ENUM","name":"解析文件失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"设备同步图片状态值","paraOrder":0}],"required":true,"serviceName":"同步人脸库图片"},{"callType":"SYNC","custom":false,"description":"","identifier":"ImageInference","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Algorithm","name":"算法名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Type","name":"类型","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Data","name":"数据","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoParam","name":"算法参数","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"推理结果","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.services[20].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"InferenceResult","name":"推理结果列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"InferenceResultList","name":"推理结果列表","paraOrder":0}],"required":true,"serviceName":"图片推理"},{"callType":"SYNC","custom":false,"description":"类型为采集数据的类型,如果是algopipe表明是算法时序,如果是topo表明是设备拓扑图;如果type为algopipe,任务编号必填;如果是topo时,任务编号填空字符串","identifier":"CaptureAIBoxDiagData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Type","name":"类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskId","name":"任务编号","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"采集中","value":0},{"dataType":"ENUM","name":"已存在相同的采集请求处理中","value":1},{"dataType":"ENUM","name":"采集参数错误","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"CaptureStatus","name":"采集状态","paraOrder":0}],"required":true,"serviceName":"采集AIBox的诊断数据"},{"callType":"SYNC","custom":false,"description":"该服务消息接口通常在调用CaptureAIBoxDiagData之后每隔一段时间查询使用","identifier":"QueryAIBoxDiagData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Type","name":"类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskId","name":"任务编号","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"查询成功","value":0},{"dataType":"ENUM","name":"采集中","value":1},{"dataType":"ENUM","name":"查询参数错误或未采集","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"查询结果","paraOrder":0},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"Data","name":"采集数据","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Rate","name":"采集进度","paraOrder":2}],"required":true,"serviceName":"查询AIBox的诊断数据"},{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryDataCheckCode","inputParams":[{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"CheckTime","name":"校验截止时间戳","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"查询设备数据校验码"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryUserData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UserId","name":"用户ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserId","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"EventTime","name":"用户信息事件时间戳","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"FacePicList","name":"图片列表","paraOrder":2},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"图片Md5","childSpecsDTO":{"dataType":"TEXT","length":64},"dataSpecs":{"$ref":"$.services[24].outputParams[3].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"FaceMd5","name":"特征列表"},{"childDataType":"TEXT","childName":"算法Id","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.services[24].outputParams[3].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"特征列表"}],"dataType":"ARRAY","size":100},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"FeatureList","name":"特征列表","paraOrder":3}],"required":true,"serviceName":"查询用户是否存在"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SyncFaceData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FaceDataUrl","name":"人脸数据URL地址","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"同步人脸数据"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAlgoConfig","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"16","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"ComputingUnits","name":"计算单元数量","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"16","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Total","name":"已使用计算单元总量","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"单元Id","childSpecsDTO":{"dataType":"INT","max":"16","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.services[26].outputParams[2].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"UnitId","name":"绑定列表"},{"childDataType":"TEXT","childName":"算法Id","childSpecsDTO":{"dataType":"TEXT","length":128},"dataSpecs":{"$ref":"$.services[26].outputParams[2].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"绑定列表"},{"childDataType":"TEXT","childName":"算法名称","childSpecsDTO":{"dataType":"TEXT","length":128},"dataSpecs":{"$ref":"$.services[26].outputParams[2].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmName","name":"绑定列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"视频流","value":0},{"dataType":"ENUM","name":"图片","value":1}],"childName":"源类型","dataSpecsList":[{"dataType":"ENUM","name":"视频流","value":0},{"dataType":"ENUM","name":"图片","value":1}],"dataType":"STRUCT","identifier":"SourceType","name":"绑定列表"},{"childDataType":"INT","childName":"最大任务数","childSpecsDTO":{"dataType":"INT","max":"32","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.services[26].outputParams[2].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"MaxTask","name":"绑定列表"}],"dataType":"ARRAY","size":16},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"BindingList","name":"绑定列表","paraOrder":2}],"required":true,"serviceName":"获取算法配置信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAlgoAbility","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"64","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Total","name":"总量","paraOrder":0},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"算法ID","childSpecsDTO":{"dataType":"TEXT","length":128},"dataSpecs":{"$ref":"$.services[27].outputParams[1].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"能力列表"},{"childDataType":"TEXT","childName":"算法名称","childSpecsDTO":{"dataType":"TEXT","length":128},"dataSpecs":{"$ref":"$.services[27].outputParams[1].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmName","name":"能力列表"},{"childDataType":"INT","childName":"最大图片任务数","childSpecsDTO":{"dataType":"INT","max":"64","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.services[27].outputParams[1].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"MaxPicTask","name":"能力列表"},{"childDataType":"INT","childName":"最大视频流任务数","childSpecsDTO":{"dataType":"INT","max":"64","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.services[27].outputParams[1].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"MaxStreamTask","name":"能力列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"AbilityList","name":"能力列表","paraOrder":1}],"required":true,"serviceName":"获取当前算法列表"},{"callType":"SYNC","custom":false,"description":"","identifier":"SetAlgoUnitBinding","inputParams":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"单元Id","childSpecsDTO":{"dataType":"INT","max":"16","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.services[28].inputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"UnitId","name":"绑定列表"},{"childDataType":"TEXT","childName":"算法Id","childSpecsDTO":{"dataType":"TEXT","length":128},"dataSpecs":{"$ref":"$.services[28].inputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmId","name":"绑定列表"},{"childDataType":"TEXT","childName":"算法名称","childSpecsDTO":{"dataType":"TEXT","length":128},"dataSpecs":{"$ref":"$.services[28].inputParams[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlgorithmName","name":"绑定列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"视频流","value":0},{"dataType":"ENUM","name":"图片","value":1}],"childName":"源类型","dataSpecsList":[{"dataType":"ENUM","name":"视频流","value":0},{"dataType":"ENUM","name":"图片","value":1}],"dataType":"STRUCT","identifier":"SourceType","name":"绑定列表"},{"childDataType":"INT","childName":"最大任务数","childSpecsDTO":{"dataType":"INT","max":"32","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.services[28].inputParams[0].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"MaxTask","name":"绑定列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_INPUT","identifier":"BindingList","name":"绑定列表","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"失败","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"结果","paraOrder":0}],"required":true,"serviceName":"设置算法配置"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"MemoryUsage","name":"内存使用率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"DiskUsage","name":"磁盘使用率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"CpuUsage","name":"CPU使用率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"Platform","name":"上报平台属性","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":2,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"CurrentComputingPower","name":"当前算力","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"256","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"AlgorithmQuantity","name":"算法数量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"MACAddress","name":"MAC地址","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"软件版本","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"softVersion","name":"软件信息"},{"childDataType":"TEXT","childName":"版本详细信息","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"versionInfo","name":"软件信息"}],"dataType":"STRUCT","description":"","identifier":"SoftwareInfo","name":"软件信息","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"操作系统","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[8].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"os","name":"系统信息"},{"childDataType":"TEXT","childName":"处理器","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[8].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"processor","name":"系统信息"}],"dataType":"STRUCT","description":"","identifier":"SystemInfo","name":"系统信息","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"使能","value":1}],"childName":"ntp使能","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"使能","value":1}],"dataType":"STRUCT","identifier":"ntpEnable","name":"时间配置信息"},{"childDataType":"TEXT","childName":"ntp服务地址","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"ntpServer","name":"时间配置信息"},{"childDataType":"INT","childName":"ntp端口","childSpecsDTO":{"dataType":"INT","max":"65536","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"ntpPort","name":"时间配置信息"},{"childDataType":"INT","childName":"ntp同步间隔","childSpecsDTO":{"dataType":"INT","max":"256","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"ntpSynInterval","name":"时间配置信息"},{"childDataType":"DATE","childName":"系统时间","childSpecsDTO":{"dataType":"DATE","length":64},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"systemTime","name":"时间配置信息"}],"dataType":"STRUCT","description":"","identifier":"TimeConfig","name":"时间配置信息","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"IP地址","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"ipAddr","name":"网络配置"},{"childDataType":"TEXT","childName":"子网掩码","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"netmask","name":"网络配置"},{"childDataType":"TEXT","childName":"网关","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"gateway","name":"网络配置"},{"childDataType":"TEXT","childName":"Mac地址","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"mac","name":"网络配置"},{"childDataType":"TEXT","childName":"dns1","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"dns1","name":"网络配置"},{"childDataType":"TEXT","childName":"dns2","childSpecsDTO":{"dataType":"TEXT","length":32},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"dns2","name":"网络配置"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"否","value":0},{"dataType":"BOOL","name":"是","value":1}],"childName":"主网口","dataSpecsList":[{"dataType":"BOOL","name":"否","value":0},{"dataType":"BOOL","name":"是","value":1}],"dataType":"STRUCT","identifier":"mainCard","name":"网络配置"}],"dataType":"STRUCT","description":"","identifier":"NetworkConfig","name":"网络配置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"高度","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"智能报警","eventType":"ALERT_EVENT_TYPE","identifier":"IntelligentAlarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"小孩防走失","value":11016},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"定时抓拍","value":10013},{"dataType":"ENUM","name":"客流统计","value":14001},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"工装检测","value":15001},{"dataType":"ENUM","name":"车流统计","value":14002},{"dataType":"ENUM","name":"路边停车","value":12004},{"dataType":"ENUM","name":"安全帽检测","value":15002},{"dataType":"ENUM","name":"视频图像模糊检测","value":10014},{"dataType":"ENUM","name":"视频无信号检测","value":10015},{"dataType":"ENUM","name":"视频黑屏检测","value":10016},{"dataType":"ENUM","name":"视频雪花检测","value":10017},{"dataType":"ENUM","name":"视频状态正常","value":10018},{"dataType":"ENUM","name":"目标检测","value":10019},{"dataType":"ENUM","name":"目标分类","value":10020},{"dataType":"ENUM","name":"OCR识别","value":10021},{"dataType":"ENUM","name":"路边停车应用","value":12005},{"dataType":"ENUM","name":"行为识别","value":11021},{"dataType":"ENUM","name":"行人重识别","value":11022},{"dataType":"ENUM","name":"人脸聚类","value":16001},{"dataType":"ENUM","name":"烟雾检测","value":13004},{"dataType":"ENUM","name":"高空抛物","value":11027},{"dataType":"ENUM","name":"电动车识别","value":11023},{"dataType":"ENUM","name":"pos机检测","value":11020},{"dataType":"ENUM","name":"打电话检测","value":11025},{"dataType":"ENUM","name":"打架斗殴","value":11026},{"dataType":"ENUM","name":"扬尘检测","value":15005},{"dataType":"ENUM","name":"积水检测","value":15006},{"dataType":"ENUM","name":"车辆工位检测","value":15007},{"dataType":"ENUM","name":"车辆工序检测","value":15008},{"dataType":"ENUM","name":"徘徊检测","value":11028}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"告警类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Algorithm","name":"算法","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ProductKey","name":"子设备产品名","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceName","name":"子设备名","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"告警内容","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlarmPicID","name":"图片ID","paraOrder":5}],"required":true},{"custom":false,"description":"","eventName":"智能告警","eventType":"ALERT_EVENT_TYPE","identifier":"IntelligentAlarm","outputData":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"口罩识别","value":11017},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"客流统计","value":14001},{"dataType":"ENUM","name":"路边停车","value":12004},{"dataType":"ENUM","name":"安全帽检测","value":15002},{"dataType":"ENUM","name":"视频图像模糊检测","value":10014},{"dataType":"ENUM","name":"视频无信号检测","value":10015},{"dataType":"ENUM","name":"视频黑屏检测","value":10016},{"dataType":"ENUM","name":"视频雪花检测","value":10017},{"dataType":"ENUM","name":"视频状态正常","value":10018},{"dataType":"ENUM","name":"目标检测","value":10019},{"dataType":"ENUM","name":"目标分类","value":10020},{"dataType":"ENUM","name":"OCR识别","value":10021},{"dataType":"ENUM","name":"路边停车应用","value":12005},{"dataType":"ENUM","name":"行为识别","value":11021},{"dataType":"ENUM","name":"行人重识别","value":11022},{"dataType":"ENUM","name":"人脸聚类","value":16001},{"dataType":"ENUM","name":"烟雾检测","value":13004},{"dataType":"ENUM","name":"高空抛物","value":11027},{"dataType":"ENUM","name":"电动车识别","value":11023},{"dataType":"ENUM","name":"pos机检测","value":11020},{"dataType":"ENUM","name":"打电话检测","value":11025},{"dataType":"ENUM","name":"打架斗殴","value":11026},{"dataType":"ENUM","name":"工服检测","value":15001},{"dataType":"ENUM","name":"扬尘检测","value":15005},{"dataType":"ENUM","name":"积水检测","value":15006},{"dataType":"ENUM","name":"车辆工位检测","value":15007},{"dataType":"ENUM","name":"车辆工序检测","value":15008},{"dataType":"ENUM","name":"徘徊检测","value":11028}],"childName":"告警类型","dataSpecsList":[{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"口罩识别","value":11017},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"客流统计","value":14001},{"dataType":"ENUM","name":"路边停车","value":12004},{"dataType":"ENUM","name":"安全帽检测","value":15002},{"dataType":"ENUM","name":"视频图像模糊检测","value":10014},{"dataType":"ENUM","name":"视频无信号检测","value":10015},{"dataType":"ENUM","name":"视频黑屏检测","value":10016},{"dataType":"ENUM","name":"视频雪花检测","value":10017},{"dataType":"ENUM","name":"视频状态正常","value":10018},{"dataType":"ENUM","name":"目标检测","value":10019},{"dataType":"ENUM","name":"目标分类","value":10020},{"dataType":"ENUM","name":"OCR识别","value":10021},{"dataType":"ENUM","name":"路边停车应用","value":12005},{"dataType":"ENUM","name":"行为识别","value":11021},{"dataType":"ENUM","name":"行人重识别","value":11022},{"dataType":"ENUM","name":"人脸聚类","value":16001},{"dataType":"ENUM","name":"烟雾检测","value":13004},{"dataType":"ENUM","name":"高空抛物","value":11027},{"dataType":"ENUM","name":"电动车识别","value":11023},{"dataType":"ENUM","name":"pos机检测","value":11020},{"dataType":"ENUM","name":"打电话检测","value":11025},{"dataType":"ENUM","name":"打架斗殴","value":11026},{"dataType":"ENUM","name":"工服检测","value":15001},{"dataType":"ENUM","name":"扬尘检测","value":15005},{"dataType":"ENUM","name":"积水检测","value":15006},{"dataType":"ENUM","name":"车辆工位检测","value":15007},{"dataType":"ENUM","name":"车辆工序检测","value":15008},{"dataType":"ENUM","name":"徘徊检测","value":11028}],"dataType":"STRUCT","identifier":"AlarmType","name":"事件列表"},{"childDataType":"TEXT","childName":"图片ID","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicID","name":"事件列表"},{"childDataType":"INT","childName":"图片大小","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"1","step":"1","unit":"Byte","unitName":"字节"},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicSize","name":"事件列表"},{"childDataType":"DATE","childName":"告警时间","childSpecsDTO":{"dataType":"DATE"},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"EventTime","name":"事件列表"},{"childDataType":"TEXT","childName":"算法","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"Algorithm","name":"事件列表"},{"childDataType":"TEXT","childName":"子设备产品名","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"ProductKey","name":"事件列表"},{"childDataType":"TEXT","childName":"子设备名","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"DeviceName","name":"事件列表"},{"childDataType":"TEXT","childName":"告警内容","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[7].childSpecsDTO"},"dataType":"STRUCT","identifier":"Data","name":"事件列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"EventList","name":"事件列表","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"算法模型部署结果","eventType":"INFO_EVENT_TYPE","identifier":"DeployAlgorithmModelResult","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskId","name":"任务ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Process","name":"部署进度","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"算法平台不支持","value":1},{"dataType":"ENUM","name":"下载模型失败","value":2},{"dataType":"ENUM","name":"MD5校验失败","value":3},{"dataType":"ENUM","name":"解压失败","value":4},{"dataType":"ENUM","name":"解密失败","value":5}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Code","name":"返回码","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Message","name":"返回信息","paraOrder":3}],"required":true},{"custom":false,"description":"","eventName":"请求挑战字","eventType":"INFO_EVENT_TYPE","identifier":"RequestChallenge","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ID2","name":"ID2信息","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"请求解密密钥","eventType":"INFO_EVENT_TYPE","identifier":"RequestDecryptionKey","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ModelId","name":"模型id","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ID2ProductKey","name":"ID2产品秘钥","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ID2","name":"ID2信息","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AuthCode","name":"授权码","paraOrder":3}],"required":true},{"custom":false,"description":"","eventName":"人脸库同步确认","eventType":"INFO_EVENT_TYPE","identifier":"OnSync","outputData":[{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"SyncTime","name":"同步时间戳","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Payload","name":"透传参数","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"同步成功","value":200},{"dataType":"ENUM","name":"同步失败重试","value":201},{"dataType":"ENUM","name":"同步失败不重试","value":202}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Code","name":"状态码","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"同步人脸图片失败","eventType":"ALERT_EVENT_TYPE","identifier":"OnFacePicError","outputData":[{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"SyncTime","name":"同步时间戳","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"16200","min":"16001","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Code","name":"错误码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"FaceMd5","name":"图片MD5值","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserId","name":"用户ID","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgorithmId","name":"算法ID","paraOrder":4}],"required":true}]}'), -('1692347065', '0', '2292875468', 'Ice_machine', '制冰机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"CleanSwitch","name":"清洗开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"IceShedding","name":"强制脱冰","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"制冰","value":0},{"dataType":"ENUM","name":"缺水","value":1},{"dataType":"ENUM","name":"冰满","value":2},{"dataType":"ENUM","name":"化冰","value":3},{"dataType":"ENUM","name":"故障","value":4},{"dataType":"ENUM","name":"清洗","value":5}],"dataType":"ENUM","description":"","identifier":"MachineState","name":"制冰机的工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关","value":0},{"dataType":"ENUM","name":"开","value":1},{"dataType":"ENUM","name":"停","value":2}],"dataType":"ENUM","description":"","identifier":"PowerSwitchAll","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","description":"","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"4000","min":"0","precise":7,"step":"0.01","unit":"W","unitName":"瓦特"},"dataType":"DOUBLE","description":"","identifier":"CurrentPower","name":"当前功率","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"设备故障","eventType":"INFO_EVENT_TYPE","identifier":"Error_alarm","outputData":[],"required":false}]}'), -('1692347065', '0', '2294283983', 'GlueSprayingMachine', '涂胶机', '{"services":[{"callType":"ASYNC","custom":false,"description":"触发设备的工艺参数报警","identifier":"SCraftAlarm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"E_CraftAlarm","name":"参数报警标识","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"工艺参数报警"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100000","min":"-100000","precise":7,"step":"0.1","unit":"Pa","unitName":"帕"},"dataType":"FLOAT","description":"","identifier":"E_Craft_PT_Gum","name":"出胶压力","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"-1000000","precise":7,"step":"0.1","unit":"m/s","unitName":"米每秒"},"dataType":"FLOAT","description":"","identifier":"E_Craft_Speed_Gum","name":"运行速度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","description":"设备理想生产周期","identifier":"E_Craft_Ideal_Cycle_Time","name":"设备理想生产周期","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备合格率","identifier":"E_Q","name":"设备合格率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备性能稼动率","identifier":"E_P","name":"设备性能稼动率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备时间稼动率","identifier":"E_A","name":"设备时间稼动率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备最新的OEE","identifier":"E_OEE","name":"设备综合效率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例:\n0 -- 正常运行\n1 -- 缺料\n2 -- 无生产任务\n3 -- 休息","identifier":"E_Stop_Reason","name":"停机原因","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"min","unitName":"分"},"dataType":"INT","description":"设备运行总时间","identifier":"E_TotalRunTime","name":"设备运行总时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备次品的累加器","identifier":"E_Defect_UP","name":"设备不良品","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备产量的累加器","identifier":"E_OutPut_UP","name":"设备产量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"E_Status_UP == 0 初始状态(开机)\nE_Status_UP == 1 运行\nE_Status_UP == 2 停止\nE_Status_UP == 3 故障","identifier":"E_Status_UP","name":"设备运行状态","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2296694782', 'SecondSedimentationPool', '二沉池', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2300737852', 'ToiletLid', '马桶盖', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"99999","min":"0","step":"0.1","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","identifier":"PowerConsumption","name":"耗电量","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2301093092', 'TicketMachine', '停车小票机设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"MachineInfo","name":"设备信息","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"UploadTicketHistory","name":"取票信息","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"UploadScannerHistory","name":"扫票信息","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"设备故障","eventType":"INFO_EVENT_TYPE","identifier":"Error_alarm","outputData":[],"required":true},{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2310177726', 'ElevatorPositionSensor', '电梯平层位置探测传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2313909421', 'WaterloggingSensor', '水浸检测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"BatteryLevel","name":"电池电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"水浸","value":1}],"dataType":"ENUM","description":"","identifier":"WaterLeachState","name":"水浸状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2349476652', 'ContactOxidationPool', '接触氧化池', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2350800747', 'Locator', '定位器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2360541883', 'SmokeAlarm', '烟雾报警器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-127","precise":7,"step":"0.01","unit":"dBm","unitName":"分贝毫瓦"},"dataType":"DOUBLE","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"检测到烟雾","value":1}],"dataType":"ENUM","description":"","identifier":"SmokeSensorState","name":"烟雾检测状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"当设备被撬时,上报该事件","eventName":"防撬报警","eventType":"INFO_EVENT_TYPE","identifier":"TamperAlarm","outputData":[],"required":false}]}'), -('1692347065', '0', '2363885615', 'Forestry', '林业', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2377707495', 'ActivityDetectionEquipment', '活动检测设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无人","value":0},{"dataType":"BOOL","name":"有人","value":1}],"dataType":"BOOL","description":"","identifier":"location2","name":"位置2状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无人","value":0},{"dataType":"BOOL","name":"有人","value":1}],"dataType":"BOOL","description":"","identifier":"location4","name":"位置4状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无人","value":0},{"dataType":"BOOL","name":"有人","value":1}],"dataType":"BOOL","description":"","identifier":"location3","name":"位置3状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无人","value":0},{"dataType":"BOOL","name":"有人","value":1}],"dataType":"BOOL","description":"","identifier":"location1","name":"位置1状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"Status","name":"模块状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2403153232', 'AirConditioner', '空调', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"55.0","min":"-40.0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"IndoorTemperature","name":"室内温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"TemperatureModelStatus","name":"温度模块状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"AirConElectricMeterSwitch","name":"空开电表开闭状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"2147483647","min":"0","precise":7,"step":"0.1","unit":"kW·h","unitName":"千瓦时"},"dataType":"FLOAT","description":"","identifier":"AirConPowerConsumption","name":"空开电表用电量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"400","min":"0","precise":7,"step":"0.1","unit":"V","unitName":"伏特"},"dataType":"FLOAT","description":"","identifier":"AirConVolt","name":"空开电表电压值","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"30","min":"0","precise":7,"step":"0.1","unit":"A","unitName":"安培"},"dataType":"FLOAT","description":"","identifier":"AirConCurrent","name":"空开电表电流值","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"AirConElectricMeterControl","name":"空开电表控制变量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"55.0","min":"-40.0","precise":7,"step":"0.1","unit":"°","unitName":"度"},"dataType":"FLOAT","description":"","identifier":"CurrentTemperature","name":"温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"55.0","min":"-40.0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"TemperatureFromIRControlModel","name":"红外控制模块的输出温度值","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"空操作","value":0},{"dataType":"ENUM","name":"打开空调","value":1},{"dataType":"ENUM","name":"关闭空调","value":2},{"dataType":"ENUM","name":"设置温度","value":3}],"dataType":"ENUM","description":"","identifier":"CommandFromIRControlModel","name":"红外控制模块指令","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"IRControlModelCommStatus","name":"红外模块的通信状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2408435142', 'LocalControlCenter', '中控屏', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2408920011', 'Bed', '床', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2408970900', 'GovernmentLed', '路政设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未查询","value":0},{"dataType":"BOOL","name":"查询","value":1}],"dataType":"BOOL","description":"","identifier":"query","name":"查询车位余量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"remain","name":"车位余量信息","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2410032724', 'IlluminationSensor', '光照度传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"65535","min":"0","precise":7,"step":"0.01","unit":"Lux","unitName":"照度"},"dataType":"DOUBLE","description":"","identifier":"MeasuredIlluminance","name":"光照度检测值","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2424931386', 'DisplacementMonitor', '位移监控器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2437549130', 'PressureCooker', '电压力锅', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机中","value":0},{"dataType":"ENUM","name":"烹饪中","value":1},{"dataType":"ENUM","name":"预约中","value":2},{"dataType":"ENUM","name":"保温中","value":3},{"dataType":"ENUM","name":"预热中","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"软","value":0},{"dataType":"ENUM","name":"标准","value":1},{"dataType":"ENUM","name":"硬","value":2}],"dataType":"ENUM","description":"","identifier":"MouthFeel","name":"口感选择","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"230","min":"70","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"230","min":"90","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"230","min":"90","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"PressureOffTemperature","name":"继电器断开温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"230","min":"90","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"PressureOnTemperature","name":"继电器复位温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地食谱","value":1},{"dataType":"ENUM","name":"云食谱","value":2}],"dataType":"ENUM","description":"","identifier":"RecipeInformation","name":"食谱信息","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentTime","name":"预约时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2438988012', 'MosquitoLamp', '灭蚊器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"普通模式","value":0},{"dataType":"ENUM","name":"睡眠模式","value":1}],"dataType":"ENUM","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2452160127', 'BlueToothScale', '蓝牙秤', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"200","min":"0","precise":7,"step":"0.1","unit":"Kg","unitName":"公斤"},"dataType":"FLOAT","description":"","identifier":"Weight","name":"称重值","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"模块正常","value":0},{"dataType":"ENUM","name":"模块低电量","value":1},{"dataType":"ENUM","name":"模块状态异常","value":2}],"dataType":"ENUM","description":"","identifier":"Status","name":"模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2454907825', 'GroundSourceHeatPump', '地源热泵', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2456508572', 'EnvironmentalNoiseMonitor', '环境噪音监测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2463863358', 'AlarmButton', '手动求救报警', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"BatteryLevel","name":"电池电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"危险报警","value":1}],"dataType":"ENUM","description":"","identifier":"AlarmState","name":"报警状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '246986525', 'Tracker', '定位终端', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"36","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"630000","min":"0","precise":7,"step":"0.01","unit":"mA","unitName":"毫安"},"dataType":"DOUBLE","description":"","identifier":"Current","name":"当前电流","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2494833579', 'WarningGW', '报警网关', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"DeleteSensor","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":9},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SensorSerialNumber","name":"传感器串码","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"删除传感器"},{"callType":"ASYNC","custom":false,"description":"","identifier":"ClearAlarm","inputParams":[],"outputParams":[],"required":false,"serviceName":"一键消除报警"},{"callType":"ASYNC","custom":false,"description":"","identifier":"RouterUpgrade","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":9},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"RouterSerialNumber","name":"网关串码","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"网关升级"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Reboot","inputParams":[],"outputParams":[],"required":false,"serviceName":"重启"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"探测器","value":1},{"dataType":"ENUM","name":"遥控器","value":2},{"dataType":"ENUM","name":"报警器","value":3},{"dataType":"ENUM","name":"键盘","value":4}],"dataType":"ENUM","description":"","identifier":"SensorClass","name":"传感器类别","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"被动红外","value":1},{"dataType":"ENUM","name":"红外对射","value":10},{"dataType":"ENUM","name":"烟感","value":2},{"dataType":"ENUM","name":"门磁","value":3},{"dataType":"ENUM","name":"可燃气感","value":4},{"dataType":"ENUM","name":"水浸","value":5},{"dataType":"ENUM","name":"幕帘探测器","value":6},{"dataType":"ENUM","name":"紧急按钮","value":7},{"dataType":"ENUM","name":"单体门磁","value":8},{"dataType":"ENUM","name":"烟感B","value":9}],"dataType":"ENUM","description":"","identifier":"SensorType","name":"传感器型号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":9},"dataType":"TEXT","description":"","identifier":"SensorSerialNumber","name":"传感器串码","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"传感器名称","childSpecsDTO":{"dataType":"TEXT","length":63},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"SensorLocation","name":"传感器名称"},{"childDataType":"TEXT","childName":"传感器串码","childSpecsDTO":{"dataType":"TEXT","length":9},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"SensorSerialNumber","name":"传感器名称"}],"dataType":"STRUCT","description":"","identifier":"SensorName","name":"传感器名称","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"传感器串码","childSpecsDTO":{"dataType":"TEXT","length":9},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"SensorSerialNumber","name":"传感器工作模式"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"在家模式","value":1},{"dataType":"ENUM","name":"外出模式","value":2},{"dataType":"ENUM","name":"在家和外出模式","value":3},{"dataType":"ENUM","name":"睡眠模式","value":4},{"dataType":"ENUM","name":"在家和睡眠模式","value":5},{"dataType":"ENUM","name":"外出和睡眠模式","value":6},{"dataType":"ENUM","name":"在家外出和睡眠模式","value":7}],"childName":"传感器布防模式","dataSpecsList":[{"dataType":"ENUM","name":"在家模式","value":1},{"dataType":"ENUM","name":"外出模式","value":2},{"dataType":"ENUM","name":"在家和外出模式","value":3},{"dataType":"ENUM","name":"睡眠模式","value":4},{"dataType":"ENUM","name":"在家和睡眠模式","value":5},{"dataType":"ENUM","name":"外出和睡眠模式","value":6},{"dataType":"ENUM","name":"在家外出和睡眠模式","value":7}],"dataType":"STRUCT","identifier":"SensorWorkMode","name":"传感器工作模式"}],"dataType":"STRUCT","description":"","identifier":"SensorWorkMode","name":"传感器工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"传感器串码","childSpecsDTO":{"dataType":"TEXT","length":9},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"SensorSerialNumber","name":"传感器RF信号质量"},{"childDataType":"DOUBLE","childName":"信号强度","childSpecsDTO":{"dataType":"DOUBLE","max":"-1","min":"-127","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"RSSI","name":"传感器RF信号质量"}],"dataType":"STRUCT","description":"","identifier":"RFStrength","name":"传感器RF信号质量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":9},"dataType":"TEXT","description":"","identifier":"RouterSerialNumber","name":"网关串码","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":31},"dataType":"TEXT","description":"","identifier":"RouterName","name":"网关名称","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"睡眠模式","value":0},{"dataType":"ENUM","name":"在家模式","value":1},{"dataType":"ENUM","name":"外出模式","value":2}],"dataType":"ENUM","description":"","identifier":"RouterWorkMode","name":"网关工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"-1","min":"-127","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"RouterRSSI","name":"网关信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"TemplateEnableSwitch","name":"网关布防模板开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"传感器故障上报","eventType":"INFO_EVENT_TYPE","identifier":"SensorError","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":9},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SensorSerialNumber","name":"传感器串码","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"传感器离线告警","eventType":"INFO_EVENT_TYPE","identifier":"SensorNetstateAlarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"在线","value":0},{"dataType":"ENUM","name":"离线","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SensorState","name":"传感器状态","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":9},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SensorSerialNumber","name":"传感器串码","paraOrder":1}],"required":false}]}'), -('1692347065', '0', '2507782814', 'Drivingbehavior', '驾驶行为数据采集', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"DeployAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoURL","name":"算法模型文件URL","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法模型文件名","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":2}],"outputParams":[],"required":true,"serviceName":"部署算法模型"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"VideoSrcURL","name":"视频源URL","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"算法任务号","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"启动算法"},{"callType":"ASYNC","custom":false,"description":"调用者根据StoreID获取设备上已部署的算法名称、算法版本信息。","identifier":"QueryAlgorithmList","inputParams":[],"outputParams":[],"required":true,"serviceName":"查询已部署的所有算法"},{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryDeployStatus","inputParams":[],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"部署中","value":0},{"dataType":"BOOL","name":"部署完毕","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"DeployDone","name":"是否部署完毕","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"DeployRate","name":"部署进度","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoName","name":"算法名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":3}],"required":true,"serviceName":"查询部署状态"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"任务号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"停止算法"},{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryExecutingAlgorithm","inputParams":[],"outputParams":[],"required":true,"serviceName":"查询正在运行的算法"},{"callType":"ASYNC","custom":false,"description":"","identifier":"DeleteSingleAlgo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"删除结果","paraOrder":0}],"required":true,"serviceName":"删除指定算法模型"},{"callType":"ASYNC","custom":false,"description":"","identifier":"ClearAllAlgorithms","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"清除结果","paraOrder":0}],"required":true,"serviceName":"清除所有算法"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"设备连接LP后,上报平台属性(X86、Linux、Android等),服务端根据此属性选择对应平台的算法进行部署。","identifier":"Platform","name":"上报平台属性","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"单条算法执行结果","eventType":"INFO_EVENT_TYPE","identifier":"ExicutingAlgorithm","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskID","name":"任务号","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"执行结果","paraOrder":3}],"required":true},{"custom":false,"description":"","eventName":"单条算法部署结果","eventType":"INFO_EVENT_TYPE","identifier":"DeployedAlorithm","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoVweision","name":"算法版本","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"部署结果","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"单条算法停止结果","eventType":"INFO_EVENT_TYPE","identifier":"StopAlgorithm","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskID","name":"任务号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"算法停止结果","paraOrder":1}],"required":false}]}'), -('1692347065', '0', '2510313243', 'HotAirBlower', '热风机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2518662341', 'IntelligentMassageChair', '智能按摩椅', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"SetBackUpAndDown","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"靠背升","value":1},{"dataType":"ENUM","name":"靠背降","value":2},{"dataType":"ENUM","name":"靠背升降停","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"BackLiftingMode","name":"靠背升降模式","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"设置靠背升降"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SetShankfFex","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"小腿伸","value":1},{"dataType":"ENUM","name":"小腿缩","value":2},{"dataType":"ENUM","name":"小腿伸缩停","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"ShankfFexMode","name":"小腿升降模式","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"设置小腿伸缩"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SetShankUpAndDown","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"小腿升","value":1},{"dataType":"ENUM","name":"小腿降","value":2},{"dataType":"ENUM","name":"小腿升降停","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"ShankLiftingModeMode","name":"小腿升降模式","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"设置小腿升降"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SetSpeed","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设置","value":0},{"dataType":"ENUM","name":"加速","value":1},{"dataType":"ENUM","name":"减速","value":2}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"SetSpeedMode","name":"速度调整模式","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"6","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"SpeedOut","name":"速度输出","paraOrder":0}],"required":false,"serviceName":"调整速度"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PauseSwitch","name":"暂停开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"头部按摩","value":1},{"dataType":"ENUM","name":"颈肩按摩","value":2},{"dataType":"ENUM","name":"颈按摩","value":3},{"dataType":"ENUM","name":"肩按摩","value":4},{"dataType":"ENUM","name":"背部按摩","value":5},{"dataType":"ENUM","name":"腰部按摩","value":6},{"dataType":"ENUM","name":"臀部按摩","value":7},{"dataType":"ENUM","name":"膝盖按摩","value":8},{"dataType":"ENUM","name":"腿部集中按摩","value":9}],"dataType":"ENUM","description":"","identifier":"LocalMassage","name":"局部按摩","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"全身气囊","value":1},{"dataType":"ENUM","name":"臂肩气囊","value":2},{"dataType":"ENUM","name":"背腰部气囊","value":3},{"dataType":"ENUM","name":"坐垫部气囊","value":4},{"dataType":"ENUM","name":"腿部气囊","value":5}],"dataType":"ENUM","description":"","identifier":"GasbagPosition","name":"气囊部位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"10分钟","value":1},{"dataType":"ENUM","name":"20分钟","value":2},{"dataType":"ENUM","name":"30分钟","value":3}],"dataType":"ENUM","description":"","identifier":"MassageTimeLevel","name":"按摩时间档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"关","value":1},{"dataType":"ENUM","name":"慢速","value":2},{"dataType":"ENUM","name":"中速","value":3},{"dataType":"ENUM","name":"快速","value":4}],"dataType":"ENUM","description":"","identifier":"SoleRoller","name":"脚底滚轮","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"宽","value":1},{"dataType":"ENUM","name":"中","value":2},{"dataType":"ENUM","name":"窄","value":3}],"dataType":"ENUM","description":"","identifier":"MassageRange","name":"机芯幅度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设定","value":0},{"dataType":"ENUM","name":"全身","value":1},{"dataType":"ENUM","name":"局部","value":2},{"dataType":"ENUM","name":"定点","value":3}],"dataType":"ENUM","description":"","identifier":"MassagePosition","name":"按摩位置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"6","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"MassageSpeed","name":"按摩速度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"运动恢复","value":1},{"dataType":"ENUM","name":"舒展活络","value":2},{"dataType":"ENUM","name":"休憩促眠","value":3},{"dataType":"ENUM","name":"工作减压","value":4},{"dataType":"ENUM","name":"肩颈重点","value":5},{"dataType":"ENUM","name":"腰椎舒缓","value":6},{"dataType":"ENUM","name":"总裁养身","value":7},{"dataType":"ENUM","name":"女王纤体","value":8},{"dataType":"ENUM","name":"心灵SPA","value":9}],"dataType":"ENUM","description":"","identifier":"MassageProgram","name":"自动按摩","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2545663738', 'IntelligentCurtain', '智能窗帘', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurtainPosition","name":"窗帘打开位置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"反转","value":1},{"dataType":"ENUM","name":"校准中","value":2}],"dataType":"ENUM","description":"","identifier":"CurtainWorkState","name":"窗帘工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关窗帘","value":0},{"dataType":"ENUM","name":"开窗帘","value":1},{"dataType":"ENUM","name":"暂停窗帘","value":2}],"dataType":"ENUM","description":"","identifier":"CurtainOperation","name":"窗帘操作模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '2546524342', 'ParkWNC', '超声车位检测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","description":"","identifier":"Ifcar","name":"车位状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2555016213', 'Stove', '燃气灶', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"泄漏","value":1}],"dataType":"ENUM","description":"","identifier":"GasSensorState","name":"燃气泄漏检测状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"LeftSwitch","name":"左炉开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1}],"dataType":"ENUM","description":"","identifier":"LeftWorkState","name":"左炉工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"LeftWorkTime","name":"左炉工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"RightSwitch","name":"右炉开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1}],"dataType":"ENUM","description":"","identifier":"RightWorkState","name":"右炉工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RightWorkTime","name":"右炉工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"9","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"LeftFociFire","name":"左灶火力调节","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"9","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"RightFociFire","name":"右灶火力调节","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"5999","min":"1","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","description":"","identifier":"LeftFociTimer","name":"左灶定时关闭时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"5999","min":"1","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","description":"","identifier":"RightFociTimer","name":"右灶定时关闭时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"LeftFociTemputer","name":"左灶温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"RightFociTemputer","name":"右灶温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":254},"dataType":"TEXT","description":"","identifier":"Auto_Cook_Param","name":"智能烹饪参数","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在进行固件升级","value":0},{"dataType":"BOOL","name":"正在进行固件升级","value":1}],"dataType":"BOOL","description":"","identifier":"OTA_Status","name":"固件升级状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"燃气压力过低","value":1},{"dataType":"ENUM","name":"燃气压力过高","value":2},{"dataType":"ENUM","name":"通讯故障","value":3},{"dataType":"ENUM","name":"点火失败","value":4}],"dataType":"ENUM","description":"","identifier":"Error_Code","name":"灶具错误码","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"左炉告警","eventType":"INFO_EVENT_TYPE","identifier":"LeftWarning","outputData":[],"required":false},{"custom":false,"description":"","eventName":"右炉告警","eventType":"INFO_EVENT_TYPE","identifier":"RightWarning","outputData":[],"required":false},{"custom":false,"description":"","eventName":"健康油温","eventType":"INFO_EVENT_TYPE","identifier":"Health_Oil_Temperature","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"未触发","value":0},{"dataType":"BOOL","name":"已触发","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Health_Oil_Temprature_check","name":"健康油温监测状态","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"固件升级成功","eventType":"INFO_EVENT_TYPE","identifier":"OTA_Success_Event","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在进行固件升级","value":0},{"dataType":"BOOL","name":"正在进行固件升级","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"OTA_Status","name":"固件升级状态","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '255835323', 'DustMonitor', '扬尘监测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2560710653', 'WaterMeter', '水表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"2147483647","min":"0","precise":7,"step":"0.1","unit":"m³","unitName":"立方米"},"dataType":"FLOAT","description":"","identifier":"WaterConsumption","name":"用水量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2},{"dataType":"ENUM","name":"低电量","value":3}],"dataType":"ENUM","description":"","identifier":"WaterMeterState","name":"水表模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2574953498', 'Plant', '种植', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '259427668', 'MeteorologicalStation', '气象站监控仪', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"500","min":"0","precise":7,"step":"0.01","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"DOUBLE","description":"","identifier":"PM25Value","name":"PM25浓度","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2616770563', 'ElevatorBodySensor', '电梯人体探测传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2621377436', 'SecurityGateway', '安防监测网关', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"GatewayStatus","name":"网关状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"DoorStatus01","name":"门1状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"DoorStatus02","name":"门2状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"WindowStatus02","name":"窗2状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"WindowStatus03","name":"窗3状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"WindowStatus04","name":"窗4状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"WindowStatus05","name":"窗5状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"WindowStatus06","name":"窗6状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"WindowStatus07","name":"窗7状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"WindowStatus08","name":"窗8状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"BOOL","description":"","identifier":"WindowStatus01","name":"窗1状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2634940064', 'SignalCollector', '游乐设备信号采集器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2652214945', 'Doorbell', '门铃', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"静音","value":0},{"dataType":"ENUM","name":"低音","value":1},{"dataType":"ENUM","name":"中音","value":2},{"dataType":"ENUM","name":"高音","value":3}],"dataType":"ENUM","description":"","identifier":"VolumeLevel","name":"音量档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无人","value":0},{"dataType":"BOOL","name":"有人","value":1}],"dataType":"BOOL","description":"","identifier":"MotionAlarmState","name":"红外检测状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"VolumePercentage","name":"音量百分比","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2658500861', 'Sceneswitch2', '场景面板开关', '{"services":[],"properties":[],"events":[{"custom":false,"description":"","eventName":"键值信息上报","eventType":"INFO_EVENT_TYPE","identifier":"KeyValueNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"6","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"KeyValue","name":"键值","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2665258787', 'SmartLife', '智能生活', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2671592334', 'FlowIndicator', '水流指示器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '268775472', 'OutsideShadeCurtain', '外遮荫帘幕', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2688462193', 'Light', '灯', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ToggleLightSwitch","inputParams":[],"outputParams":[],"required":false,"serviceName":"翻转主灯开关"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SetLightSwitchTimer","inputParams":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","direction":"PARAM_INPUT","identifier":"Timer","name":"计时器","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","direction":"PARAM_INPUT","identifier":"LightSwitch","name":"主灯开关","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"设置主灯开关倒计时"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopCountdown","inputParams":[],"outputParams":[],"required":false,"serviceName":"停止倒计时"},{"callType":"ASYNC","custom":false,"description":"音乐律动的标准服务","identifier":"Rhythm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"360","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"Hue","name":"Hue","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"Saturation","name":"Saturation","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"Value","name":"Value","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"250","min":"0","precise":0,"step":"1","unit":"ms","unitName":"毫秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"LightDuration","name":"LightDuration","paraOrder":3}],"outputParams":[],"required":false,"serviceName":"Rhythm"},{"callType":"SYNC","custom":false,"description":"","identifier":"Rhythm2","inputParams":[],"outputParams":[],"required":false,"serviceName":"Rhythm2"},{"callType":"ASYNC","custom":false,"description":"","identifier":"CommonService","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"setProps","value":0}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"method","name":"方法","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"params","name":"参数","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"flag","name":"特性","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":30},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"seq","name":"序列号","paraOrder":3}],"outputParams":[],"required":false,"serviceName":"标准服务"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"红色","childSpecsDTO":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Red","name":"RGB调色"},{"childDataType":"INT","childName":"绿色","childSpecsDTO":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Green","name":"RGB调色"},{"childDataType":"INT","childName":"蓝色","childSpecsDTO":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Blue","name":"RGB调色"}],"dataType":"STRUCT","description":"","identifier":"RGBColor","name":"RGB调色","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"主灯开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"NightLightSwitch","name":"夜灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"手动","value":0},{"dataType":"ENUM","name":"阅读","value":1},{"dataType":"ENUM","name":"影院","value":2},{"dataType":"ENUM","name":"夜灯","value":3},{"dataType":"ENUM","name":"生活","value":4},{"dataType":"ENUM","name":"柔和","value":5}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"7000","min":"2000","precise":0,"step":"1","unit":"K","unitName":"开尔文"},"dataType":"INT","description":"","identifier":"ColorTemperature","name":"冷暖色温","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"Brightness","name":"明暗度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"色调","childSpecsDTO":{"dataType":"DOUBLE","max":"360","min":"0","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Hue","name":"HSL调色"},{"childDataType":"DOUBLE","childName":"饱和度","childSpecsDTO":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Saturation","name":"HSL调色"},{"childDataType":"DOUBLE","childName":"亮度","childSpecsDTO":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Lightness","name":"HSL调色"}],"dataType":"STRUCT","description":"","identifier":"HSLColor","name":"HSL调色","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"色调","childSpecsDTO":{"dataType":"DOUBLE","max":"360","min":"0","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Hue","name":"HSV调色"},{"childDataType":"DOUBLE","childName":"饱和度","childSpecsDTO":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Saturation","name":"HSV调色"},{"childDataType":"DOUBLE","childName":"明度","childSpecsDTO":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Value","name":"HSV调色"}],"dataType":"STRUCT","description":"","identifier":"HSVColor","name":"HSV调色","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[8].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","description":"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致。","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"色调","childSpecsDTO":{"dataType":"INT","max":"360","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[9].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Hue","name":"色调"},{"childDataType":"INT","childName":"饱和度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[9].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Saturation","name":"饱和度"},{"childDataType":"INT","childName":"明度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[9].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Value","name":"明度"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"运行","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"运行","value":0},{"dataType":"BOOL","name":"关闭","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"启用"}],"dataType":"ARRAY","size":6},"dataType":"ARRAY","identifier":"ColorArr","name":"颜色数组","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"ColorSpeed","name":"变色速度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"C","value":0},{"dataType":"ENUM","name":"CW","value":1},{"dataType":"ENUM","name":"RGB","value":2},{"dataType":"ENUM","name":"RGBC","value":3},{"dataType":"ENUM","name":"RGBCW","value":4}],"dataType":"ENUM","description":"","identifier":"LightType","name":"灯类型","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"mono","value":0},{"dataType":"ENUM","name":"color","value":1}],"dataType":"ENUM","description":"","identifier":"LightMode","name":"灯模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分"},"dataType":"DOUBLE","description":"","identifier":"CountdownRemainingTime","name":"倒计时剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"色调","childSpecsDTO":{"dataType":"INT","max":"360","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[14].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Hue","name":"场景颜色"},{"childDataType":"INT","childName":"饱和度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[14].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Saturation","name":"场景颜色"},{"childDataType":"INT","childName":"明度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[14].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Value","name":"场景颜色"}],"dataType":"STRUCT","description":"","identifier":"ScenesColor","name":"场景颜色","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"停止","value":0},{"dataType":"BOOL","name":"正常","value":1}],"dataType":"BOOL","description":"","identifier":"Heartbeat","name":"心跳","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"白光","value":0},{"dataType":"ENUM","name":"彩光","value":1}],"childName":"灯模式","dataSpecsList":[{"dataType":"ENUM","name":"白光","value":0},{"dataType":"ENUM","name":"彩光","value":1}],"dataType":"STRUCT","identifier":"LightMode","name":"灯场景"},{"childDataType":"INT","childName":"变色速度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"ColorSpeed","name":"灯场景"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"常亮","value":0},{"dataType":"ENUM","name":"闪烁","value":1},{"dataType":"ENUM","name":"渐变","value":2}],"childName":"场景模式","dataSpecsList":[{"dataType":"ENUM","name":"常亮","value":0},{"dataType":"ENUM","name":"闪烁","value":1},{"dataType":"ENUM","name":"渐变","value":2}],"dataType":"STRUCT","identifier":"SceneMode","name":"灯场景"},{"childDataType":"TEXT","childName":"灯颜色","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"ColorArr","name":"灯场景"},{"childDataType":"TEXT","childName":"明暗度","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"Brightness","name":"灯场景"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"已停止","value":0},{"dataType":"BOOL","name":"运行中","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"已停止","value":0},{"dataType":"BOOL","name":"运行中","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"灯场景"},{"childDataType":"TEXT","childName":"场景标识","childSpecsDTO":{"dataType":"TEXT","length":100},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"SceneId","name":"灯场景"},{"childDataType":"TEXT","childName":"场景参数","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[16].dataSpecsList[7].childSpecsDTO"},"dataType":"STRUCT","identifier":"SceneItems","name":"灯场景"}],"dataType":"STRUCT","description":"","identifier":"LightScene","name":"灯场景","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"序列号","childSpecsDTO":{"dataType":"TEXT","length":30},"dataSpecs":{"$ref":"$.properties[17].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"seq","name":"标准服务响应"}],"dataType":"STRUCT","description":"","identifier":"CommonServiceResponse","name":"标准服务响应","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2694031985', 'Washer', '洗衣机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"完成","value":2},{"dataType":"ENUM","name":"预约","value":3},{"dataType":"ENUM","name":"暂停","value":4},{"dataType":"ENUM","name":"错误","value":5},{"dataType":"ENUM","name":"关机","value":6}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低","value":1},{"dataType":"ENUM","name":"中","value":2},{"dataType":"ENUM","name":"高","value":3}],"dataType":"ENUM","description":"","identifier":"WaterLevel","name":"水位档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"LeftTime","name":"剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"SoakTime","name":"浸泡时长","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WashTime","name":"洗涤时长","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RinshTime","name":"漂洗时长","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"SpinTime","name":"脱水时长","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"10","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"RinshTimes","name":"漂洗次数","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1600","min":"100","precise":0,"step":"1","unit":"rpm","unitName":"每分钟转数"},"dataType":"INT","description":"","identifier":"TargetSpinSpeed","name":"脱水转速","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"90","min":"20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetWaterTemperature","name":"目标水温","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"DryTime","name":"烘干时长","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"DrySwitch","name":"烘干开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000","min":"0","precise":7,"step":"0.01","unit":"mL","unitName":"毫升"},"dataType":"DOUBLE","description":"","identifier":"TargetDetergent","name":"洗涤剂自投放","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000","min":"0","precise":7,"step":"0.01","unit":"mL","unitName":"毫升"},"dataType":"DOUBLE","description":"","identifier":"TargetSoftener","name":"柔顺剂自投放","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000","min":"0","precise":7,"step":"0.01","unit":"mL","unitName":"毫升"},"dataType":"DOUBLE","description":"","identifier":"TargetDisinfectant","name":"消毒剂自投放","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"DoorOpeningState","name":"门锁打开状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"运行","value":0},{"dataType":"BOOL","name":"暂停","value":1}],"dataType":"BOOL","description":"","identifier":"PauseSwitch","name":"暂停开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无","value":0},{"dataType":"ENUM","name":"弱","value":1},{"dataType":"ENUM","name":"中","value":2},{"dataType":"ENUM","name":"强","value":3}],"dataType":"ENUM","description":"","identifier":"DryOpt","name":"烘干强度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"720","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"ReservationTimer","name":"预约定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2697295584', 'SideWindow', '侧窗', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2699306609', 'FootBath', '足浴盆', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"75","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"TargetFootbathTime","name":"目标足浴时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"75","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"LeftFootbathTime","name":"剩余足浴时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"HeatSwitch","name":"加热开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"MassageSwitch","name":"按摩开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"OzoneSwitch","name":"臭氧开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"SurfSwitch","name":"冲浪开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"助眠","value":1},{"dataType":"ENUM","name":"抗疲惫","value":2},{"dataType":"ENUM","name":"保健","value":3}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"温度报警","eventType":"INFO_EVENT_TYPE","identifier":"TemperatureAlarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0},{"dataType":"ENUM","name":"高温报警","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"报警类型","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '27048060', 'Inverter', '变频器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"1","unit":"V","unitName":"伏特"},"dataType":"INT","identifier":"DC_V","name":"母线电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"1","unit":"h","unitName":"时"},"dataType":"INT","identifier":"PwOnTime","name":"通电时间累积","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"1","unit":"h","unitName":"时"},"dataType":"INT","identifier":"InverterRunTime","name":"运行时间累积","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"1","unit":"h","unitName":"时"},"dataType":"INT","identifier":"FanRunTime","name":"风扇运行时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"30000","min":"0","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","identifier":"RadiatorTemperature","name":"散热器温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"-32768","step":"10","unit":"Hz","unitName":"赫兹"},"dataType":"INT","identifier":"OutputFrequency","name":"输出频率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"3000","min":"0","step":"10","unit":"V","unitName":"伏特"},"dataType":"INT","identifier":"OutputVoltage","name":"输出电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"10","unit":"","unitName":"无"},"dataType":"INT","identifier":"InvertStatus_1","name":"变频器运行状态1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"10","unit":"","unitName":"无"},"dataType":"INT","identifier":"InvertStatus_2","name":"变频器运行状态2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"10","unit":"","unitName":"无"},"dataType":"INT","identifier":"InvertStatus_3","name":"变频器运行状态3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"-32768","step":"10","unit":"A","unitName":"安培"},"dataType":"INT","identifier":"OutputCurrent","name":"输出电流","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2747026009', 'SmartWaterMeter', '智能水表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2},{"dataType":"ENUM","name":"低电量","value":3}],"dataType":"ENUM","description":"","identifier":"WaterMeterState","name":"水表模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"2147483647","min":"0","precise":7,"step":"0.1","unit":"m³","unitName":"立方米"},"dataType":"FLOAT","description":"","identifier":"WaterConsumption","name":"用水量","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2760232875', 'WetCurtain', '湿帘', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2770984356', 'WindSensor', '风速传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m/s","unitName":"米每秒"},"dataType":"DOUBLE","description":"","identifier":"Speed","name":"速度","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2777128647', 'ElevatorController', '梯控', '{"services":[{"callType":"ASYNC","custom":false,"identifier":"ReleaseFloors","inputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_INPUT","identifier":"targetFloorsList","name":"要释放的楼层","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"释放受控楼层"},{"callType":"ASYNC","custom":false,"identifier":"ConfigQrCodePermission","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"identityId","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"qrCode","name":"二维码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"effectiveTime","name":"生效时间","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"expireTime","name":"过期时间","paraOrder":3},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_INPUT","identifier":"permission","name":"楼层权限","paraOrder":4}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"retCode","name":"返回码","paraOrder":0}],"required":true,"serviceName":"配置二维码权限"},{"callType":"ASYNC","custom":false,"identifier":"DelQrCodePermission","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"identityId","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"qrCode","name":"二维码","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"删除二维码权限"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryQrCodePermission","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"identityId","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"qrCode","name":"二维码","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"effectiveTime","name":"生效时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"expireTime","name":"过期时间","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"permission","name":"楼层权限","paraOrder":2}],"required":true,"serviceName":"查询二维码权限"},{"callType":"ASYNC","custom":false,"description":"","identifier":"CallElevator","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"targetFloor","name":"目标楼层","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"startFloor","name":"起始楼层","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"identityId","name":"用户ID","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"起始楼层电梯A门","value":0},{"dataType":"ENUM","name":"起始楼层电梯B门","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"startFloorDoor","name":"起始楼层电梯门","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"目标楼层电梯A门","value":0},{"dataType":"ENUM","name":"目标楼层电梯B门","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"targetFloorDoor","name":"目标楼层电梯门","paraOrder":4}],"outputParams":[],"required":true,"serviceName":"呼梯"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryStatus","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Params","name":"输入参数","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"127","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Status","name":"电梯状态","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"CurrentFloor","name":"当前楼层","paraOrder":1}],"required":false,"serviceName":"查询电梯状态"}],"properties":[],"events":[{"custom":false,"description":"","eventName":"二维码刷梯释放楼层事件","eventType":"INFO_EVENT_TYPE","identifier":"ScanQrCodeForElevatorEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"identityId","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"qrCode","name":"二维码","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"releaseFloors","name":"已释放的楼层","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"呼梯事件","eventType":"INFO_EVENT_TYPE","identifier":"CallElevatorEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"identityId","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"startFloor","name":"起始楼层","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"targetFloor","name":"目标楼层","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"目标楼层电梯A门","value":0},{"dataType":"ENUM","name":"目标楼层电梯B门","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"targetFloorDoor","name":"目标楼层电梯门","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"起始楼层电梯A门","value":0},{"dataType":"ENUM","name":"起始楼层电梯B门","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"startFloorDoor","name":"起始楼层电梯门","paraOrder":4}],"required":true}]}'), -('1692347065', '0', '2796643122', 'Lighting', '路灯照明', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"TimeReset","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TimeReset","name":"TimeReset","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"设备校时服务"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SetTimerTask","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SetTimer","name":"SetTimer","paraOrder":0}],"required":false,"serviceName":"时间任务下发"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":1},{"dataType":"BOOL","name":"关闭","value":0}],"dataType":"BOOL","description":"","identifier":"LightStatus","name":"工作状态","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"调光等级采用百分比表示","identifier":"LightAdjustLevel","name":"调光等级","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"4","min":"0","precise":7,"step":"0.1","unit":"V","unitName":"伏特"},"dataType":"FLOAT","description":"显示设备电压;电参数采用4个字节浮点型数据","identifier":"LightVolt","name":"工作电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"9","min":"0","precise":7,"step":"0.1","unit":"A","unitName":"安培"},"dataType":"FLOAT","description":"电参数采用4个字节浮点型数据","identifier":"LightCurrent","name":"工作电流","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000","min":"0","precise":7,"step":"0.1","unit":"W","unitName":"瓦特"},"dataType":"FLOAT","description":"电参数采用4个字节浮点型数据","identifier":"ActivePower","name":"有功功率值","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1","min":"0.01","precise":7,"step":"0.1","unit":"pF","unitName":"皮法"},"dataType":"FLOAT","description":"电参数采用4个字节浮点型数据","identifier":"PowerRatio","name":"功率因数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"2147483647","min":"0","precise":7,"step":"0.1","unit":"kW·h","unitName":"千瓦·时"},"dataType":"FLOAT","description":"耗电量;电参数采用4个字节浮点型数据","identifier":"PowerConsumption","name":"用电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"400","min":"0","precise":7,"step":"0.1","unit":"V","unitName":"伏特"},"dataType":"FLOAT","description":"电参数采用4个字节浮点型数据","identifier":"DrainVoltage","name":"漏电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"90","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"路灯的倾斜角度;采用1个字节16进制数","identifier":"TiltValue","name":"倾斜角度值","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","precise":0,"step":"1","unit":"W","unitName":"瓦特"},"dataType":"INT","description":"故障功率门限","identifier":"ErrorPowerThreshold","name":"故障功率门限","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"9","min":"0.1","precise":7,"step":"0.1","unit":"A","unitName":"安培"},"dataType":"FLOAT","description":"","identifier":"ErrorCurrentThreshold","name":"故障电流门限","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"90","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"","identifier":"TiltThreshold","name":"倾斜阈值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"400","min":"0","precise":0,"step":"1","unit":"V","unitName":"伏特"},"dataType":"INT","description":"","identifier":"UnderVoltThreshold","name":"欠压阈值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"9","min":"0","precise":0,"step":"1","unit":"A","unitName":"安培"},"dataType":"INT","description":"","identifier":"OverCurrentThreshold","name":"过流阈值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"400","min":"0","precise":0,"step":"1","unit":"V","unitName":"伏特"},"dataType":"INT","description":"","identifier":"OverVoltThreshold","name":"过压阈值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":1},{"dataType":"BOOL","name":"关闭","value":0}],"dataType":"BOOL","description":"1:打开,0:关闭","identifier":"LightErrorEnable","name":"灯具故障使能","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":1},{"dataType":"BOOL","name":"关闭","value":0}],"dataType":"BOOL","description":"1:打开,0:关闭","identifier":"OverCurrentEnable","name":"过流告警使能","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":1},{"dataType":"BOOL","name":"关闭","value":0}],"dataType":"BOOL","description":"1:打开,0:关闭","identifier":"OverVoltEnable","name":"过压告警使能","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":1},{"dataType":"BOOL","name":"关闭","value":0}],"dataType":"BOOL","description":"1:打开,0:关闭","identifier":"UnderVoltEnable","name":"欠压告警使能","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":1},{"dataType":"BOOL","name":"关闭","value":0}],"dataType":"BOOL","description":"1:打开,0:关闭","identifier":"LeakageEnable","name":"漏电告警使能","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":1},{"dataType":"BOOL","name":"关闭","value":0}],"dataType":"BOOL","description":"1:打开,0:关闭","identifier":"OverTiltEnable","name":"倾斜告警使能","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"告警","value":1},{"dataType":"BOOL","name":"正常","value":0}],"dataType":"BOOL","description":"1-告警;0-正常","identifier":"LampError","name":"灯具故障告警","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"告警","value":1},{"dataType":"BOOL","name":"正常","value":0}],"dataType":"BOOL","description":"1-告警;0-正常","identifier":"OverCurrentError","name":"过流告警","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"告警","value":1},{"dataType":"BOOL","name":"正常","value":0}],"dataType":"BOOL","description":"1-告警;0-正常","identifier":"OverVoltError","name":"过压告警","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"告警","value":1},{"dataType":"BOOL","name":"正常","value":0}],"dataType":"BOOL","description":"1-告警;0-正常","identifier":"UnderVoltError","name":"欠压告警","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"告警","value":1},{"dataType":"BOOL","name":"正常","value":0}],"dataType":"BOOL","description":"1-告警;0-正常","identifier":"OverTiltError","name":"倾斜告警","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"告警","value":1},{"dataType":"BOOL","name":"正常","value":0}],"dataType":"BOOL","description":"1-告警;0-正常","identifier":"LeakageError","name":"漏电告警","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"高度","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[27].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"LUX","unitName":"照度"},"dataType":"INT","description":"","identifier":"LightLux","name":"光照值","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2798205430', 'SmartDustbin', '智能垃圾桶', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2799825125', 'ManholeLevel', '窨井液位监测设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2806925463', 'GeomagneticSensor', '地磁检测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"BatteryLevel","name":"电池电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无车","value":0},{"dataType":"ENUM","name":"有车","value":1}],"dataType":"ENUM","description":"","identifier":"MagneticState","name":"车位状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"异常告警","eventType":"INFO_EVENT_TYPE","identifier":"AbnormalAlarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"强磁干扰","value":1},{"dataType":"ENUM","name":"低电量","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"告警类型","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2821295766', 'MeterElec_Dlt645', 'DLT645电表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","step":"0.01","unit":"Hz","unitName":"赫兹"},"dataType":"DOUBLE","identifier":"electric_fr","name":"频率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000","min":"0","step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","identifier":"electric_fra","name":"A相有功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000000","min":"0","step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","identifier":"electric_frb","name":"B相有功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","identifier":"electric_frc","name":"C相有功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000000","min":"0","step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","identifier":"electric_pfa","name":"A相功率因素","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","identifier":"electric_pfb","name":"B相功率因素","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","identifier":"electric_pfc","name":"C相功率因素","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000","min":"0","step":"0.01","unit":"kvar","unitName":"千乏"},"dataType":"DOUBLE","identifier":"electric_pqa","name":"A相无功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"kvar","unitName":"千乏"},"dataType":"DOUBLE","identifier":"electric_pqb","name":"B相无功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000","min":"0","step":"0.01","unit":"kvar","unitName":"千乏"},"dataType":"DOUBLE","identifier":"electric_pqc","name":"C相无功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"KVA","unitName":"千伏安"},"dataType":"DOUBLE","identifier":"electric_psa","name":"A相视在功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"KVA","unitName":"千伏安"},"dataType":"DOUBLE","identifier":"electric_psb","name":"B相视在功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"KVA","unitName":"千伏安"},"dataType":"DOUBLE","identifier":"electric_psc","name":"C相视在功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","identifier":"nActiveEnergy","name":"有功电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","identifier":"nIa","name":"A相电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","identifier":"nIc","name":"C相电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000","min":"0","step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","identifier":"nUa","name":"A相电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","identifier":"nIb","name":"B相电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000","min":"0","step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","identifier":"nUb","name":"B相电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000","min":"0","step":"0.1","unit":"V","unitName":"伏特"},"dataType":"FLOAT","identifier":"nUc","name":"C相电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"Breaker_control","name":"断路器开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2829100057', 'VibrationSensor', '震动传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"1级灵敏度","value":1},{"dataType":"ENUM","name":"2级灵敏度","value":2}],"dataType":"ENUM","identifier":"SensitivitySettings","name":"灵敏度设置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未报警状态","value":0},{"dataType":"BOOL","name":"报警状态","value":1}],"dataType":"BOOL","identifier":"AlarmState","name":"报警状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2844396141', 'electricmeter', '电力仪表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"AQI","name":"空气质量指数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60000","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"voltage","name":"电源电压","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"EXT_PAN_ID","name":"扩展网路标识","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","description":"","identifier":"Permission","name":"鉴权信息","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"/ids/runProgram.action","identifier":"Run_program","name":"终端执行","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"SystemInfo","name":"系统信息","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2846173041', 'InductionCooker', '电磁炉', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"7","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"PowerLevel","name":"功率档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"300","min":"30","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未识别出","value":0},{"dataType":"ENUM","name":"煮","value":1},{"dataType":"ENUM","name":"煎","value":2},{"dataType":"ENUM","name":"炸","value":3}],"dataType":"ENUM","description":"","identifier":"CookingState","name":"烹饪状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"350","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2847161569', 'Environment', '环境电器', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '2847782290', 'Fridge', '冰箱', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ToggleLightSwitch","inputParams":[],"outputParams":[],"required":false,"serviceName":"翻转主灯开关"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"AntibacteriaSwitch","name":"抗菌开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"FreezerDoorStatus","name":"冷冻门状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"FreezerSwitch","name":"冷冻室开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"0","min":"-18","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"FreezerTargetTemperature","name":"冷冻室目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"0","min":"-18","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"FreezerTemperature","name":"冷冻室温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"FridgeDoorStatus","name":"冷藏门状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"FridgeSwitch","name":"冷藏室开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10","min":"1","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"FridgeTargetTemperature","name":"冷藏室目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10","min":"1","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"FridgeTemperature","name":"冷藏室温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"IonsSwitch","name":"负离子开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"ScreenSwitch","name":"屏显开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"VariableDoorStatus","name":"变温门状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"VariableSwitch","name":"变温室开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"0","min":"-18","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"VariableTargetTemperature","name":"变温室目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10","min":"-18","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"VariableTemperature","name":"变温室温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"智能","value":1},{"dataType":"ENUM","name":"速冻","value":2},{"dataType":"ENUM","name":"速冷","value":3},{"dataType":"ENUM","name":"节能","value":4},{"dataType":"ENUM","name":"假日","value":5}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2854113963', 'LaserScanner', '激光探测仪', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2872335441', 'SmartBoxingTarget', '智能拳靶', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"测量爆发力模式","value":1},{"dataType":"ENUM","name":"测量反应速度模式","value":2}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"20.0","min":"0","precise":7,"step":"0.01","unit":"s","unitName":"秒"},"dataType":"DOUBLE","description":"","identifier":"boxing_speed","name":"拳击速度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000","min":"0","precise":7,"step":"0.01","unit":"kg","unitName":"千克(公斤)"},"dataType":"DOUBLE","description":"","identifier":"boxing_strength","name":"拳击力量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10","min":"0","precise":7,"step":"0.01","unit":"s","unitName":"秒"},"dataType":"DOUBLE","description":"","identifier":"response_speed","name":"反应速度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"250","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0},{"dataType":"ENUM","name":"电源故障","value":1},{"dataType":"ENUM","name":"遇阻故障","value":2},{"dataType":"ENUM","name":"过热故障","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '2879163958', 'Register', '寄存器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"开","value":0},{"dataType":"ENUM","name":"关","value":1},{"dataType":"ENUM","name":"停","value":2}],"dataType":"ENUM","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"手动","value":11}],"dataType":"ENUM","description":"绿立方","identifier":"ManualStatus","name":"手动状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"异常","value":12}],"dataType":"ENUM","description":"","identifier":"DeviceAbnormalState","name":"设备异常状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"开","value":0},{"dataType":"ENUM","name":"关","value":1},{"dataType":"ENUM","name":"停","value":2}],"dataType":"ENUM","description":"绿立方项目","identifier":"PowerSwitchAll","name":"电源开关枚举型","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2893752683', 'Airconditionerthermostat', '空调温控器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"制冷","value":1},{"dataType":"ENUM","name":"制热","value":2},{"dataType":"ENUM","name":"通风","value":3},{"dataType":"ENUM","name":"除湿","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"风速","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"32","min":"16","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '289592023', 'Curtainswitch', '单路窗帘开关', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关窗帘","value":0},{"dataType":"ENUM","name":"开窗帘","value":1},{"dataType":"ENUM","name":"暂停窗帘","value":2}],"dataType":"ENUM","description":"","identifier":"CurtainOperation","name":"窗帘操作模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '2936178698', 'SmartGasMeter', '智能燃气表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000000000","min":"0","precise":7,"step":"0.01","unit":"m³","unitName":"立方米"},"dataType":"DOUBLE","description":"","identifier":"IntegratedFlow","name":"总累计量","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '2941209014', 'LinkEdge', '边缘计算', '{"services":[],"properties":[],"events":[{"custom":false,"eventName":"报警事件","eventType":"ALERT_EVENT_TYPE","identifier":"alarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"防拆报警","value":0},{"dataType":"ENUM","name":"防拆报警解除","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"alarmType","name":"报警类型","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2952164169', 'IB_Lock ', '锁', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"Lock_status","name":"门锁状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"Lock_control","name":"门锁控制","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2972993916', 'Water purifier', '净水机', '{"services":[{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"库存","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"增加库存"},{"callType":"SYNC","custom":false,"description":"批量库存查询","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '2973111312', 'WallHungGasBoiler', '壁挂炉', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"夏季模式","value":0},{"dataType":"BOOL","name":"冬季模式","value":1}],"dataType":"BOOL","description":"","identifier":"WinSumMode","name":"冬夏模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"BathRunning","name":"卫浴运行","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"HeatingRunning","name":"采暖运行","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"一级防冻","value":1},{"dataType":"ENUM","name":"二级防冻","value":2}],"dataType":"ENUM","description":"","identifier":"AntifreezeRunning","name":"防冻运行","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"99","min":"0","precise":0,"step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"HeatingTemperature","name":"采暖温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"99","min":"0","precise":0,"step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"BathTemperature","name":"卫浴温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"MondayTiming","name":"周一定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"TuesdayTiming","name":"周二定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"WednesdayTiming","name":"周三定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"ThursdayTiming","name":"周四定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"FridayTiming","name":"周五定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"SaturdayTiming","name":"周六定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"SundayTiming","name":"周日定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"-100","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"OutdoorTemperature","name":"室外温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"-100","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"IndoorTemperature","name":"室内温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动模式","value":0},{"dataType":"ENUM","name":"预约模式","value":1}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"HeatingSwitch","name":"采暖开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"75","min":"35","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '2982357529', 'ParkingLotBarrier', '车位锁', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ControlLockState","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"解锁","value":0},{"dataType":"ENUM","name":"上锁","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"OperationCode","name":"操作码","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"车锁控制"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LockSwitch","name":"车位锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"7.0","min":"3.5","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","description":"","identifier":"Version","name":"固件版本号","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"低电压上报","eventType":"INFO_EVENT_TYPE","identifier":"LowVoltageNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"7.0","min":"3.5","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"VoltageValue","name":"电压值","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'); -INSERT INTO "thing_model_template" ("created", "modified", "id", "category_key", "category_name", "thing_model_json") VALUES -('1692347065', '0', '2985265461', 'AlgorithmManagerPlatform', '视频内容分析', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"AddAlgorithmModel","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoURL","name":"算法模型下载URL","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoID","name":"算法模型ID","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"增加算法模型"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartAlgorithmModel","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"VideoSrcURL","name":"视频源URL","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"算法任务号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoID","name":"算法模型ID","paraOrder":2}],"outputParams":[],"required":true,"serviceName":"启动算法模型"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopAlgorithmTask","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"算法任务号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"停止算法任务"},{"callType":"SYNC","custom":false,"description":"","identifier":"DeleteAlgorithmModel","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoID","name":"算法模型ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"删除结果","paraOrder":0}],"required":true,"serviceName":"删除算法模型"},{"callType":"SYNC","custom":false,"description":"","identifier":"DeleteAllAlgorithmModels","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"清除结果","paraOrder":0}],"required":true,"serviceName":"清除所有算法模型"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAlgorithmModelList","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"AlgoID","name":"算法模型ID","paraOrder":0},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"Rate","name":"算法部署进度","paraOrder":1}],"required":true,"serviceName":"查询算法模型列表"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAlgorithmTasklList","inputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_INPUT","identifier":"ALgoID","name":"算法模型ID","paraOrder":0},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_INPUT","identifier":"TaskID","name":"算法执行任务号","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"查询算法任务列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryDeployStatus","inputParams":[],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"部署中","value":0},{"dataType":"BOOL","name":"部署完毕","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"DeployDone","name":"是否部署完毕","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"DeployRate","name":"部署进度","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoName","name":"算法名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":3}],"required":true,"serviceName":"查询部署状态"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"任务号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"停止算法"},{"callType":"ASYNC","custom":false,"description":"","identifier":"DeleteSingleAlgo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"删除结果","paraOrder":0}],"required":true,"serviceName":"删除指定算法模型"},{"callType":"ASYNC","custom":false,"description":"","identifier":"ClearAllAlgorithms","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"清除结果","paraOrder":0}],"required":true,"serviceName":"清除所有算法"},{"callType":"ASYNC","custom":false,"description":"","identifier":"DeployAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoURL","name":"算法模型文件URL","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法模型文件名","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":2}],"outputParams":[],"required":true,"serviceName":"部署算法模型"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"VideoSrcURL","name":"视频源URL","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"算法任务号","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"启动算法"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"设备连接LP后,上报平台属性(X86、Linux、Android等),服务端根据此属性选择对应平台的算法进行部署。","identifier":"Platform","name":"上报平台属性","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"算法任务执行结果","eventType":"INFO_EVENT_TYPE","identifier":"AlgorithmTaskResult","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoID","name":"算法模型ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskID","name":"算法任务号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Result","name":"执行结果","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"停止算法","value":0},{"dataType":"ENUM","name":"启动算法","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"TaskType","name":"任务类型","paraOrder":3}],"required":true},{"custom":false,"description":"","eventName":"算法模型部署结果","eventType":"INFO_EVENT_TYPE","identifier":"AlgorithmModelDeployResult","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoID","name":"算法模型ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Result","name":"增加结果","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"删除算法模型","value":0},{"dataType":"ENUM","name":"增加算法模型","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"DeployType","name":"模型部署类型","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"单条算法停止结果","eventType":"INFO_EVENT_TYPE","identifier":"StopAlgorithm","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskID","name":"任务号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"算法停止结果","paraOrder":1}],"required":false},{"custom":false,"description":"","eventName":"智能报警","eventType":"INFO_EVENT_TYPE","identifier":"IntelligentAlarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"人脸检测","value":20003},{"dataType":"ENUM","name":"人体检测","value":20004},{"dataType":"ENUM","name":"人脸质量分","value":60005},{"dataType":"ENUM","name":"人脸特征提取","value":60006},{"dataType":"ENUM","name":"叠衣计数","value":60007},{"dataType":"ENUM","name":"目标检测","value":60008},{"dataType":"ENUM","name":"年龄性别检测","value":60009},{"dataType":"ENUM","name":"表情检测","value":60010},{"dataType":"ENUM","name":"人体姿态估计","value":60011},{"dataType":"ENUM","name":"车辆和车牌检测","value":60012},{"dataType":"ENUM","name":"车牌识别","value":60013}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"告警类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Algorithm","name":"算法","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ProductKey","name":"子设备产品名","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceName","name":"子设备名","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"告警内容","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlarmPicID","name":"图片ID","paraOrder":5}],"required":true}]}'), -('1692347065', '0', '2986218393', 'QuickAccessDoor', '速通门', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"Lock_status","name":"门锁状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"Lock_control","name":"门锁控制","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '2986735191', 'SmartPillow', '智能枕', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"清醒","value":1},{"dataType":"ENUM","name":"浅睡","value":2},{"dataType":"ENUM","name":"深睡","value":3},{"dataType":"ENUM","name":"离床","value":4}],"dataType":"ENUM","identifier":"SleepStatus","name":"睡眠状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","identifier":"BedTime","name":"上床时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","identifier":"WakeupTime","name":"起床时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"WakeupTimes","name":"离枕次数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正位","value":1},{"dataType":"ENUM","name":"左侧位","value":2},{"dataType":"ENUM","name":"右侧位","value":3}],"dataType":"ENUM","identifier":"SleepPosition","name":"睡眠体位","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无汗或微汗","value":1},{"dataType":"ENUM","name":"出汗","value":2},{"dataType":"ENUM","name":"大汗","value":3}],"dataType":"ENUM","identifier":"Sweat","name":"夜汗","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"1","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"HeartRate","name":"心率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"1","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"RespiratoryRate","name":"呼吸率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"43","min":"35","step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","identifier":"BodyTemp","name":"体温","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"50","min":"-20","step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","identifier":"RoomTemp","name":"卧室温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","identifier":"RoomHumidity","name":"卧室湿度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '302977307', 'FloorHeating', '地暖', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"32","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3048474837', 'FireSafety', '消防安全', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3049546843', 'SmartElectricityMeter', '智能电表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2},{"dataType":"ENUM","name":"低电量","value":3}],"dataType":"ENUM","description":"","identifier":"ElectricMeterState","name":"电表模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"2147483647","min":"0","precise":7,"step":"0.1","unit":"kW·h","unitName":"千瓦·时"},"dataType":"FLOAT","description":"","identifier":"PowerConsumption","name":"用电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"电阀门状态报告","eventType":"INFO_EVENT_TYPE","identifier":"ElectricValueStateNotification","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"分闸","value":0},{"dataType":"BOOL","name":"合闸","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"ElectricValveState","name":"电阀门状态","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '3049874437', 'WifiTemplate', 'Wifi功能模板', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"WIFI_Band","name":"频段","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"-1","min":"-127","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"WiFI_RSSI","name":"信号强度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"WIFI_AP_BSSID","name":"热点BSSID","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"255","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"WIFI_Channel","name":"信道","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"127","min":"-127","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"WiFI_SNR","name":"信噪比","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3058027765', 'CeilingFanLamp', '吊扇灯', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"FanSwitch","name":"吊扇开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"1档","value":0},{"dataType":"ENUM","name":"2档","value":1},{"dataType":"ENUM","name":"3档","value":2},{"dataType":"ENUM","name":"4档","value":3},{"dataType":"ENUM","name":"5档","value":4},{"dataType":"ENUM","name":"6档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"吊扇风速","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"主灯开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"NightLightSwitch","name":"夜灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"7000","min":"2000","precise":0,"step":"1","unit":"K","unitName":"开尔文"},"dataType":"INT","description":"","identifier":"ColorTemperature","name":"冷暖色温","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"LightLuminance","name":"主灯亮度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"BluetoothSwitch","name":"蓝牙音响开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正转","value":0},{"dataType":"ENUM","name":"反转","value":1}],"dataType":"ENUM","description":"","identifier":"RotationDirection","name":"吊扇正反转","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3059461830', 'PressureAlarm', '压力报警器', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3073553801', 'KitchenVentilator', '油烟机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"CleanSwitch","name":"清洗开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"清洗","value":1}],"dataType":"BOOL","description":"","identifier":"CleanWarning","name":"清洗提醒","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3}],"dataType":"ENUM","description":"","identifier":"LeftWindSpeed","name":"左风量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"照明开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3}],"dataType":"ENUM","description":"","identifier":"RightWindSpeed","name":"右风量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"风量档位","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"4","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"KitchenVentilator_WorkMode","name":"油烟机的工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"9","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"KitchenVentilator_MotorStall","name":"电机挡位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在进行固件升级","value":0},{"dataType":"BOOL","name":"正在进行固件升级","value":1}],"dataType":"BOOL","description":"","identifier":"KitchenVentilator_OTA","name":"固件升级状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未感应到","value":0},{"dataType":"BOOL","name":"感应到","value":1}],"dataType":"BOOL","description":"","identifier":"ExhaustPressure","name":"油烟机的烟道阻力大检测结果","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未感应到","value":0},{"dataType":"BOOL","name":"感应到","value":1}],"dataType":"BOOL","description":"","identifier":"SmokeDetection","name":"油烟机的烟雾浓度大实时检测结果","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"KitchenVentilator_ErrorCode","name":"油烟机故障号","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3074297629', 'retail', '零售设备', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '308360751', 'ElectricBlanket', '电热毯', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"70","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"70","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"LeftCurrentTemperature","name":"当前温度左","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"70","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"RightCurrentTemperature","name":"当前温度右","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"档位1","value":1},{"dataType":"ENUM","name":"档位2","value":2},{"dataType":"ENUM","name":"档位3","value":3},{"dataType":"ENUM","name":"档位4","value":4},{"dataType":"ENUM","name":"档位5","value":5},{"dataType":"ENUM","name":"档位6","value":6},{"dataType":"ENUM","name":"档位7","value":7},{"dataType":"ENUM","name":"档位8","value":8},{"dataType":"ENUM","name":"档位9","value":9}],"dataType":"ENUM","description":"","identifier":"HeatLevel","name":"加热档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"档位1","value":1},{"dataType":"ENUM","name":"档位2","value":2},{"dataType":"ENUM","name":"档位3","value":3},{"dataType":"ENUM","name":"档位4","value":4},{"dataType":"ENUM","name":"档位5","value":5},{"dataType":"ENUM","name":"档位6","value":6},{"dataType":"ENUM","name":"档位7","value":7},{"dataType":"ENUM","name":"档位8","value":8},{"dataType":"ENUM","name":"档位9","value":9}],"dataType":"ENUM","description":"","identifier":"LeftHeatLevel","name":"加热档位左","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"档位1","value":1},{"dataType":"ENUM","name":"档位2","value":2},{"dataType":"ENUM","name":"档位3","value":3},{"dataType":"ENUM","name":"档位4","value":4},{"dataType":"ENUM","name":"档位5","value":5},{"dataType":"ENUM","name":"档位6","value":6},{"dataType":"ENUM","name":"档位7","value":7},{"dataType":"ENUM","name":"档位8","value":8},{"dataType":"ENUM","name":"档位9","value":9}],"dataType":"ENUM","description":"","identifier":"RightHeatLevel","name":"加热档位右","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LeftPowerSwitch","name":"电源开关左","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"RightPowerSwitch","name":"电源开关右","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"升温","value":1},{"dataType":"ENUM","name":"睡眠","value":2}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"升温","value":1},{"dataType":"ENUM","name":"睡眠","value":2}],"dataType":"ENUM","description":"","identifier":"LeftWorkMode","name":"工作模式左","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"升温","value":1},{"dataType":"ENUM","name":"睡眠","value":2}],"dataType":"ENUM","description":"","identifier":"RightWorkMode","name":"工作模式右","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '308735593', 'WaterMonitor', '用水监控器', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3095266047', 'Logisticsmonitoring', '仓储运输环境检测设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"85","min":"-40","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"Temperature","name":"环境温度监测","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"Humidity","name":"湿度监测","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"300","precise":7,"step":"0.01","unit":"Pa","unitName":"帕"},"dataType":"DOUBLE","description":"","identifier":"Airpressure","name":"气压监测","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"150","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataType":"INT","description":"","identifier":"Vibrationtilt","name":"震动倾斜监测","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"65534","min":"0","precise":7,"step":"0.01","unit":"J","unitName":"焦耳"},"dataType":"DOUBLE","description":"","identifier":"Eenergy","name":"震动能量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"间隔时间","childSpecsDTO":{"dataType":"INT","max":"255","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Intervals","name":"监测时间"},{"childDataType":"INT","childName":"开始延迟","childSpecsDTO":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"startDelay","name":"监测时间"}],"dataType":"STRUCT","description":"","identifier":"Monitoringtime","name":"监测时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"获取状态","eventType":"INFO_EVENT_TYPE","identifier":"GetState","outputData":[],"required":true}]}'), -('1692347065', '0', '3103087729', 'FireValve', '防火阀', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3109686962', 'SOCSmartLife', '智能生活SOC', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3118852874', 'ParkMagnetism', '地磁车位监测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","description":"E7","identifier":"Ifcar","name":"车位状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"9","identifier":"Remain_capacity","name":"设备剩余电量","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"设备故障","eventType":"INFO_EVENT_TYPE","identifier":"Error_alarm","outputData":[],"required":true},{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3120132480', 'NoodleMaker', '面条机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":1},{"dataType":"ENUM","name":"预约","value":2},{"dataType":"ENUM","name":"和面","value":3},{"dataType":"ENUM","name":"醒面","value":4},{"dataType":"ENUM","name":"出面","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"报警","value":7}],"dataType":"ENUM","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","step":"1","unit":"min","unitName":"分"},"dataType":"INT","identifier":"RemainWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"盒盖","value":0},{"dataType":"BOOL","name":"开盖","value":1}],"dataType":"BOOL","identifier":"CoverState","name":"盖子状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"水量值无意义","value":0},{"dataType":"ENUM","name":"自动加水","value":1},{"dataType":"ENUM","name":"手动加水","value":2}],"dataType":"ENUM","identifier":"AddWaterModel","name":"加水模式","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","step":"1","unit":"g","unitName":"克"},"dataType":"INT","identifier":"WaterRequire","name":"水量值","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","step":"1","unit":"g","unitName":"克"},"dataType":"INT","identifier":"FlourValue","name":"面粉量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"快速面","value":1},{"dataType":"ENUM","name":"劲道面","value":2},{"dataType":"ENUM","name":"宝宝面","value":3},{"dataType":"ENUM","name":"饺子皮","value":4},{"dataType":"ENUM","name":"和面团","value":5},{"dataType":"ENUM","name":"荞麦面","value":6},{"dataType":"ENUM","name":"果蔬面","value":7},{"dataType":"ENUM","name":"鸡蛋面","value":8},{"dataType":"ENUM","name":"搅拌","value":9},{"dataType":"ENUM","name":"挤面","value":10}],"dataType":"ENUM","identifier":"LocalRecipes","name":"本地食谱","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"Workingswitch","name":"工作开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3143543723', 'VideoDoorbell', '可视门铃', '{"services":[{"callType":"ASYNC","custom":false,"identifier":"StartVod","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FileName","name":"录像名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":5}],"outputParams":[],"required":false,"serviceName":"开始录像文件观看"},{"callType":"ASYNC","custom":false,"identifier":"StartVodByTime","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":6}],"outputParams":[],"required":false,"serviceName":"开始录像按时间观看"},{"callType":"ASYNC","custom":false,"identifier":"StopVod","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"停止录像观看"},{"callType":"ASYNC","custom":false,"identifier":"TriggerAudioPlay","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AudioUrl","name":"音频地址","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"MP3","value":0},{"dataType":"ENUM","name":"WAVE","value":1},{"dataType":"ENUM","name":"AAC","value":2},{"dataType":"ENUM","name":"Ogg","value":3},{"dataType":"ENUM","name":"AMR","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"AudioType","name":"音频格式","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"触发设备播放音频"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartPushStreaming","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"辅码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"码流类型","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"60","min":"0","step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PreTime","name":"提前推流时间","paraOrder":5}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"设备不支持","value":1},{"dataType":"ENUM","name":"设备资源不足","value":2},{"dataType":"ENUM","name":"推流连接失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"推流结果","paraOrder":0}],"required":true,"serviceName":"开始直播"},{"callType":"ASYNC","custom":false,"identifier":"StopPushStreaming","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"辅码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"码流类型","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"停止直播"},{"callType":"ASYNC","custom":false,"description":"语音对讲启动指令","identifier":"StartVoiceIntercom","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"IntercomUrl","name":"对讲地址","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Key","name":"加解密秘钥","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加解密类型","paraOrder":2}],"outputParams":[],"required":true,"serviceName":"开始语音对讲"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopVoiceIntercom","inputParams":[],"outputParams":[],"required":true,"serviceName":"停止语音对讲"},{"callType":"ASYNC","custom":false,"identifier":"Reboot","inputParams":[],"outputParams":[],"required":false,"serviceName":"重启"},{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryRecordList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"QuerySize","name":"查询数量","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2},{"dataType":"ENUM","name":"所有录像","value":99}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Type","name":"录像类型","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"录像名","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[9].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"FileName","name":"录像列表"},{"childDataType":"INT","childName":"开始时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[9].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"BeginTime","name":"录像列表"},{"childDataType":"INT","childName":"结束时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[9].outputParams[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"录像列表"},{"childDataType":"TEXT","childName":"文件大小","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[9].outputParams[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"Size","name":"录像列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"childName":"录像类型","dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"dataType":"STRUCT","identifier":"Type","name":"录像列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"RecordList","name":"录像列表","paraOrder":0}],"required":false,"serviceName":"查询录像文件列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryRecordTimeList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"QuerySize","name":"查询数量","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2},{"dataType":"ENUM","name":"所有录像","value":99}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Type","name":"录像类型","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"开始时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"unit":"″","unitName":"秒"},"dataSpecs":{"$ref":"$.services[10].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"BeginTime","name":"时间列表"},{"childDataType":"INT","childName":"结束时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[10].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"时间列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"childName":"录像类型","dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"dataType":"STRUCT","identifier":"Type","name":"时间列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"TimeList","name":"时间列表","paraOrder":0}],"required":false,"serviceName":"查询录像时间列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"TriggerPicCapture","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UploadUrl","name":"上传地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PicID","name":"图片ID","paraOrder":0}],"required":true,"serviceName":"触发设备抓图"},{"callType":"ASYNC","custom":false,"description":"","identifier":"PlayQuickResponseRing","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"RingType","name":"铃声类型","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"播放快捷回复声音"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartP2PStreaming","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"StunUrl","name":"STUN服务地址","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SignalUrl","name":"信号服务地址","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"开始P2P直播"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低频","value":0},{"dataType":"ENUM","name":"中频","value":1},{"dataType":"ENUM","name":"高频","value":2}],"dataType":"ENUM","identifier":"AlarmFrequencyLevel","name":"报警频率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不支持","value":0},{"dataType":"BOOL","name":"支持","value":1}],"dataType":"BOOL","identifier":"PreRecordSupport","name":"是否支持预录","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"铃声类型","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[2].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"BellType","name":"内置铃声"},{"childDataType":"TEXT","childName":"铃声名称","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[2].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"BellName","name":"内置铃声"}],"dataType":"ARRAY","size":10},"dataType":"ARRAY","description":"","identifier":"Ringtone","name":"内置铃声","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不支持","value":0},{"dataType":"BOOL","name":"支持","value":1}],"dataType":"BOOL","identifier":"DirectUploadSupport","name":"是否支持直存","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"ForcedAlarmSwitch","name":"强拆报警开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"VideoMessageSwitch","name":"视频留言开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","step":"1","unit":"s","unitName":"秒"},"dataType":"INT","identifier":"ShootInterval","name":"拍摄间隔","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"s","unitName":"秒"},"dataType":"INT","identifier":"MaxRecordTime","name":"最大录像时长","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"s","unitName":"秒"},"dataType":"INT","identifier":"DelayedRecord","name":"延迟录像","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"10000","min":"0","step":"1","unit":"cm","unitName":"厘米"},"dataType":"INT","identifier":"DetectDistance","name":"侦测距离","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"InfraredSwitch","name":"红外开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WDRSwitch","name":"宽动态开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","identifier":"VolumeSize","name":"音量大小","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","identifier":"PowerSize","name":"电量大小","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"低功耗状态","value":0},{"dataType":"ENUM","name":"唤醒状态","value":1}],"childName":"低功耗状态","dataSpecsList":[{"dataType":"ENUM","name":"低功耗状态","value":0},{"dataType":"ENUM","name":"唤醒状态","value":1}],"dataType":"STRUCT","identifier":"LowPowerStatus","name":"低功耗模式"},{"childDataType":"TEXT","childName":"唤醒数据","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[14].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"WakeUpData","name":"低功耗模式"}],"dataType":"STRUCT","identifier":"LowPowerMode","name":"低功耗模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"BellType","name":"内置铃声设置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"铃声类型","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[16].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"RingType","name":"快捷回复声音"},{"childDataType":"TEXT","childName":"铃声名称","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[16].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"RingName","name":"快捷回复声音"}],"dataType":"ARRAY","size":10},"dataType":"ARRAY","description":"","identifier":"QuickResponseRing","name":"快捷回复声音","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","identifier":"IPAddress","name":"IP地址","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","identifier":"MacAddress","name":"MAC地址","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","identifier":"WifiName","name":"WIFI名称","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","identifier":"WifiSignal","name":"WIFI强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"StreamVideoQuality","name":"主码流视频质量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"开启","value":1}],"dataType":"ENUM","identifier":"AlarmSwitch","name":"报警开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","identifier":"MotionDetectSensitivity","name":"移动侦测灵敏度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","step":"0.01","unit":"MB","unitName":"兆字节"},"dataType":"DOUBLE","identifier":"StorageTotalCapacity","name":"总存储空间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","identifier":"StorageRemainCapacity","name":"剩余存储空间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"白天模式","value":0},{"dataType":"ENUM","name":"夜晚模式","value":1},{"dataType":"ENUM","name":"自动模式","value":2}],"dataType":"ENUM","identifier":"DayNightMode","name":"日夜模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未插卡","value":0},{"dataType":"ENUM","name":"正常","value":1},{"dataType":"ENUM","name":"未格式化","value":2},{"dataType":"ENUM","name":"正在格式化","value":3}],"dataType":"ENUM","identifier":"StorageStatus","name":"存储介质状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","description":"设备生产商的设备编号","identifier":"DeviceID","name":"设备ID","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"开启","value":1}],"dataType":"ENUM","description":"","identifier":"MotionDetectSwitch","name":"移动侦测开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"开启","value":1}],"dataType":"ENUM","description":"","identifier":"LowPowerSwitch","name":"低功耗开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"INT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","description":"","identifier":"EncryptTypeList","name":"加密类型列表","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"标准模式","value":0},{"dataType":"ENUM","name":"低功耗模式","value":1}],"dataType":"ENUM","description":"","identifier":"PowerMode","name":"功耗模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"WakeUpData","name":"唤醒数据","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"智能告警","eventType":"INFO_EVENT_TYPE","identifier":"CustomAlarm","outputData":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"强拆","value":60001},{"dataType":"ENUM","name":"按门铃","value":60002},{"dataType":"ENUM","name":"有人经过","value":60003},{"dataType":"ENUM","name":"有人停留","value":60004},{"dataType":"ENUM","name":"视频留言","value":60005},{"dataType":"ENUM","name":"人脸识别","value":60006}],"childName":"告警类型","dataSpecsList":[{"dataType":"ENUM","name":"强拆","value":60001},{"dataType":"ENUM","name":"按门铃","value":60002},{"dataType":"ENUM","name":"有人经过","value":60003},{"dataType":"ENUM","name":"有人停留","value":60004},{"dataType":"ENUM","name":"视频留言","value":60005},{"dataType":"ENUM","name":"人脸识别","value":60006}],"dataType":"STRUCT","identifier":"AlarmType","name":"事件列表"},{"childDataType":"TEXT","childName":"图片ID","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[0].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicID","name":"事件列表"},{"childDataType":"INT","childName":"图片大小","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"1","precise":0,"unit":"B","unitName":"字节"},"dataSpecs":{"$ref":"$.events[0].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicSize","name":"事件列表"},{"childDataType":"TEXT","childName":"告警内容","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.events[0].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"Data","name":"事件列表"},{"childDataType":"DATE","childName":"告警时间","childSpecsDTO":{"dataType":"DATE","length":2048},"dataSpecs":{"$ref":"$.events[0].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"EventTime","name":"事件列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"EventList","name":"事件列表","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"侦测报警","eventType":"INFO_EVENT_TYPE","identifier":"AlarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"强拆","value":60001},{"dataType":"ENUM","name":"按门铃","value":60002},{"dataType":"ENUM","name":"有人经过","value":60003},{"dataType":"ENUM","name":"有人停留","value":60004},{"dataType":"ENUM","name":"视频留言","value":60005},{"dataType":"ENUM","name":"人脸识别","value":60006},{"dataType":"ENUM","name":"门口有变动","value":60007}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"告警类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlarmPicID","name":"报警抓图ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"告警内容","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"电量低告警","eventType":"ALERT_EVENT_TYPE","identifier":"LowBatteyEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"BatteryLevel","name":"电量水平","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '3167613008', 'SolubleSensor', '可溶性盐传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"单位为μs/cm,请补充并修改","identifier":"EC","name":"可溶性盐浓度","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3178048881', 'linkbusiness', '商业共享', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '319489891', 'SmartSprinklerTerminal', '喷灌智能终端', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"TerminalStatus","name":"智能终端状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"IrrigationPumpStatus","name":"灌溉水泵状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"SprayPumpStatus","name":"喷淋水泵状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"PlantGrowthLight","name":"植物生长灯状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不到高水位","value":0},{"dataType":"BOOL","name":"达到高水位","value":1}],"dataType":"BOOL","description":"","identifier":"HighWaterLevel","name":"高水位状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不到中水位","value":0},{"dataType":"BOOL","name":"达到中水位","value":1}],"dataType":"BOOL","description":"","identifier":"MiddleWaterLevel","name":"中水位状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"低水位","value":0},{"dataType":"BOOL","name":"低于低水位","value":1}],"dataType":"BOOL","description":"","identifier":"LowWaterLevel","name":"低水位状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3223959234', 'Airbox', '空气盒子', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"5000","min":"300","precise":0,"step":"1","unit":"ppm","unitName":"百万分率"},"dataType":"INT","description":"","identifier":"CO2","name":"二氧化碳浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurrentHumidity","name":"当前湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-40","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"3","min":"0","precise":7,"step":"0.01","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"DOUBLE","description":"","identifier":"HCHO","name":"甲醛浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"","identifier":"PM25","name":"PM25指数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"3","min":"0","precise":7,"step":"0.01","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"DOUBLE","description":"","identifier":"TVOC","name":"TVOC_VOC浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-127","precise":7,"step":"0.01","unit":"dBm","unitName":"分贝毫瓦"},"dataType":"DOUBLE","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3224616538', 'ElectricSafetyDetector', '用电安全探测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3232625291', 'epd_table', '电子纸桌签', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2},"dataType":"TEXT","identifier":"Test001","name":"测试001","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3246460574', 'Collision data collection', '行车碰撞数据采集', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"DeployAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoURL","name":"算法模型文件URL","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法模型文件名","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":2}],"outputParams":[],"required":true,"serviceName":"部署算法模型"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"VideoSrcURL","name":"视频源URL","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"算法任务号","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"启动算法"},{"callType":"ASYNC","custom":false,"description":"调用者根据StoreID获取设备上已部署的算法名称、算法版本信息。","identifier":"QueryAlgorithmList","inputParams":[],"outputParams":[],"required":true,"serviceName":"查询已部署的所有算法"},{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryDeployStatus","inputParams":[],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"部署中","value":0},{"dataType":"BOOL","name":"部署完毕","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"DeployDone","name":"是否部署完毕","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"DeployRate","name":"部署进度","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoName","name":"算法名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":3}],"required":true,"serviceName":"查询部署状态"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopAlgorithm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TaskID","name":"任务号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"停止算法"},{"callType":"ASYNC","custom":false,"description":"","identifier":"QueryExecutingAlgorithm","inputParams":[],"outputParams":[],"required":true,"serviceName":"查询正在运行的算法"},{"callType":"ASYNC","custom":false,"description":"","identifier":"DeleteSingleAlgo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"删除结果","paraOrder":0}],"required":true,"serviceName":"删除指定算法模型"},{"callType":"ASYNC","custom":false,"description":"","identifier":"ClearAllAlgorithms","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"清除结果","paraOrder":0}],"required":true,"serviceName":"清除所有算法"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"设备连接LP后,上报平台属性(X86、Linux、Android等),服务端根据此属性选择对应平台的算法进行部署。","identifier":"Platform","name":"上报平台属性","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"单条算法执行结果","eventType":"INFO_EVENT_TYPE","identifier":"ExicutingAlgorithm","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoVersion","name":"算法版本","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskID","name":"任务号","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"执行结果","paraOrder":3}],"required":true},{"custom":false,"description":"","eventName":"单条算法部署结果","eventType":"INFO_EVENT_TYPE","identifier":"DeployedAlorithm","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoName","name":"算法名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgoVweision","name":"算法版本","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"部署结果","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"单条算法停止结果","eventType":"INFO_EVENT_TYPE","identifier":"StopAlgorithm","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"TaskID","name":"任务号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"result","name":"算法停止结果","paraOrder":1}],"required":false}]}'), -('1692347065', '0', '3254646987', 'Relay', '继电器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"断电","value":0},{"dataType":"BOOL","name":"通电","value":1}],"dataType":"BOOL","identifier":"Coil","name":"继电器线圈","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"闭合","value":1}],"dataType":"BOOL","identifier":"NO","name":"继电器常开触点","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"打开","value":0},{"dataType":"BOOL","name":"闭合","value":1}],"dataType":"BOOL","identifier":"NC","name":"继电器常闭触点","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3269771481', 'Teatable', '茶台', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"开启全自动","value":0},{"dataType":"BOOL","name":"关闭全自动","value":1}],"dataType":"BOOL","description":"","identifier":"AutomaticSwitch","name":"全自动","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"警告错误","value":0},{"dataType":"ENUM","name":"茶台状态","value":1},{"dataType":"ENUM","name":"茶几状态","value":2}],"dataType":"ENUM","description":"","identifier":"StatusSwitching","name":"状态切换","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无物体","value":0},{"dataType":"BOOL","name":"有物体","value":1}],"dataType":"BOOL","description":"","identifier":"SecurityCheck","name":"安全检测","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未满","value":0},{"dataType":"BOOL","name":"水满","value":1}],"dataType":"BOOL","description":"","identifier":"DetectingWaterlLevel","name":"水位检测","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"停止加水","value":0},{"dataType":"BOOL","name":"开启加水","value":1}],"dataType":"BOOL","description":"","identifier":"AddWater","name":"加水","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLock","name":"童锁","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","description":"","identifier":"TimingChange","name":"定时切换","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","description":"","identifier":"TimingRecoverChange","name":"定时恢复切换","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","description":"","identifier":"TimingBoilWater","name":"定时烧水","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"保温温度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"℃","unitName":"摄氏度"},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"HoldingTemperature","name":"状态上报"},{"childDataType":"INT","childName":"当前温度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"℃","unitName":"摄氏度"},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"CurrentTemperature","name":"状态上报"},{"childDataType":"INT","childName":"加水倒计时","childSpecsDTO":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AddWaterCountdown","name":"状态上报"},{"childDataType":"INT","childName":"加热倒计时","childSpecsDTO":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"HeatingCountdown","name":"状态上报"},{"childDataType":"INT","childName":"消毒倒计时","childSpecsDTO":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"EliminateCountdown","name":"状态上报"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"手动加水工作中","value":4},{"dataType":"ENUM","name":"待机工作中","value":0},{"dataType":"ENUM","name":"全自动工作中","value":1},{"dataType":"ENUM","name":"保温工作中","value":2},{"dataType":"ENUM","name":"消毒工作中","value":3}],"childName":"工作状态","dataSpecsList":[{"dataType":"ENUM","name":"手动加水工作中","value":4},{"dataType":"ENUM","name":"待机工作中","value":0},{"dataType":"ENUM","name":"全自动工作中","value":1},{"dataType":"ENUM","name":"保温工作中","value":2},{"dataType":"ENUM","name":"消毒工作中","value":3}],"dataType":"STRUCT","identifier":"WorkState","name":"状态上报"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"水壶无水","value":2},{"dataType":"ENUM","name":"水壶有水","value":1},{"dataType":"ENUM","name":"无水壶","value":0}],"childName":"水壶状态","dataSpecsList":[{"dataType":"ENUM","name":"水壶无水","value":2},{"dataType":"ENUM","name":"水壶有水","value":1},{"dataType":"ENUM","name":"无水壶","value":0}],"dataType":"STRUCT","identifier":"KettleState","name":"状态上报"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"开机","value":1},{"dataType":"ENUM","name":"关机","value":0}],"childName":"开关机状态","dataSpecsList":[{"dataType":"ENUM","name":"开机","value":1},{"dataType":"ENUM","name":"关机","value":0}],"dataType":"STRUCT","identifier":"IsOpen","name":"状态上报"}],"dataType":"STRUCT","description":"","identifier":"StatusReport","name":"状态上报","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"BinarySwitch","name":"二进制开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-20","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-20","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"低电量","value":2},{"dataType":"ENUM","name":"异常","value":3}],"dataType":"ENUM","description":"","identifier":"ModuleState","name":"模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低液位","value":0},{"dataType":"ENUM","name":"高液位","value":1}],"dataType":"ENUM","description":"","identifier":"WaterLevel","name":"水位","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","description":"","identifier":"Version","name":"固件版本号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"停止","value":0},{"dataType":"ENUM","name":"上升","value":1},{"dataType":"ENUM","name":"下降","value":2}],"dataType":"ENUM","description":"","identifier":"LiftingControl","name":"升降控制","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":12},"dataType":"TEXT","description":"","identifier":"NumberSerial","name":"设备号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"MachineInfo","name":"设备信息","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"300","min":"-20","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TemperatureThreshold","name":"温度阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动模式","value":0},{"dataType":"ENUM","name":"节能模式","value":1},{"dataType":"ENUM","name":"整体加热","value":2},{"dataType":"ENUM","name":"单独加热","value":3},{"dataType":"ENUM","name":"无加热器","value":4}],"dataType":"ENUM","description":"","identifier":"HeatMode","name":"加热模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"进入时间","childSpecsDTO":{"dataType":"DOUBLE","max":"120","min":"1","precise":7,"step":"0.01","unit":"min","unitName":"分"},"dataSpecs":{"$ref":"$.properties[21].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"WakeUpTime","name":"安全启动"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"childName":"使能开关","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"STRUCT","identifier":"EnabledSwitch","name":"安全启动"}],"dataType":"STRUCT","description":"","identifier":"StartSecure","name":"安全启动","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关","value":0},{"dataType":"ENUM","name":"开","value":1},{"dataType":"ENUM","name":"停","value":2}],"dataType":"ENUM","description":"茶台开关","identifier":"PowerSwitchAll","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"茶炉开关机","identifier":"Switch_control","name":"开关控制","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","description":"定时切换状态","identifier":"TargetTime","name":"目标时间","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3272716965', 'CurrentTemperature', '室内温度传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"120","min":"-40","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"CurrentHumidity","name":"湿度","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3274843589', 'Stockbreeding', '畜牧', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"猪的ID","identifier":"PigID","name":"猪的ID","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-20","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"AnimalTemperature","name":"当前体温","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3285406155', 'GeneralGateway', '网关', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3299748232', 'Locater', '车辆定位卡', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3324988425', 'TitrantPump', '滴定泵', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"CalibrateParameter","inputParams":[],"outputParams":[],"required":false,"serviceName":"校准参数"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9999.9","min":"0","precise":7,"step":"0.01","unit":"mL","unitName":"毫升"},"dataType":"DOUBLE","description":"","identifier":"ManualRunVolume","name":"手动运行体积","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","description":"","identifier":"ManualRunTime","name":"手动运行时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"手动","value":0},{"dataType":"ENUM","name":"自动","value":1}],"dataType":"ENUM","description":"","identifier":"PumpWorkMode","name":"泵工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"AutoSwitch","name":"编程开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"24","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"RunTimes","name":"运行次数","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"99999.9","min":"0","precise":7,"step":"0.01","unit":"mL","unitName":"毫升"},"dataType":"DOUBLE","description":"","identifier":"TotalAddVolume","name":"总滴定量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"55","min":"0","precise":0,"step":"1","unit":"min","unitName":"分钟"},"dataType":"INT","description":"","identifier":"ChemicalInterferenceTime","name":"防化学干扰时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"300","min":"1","precise":0,"step":"1","unit":"rpm","unitName":"每分钟转数"},"dataType":"INT","description":"","identifier":"ManualModeSpeed","name":"手动模式转速","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60000.0","min":"0.1","precise":7,"step":"0.01","unit":"mL","unitName":"毫升"},"dataType":"DOUBLE","description":"","identifier":"BottleVolume","name":"溶液瓶体积","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60000.0","min":"0.1","precise":7,"step":"0.01","unit":"mL","unitName":"毫升"},"dataType":"DOUBLE","description":"","identifier":"BottleRemainVolume","name":"溶液瓶剩余体积","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3334545479', 'VOCSensor', 'VOC感应器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2000","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"","identifier":"GasConcentration","name":"气体浓度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"120","min":"-40","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"CurrentHumidity","name":"湿度","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3340808814', 'SmartDoor', '智能门锁', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"AddKey","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"LockType","name":"开锁方式","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"管理员","value":2},{"dataType":"ENUM","name":"普通用户","value":1},{"dataType":"ENUM","name":"劫持用户","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"UserLimit","name":"用户权限","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"添加钥匙"},{"callType":"ASYNC","custom":false,"description":"","identifier":"DeleteKey","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"KeyID","name":"钥匙ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"LockType","name":"开锁方式","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"删除钥匙"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SetKeyPermission","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"KeyID","name":"钥匙ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"LockType","name":"开锁方式","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"管理员","value":2},{"dataType":"ENUM","name":"普通用户","value":1},{"dataType":"ENUM","name":"劫持用户","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"UserLimit","name":"用户权限","paraOrder":2}],"outputParams":[],"required":false,"serviceName":"配置钥匙权限"},{"callType":"ASYNC","custom":false,"description":"","identifier":"GetKeyList","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"全部","value":0},{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"LockType","name":"开锁方式","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"KeyID","name":"钥匙ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"LockType","name":"开锁方式","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"普通用户","value":1},{"dataType":"ENUM","name":"管理员","value":2},{"dataType":"ENUM","name":"劫持用户","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"UserLimit","name":"用户权限","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"IsValid","name":"是否有效","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"KeyNickName","name":"钥匙昵称","paraOrder":4}],"required":true,"serviceName":"获取钥匙列表"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"静音","value":0},{"dataType":"ENUM","name":"低音","value":1},{"dataType":"ENUM","name":"中音","value":2},{"dataType":"ENUM","name":"高音","value":3}],"dataType":"ENUM","description":"","identifier":"Volume","name":"门锁音量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"中文","value":0},{"dataType":"ENUM","name":"英文","value":1}],"dataType":"ENUM","description":"","identifier":"Language","name":"门锁语言","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"打开","value":1}],"dataType":"ENUM","description":"","identifier":"LockState","name":"门锁状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":50},"dataType":"TEXT","description":"","identifier":"SN","name":"门锁SN","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"钥匙ID","childSpecsDTO":{"dataType":"TEXT","length":10},"dataSpecs":{"$ref":"$.properties[5].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"KeyID","name":"门锁钥匙"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"childName":"开锁方式","dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"STRUCT","identifier":"LockType","name":"门锁钥匙"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"普通用户","value":1},{"dataType":"ENUM","name":"管理员","value":2},{"dataType":"ENUM","name":"劫持用户","value":3}],"childName":"用户权限","dataSpecsList":[{"dataType":"ENUM","name":"普通用户","value":1},{"dataType":"ENUM","name":"管理员","value":2},{"dataType":"ENUM","name":"劫持用户","value":3}],"dataType":"STRUCT","identifier":"UserLimit","name":"门锁钥匙"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"是否有效","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"门锁钥匙"},{"childDataType":"TEXT","childName":"钥匙昵称","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[5].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"KeyNickName","name":"门锁钥匙"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","description":"门锁钥匙。","identifier":"LockKeys","name":"门锁钥匙","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"添加钥匙通知","eventType":"INFO_EVENT_TYPE","identifier":"KeyAddedNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"KeyID","name":"钥匙ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"LockType","name":"开锁方式","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"管理员","value":2},{"dataType":"ENUM","name":"普通用户","value":1},{"dataType":"ENUM","name":"劫持用户","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"UserLimit","name":"用户权限","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"删除钥匙通知","eventType":"INFO_EVENT_TYPE","identifier":"KeyDeletedNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"KeyID","name":"钥匙ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"LockType","name":"开锁方式","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"钥匙信息上报","eventType":"INFO_EVENT_TYPE","identifier":"KeyInformationNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"KeyID","name":"钥匙ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"LockType","name":"开锁方式","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"管理员","value":2},{"dataType":"ENUM","name":"普通用户","value":1},{"dataType":"ENUM","name":"劫持用户","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"UserLimit","name":"用户权限","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"开门通知","eventType":"INFO_EVENT_TYPE","identifier":"DoorOpenNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"KeyID","name":"钥匙ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"LockType","name":"开锁方式","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"劫持报警","eventType":"INFO_EVENT_TYPE","identifier":"HijackingAlarm","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"KeyID","name":"钥匙ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"指纹","value":1},{"dataType":"ENUM","name":"密码","value":2},{"dataType":"ENUM","name":"卡","value":3},{"dataType":"ENUM","name":"机械钥匙","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"LockType","name":"开锁方式","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"防撬报警","eventType":"INFO_EVENT_TYPE","identifier":"TamperAlarm","outputData":[],"required":true},{"custom":false,"description":"","eventName":"低电量报警","eventType":"INFO_EVENT_TYPE","identifier":"LowElectricityAlarm","outputData":[],"required":true},{"custom":false,"description":"","eventName":"门未锁好报警","eventType":"INFO_EVENT_TYPE","identifier":"DoorUnlockedAlarm","outputData":[],"required":true}]}'), -('1692347065', '0', '3351246277', 'Humidifier', '加湿器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"IonsSwitch","name":"负离子开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"TargetHumidity","name":"目标湿度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"HeatSwitch","name":"加热开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ScreenSwitch","name":"屏显开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ConstantHumiditySwitch","name":"恒湿开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"缺水","value":1}],"dataType":"BOOL","description":"","identifier":"WaterShortage","name":"缺水状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurrentHumidity","name":"当前湿度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"静音","value":0},{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3},{"dataType":"ENUM","name":"最高档","value":4}],"dataType":"ENUM","description":"","identifier":"SprayLevel","name":"雾量档位","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[9].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3353182173', 'AlgoCertification', '算法验证', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3360154547', 'SpeechHelper', '语音助手', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"AnnounceTTSText","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"text","name":"TTS文本","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"voice","name":"音色","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"播报TTS文本"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"Volume","name":"音量","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"上报ASR文本","eventType":"INFO_EVENT_TYPE","identifier":"ReportASRText","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"text","name":"ASR文本内容","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"200","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"age","name":"声纹识别的年龄","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"女","value":0},{"dataType":"ENUM","name":"男","value":1},{"dataType":"ENUM","name":"未知","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"gender","name":"声纹识别的性别","paraOrder":2},{"custom":false,"dataSpecs":{"childDataType":"DOUBLE","customFlag":true,"dataSpecs":{"dataType":"DOUBLE","step":"0.01"},"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"VoiceprintFeature","name":"声纹识别特征向量","paraOrder":3}],"required":true}]}'), -('1692347065', '0', '3373307143', 'Curtain', '窗帘', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"反转","value":1},{"dataType":"ENUM","name":"校准中","value":2}],"dataType":"ENUM","description":"","identifier":"CurtainMode","name":"窗帘工作模式","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"反转","value":1},{"dataType":"ENUM","name":"校准中","value":2}],"dataType":"ENUM","description":"","identifier":"OuterCurtainMode","name":"外窗帘工作模式","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"反转","value":1},{"dataType":"ENUM","name":"校准中","value":2}],"dataType":"ENUM","description":"","identifier":"InnerCurtainMode","name":"内窗帘工作模式","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurtainPosition","name":"窗帘打开位置","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"OuterCurtainPosition","name":"外窗帘打开位置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"InnerCurtainPosition","name":"内窗帘打开位置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"打开","value":0},{"dataType":"ENUM","name":"关闭","value":1},{"dataType":"ENUM","name":"暂停","value":2}],"dataType":"ENUM","description":"","identifier":"CurtainOperation","name":"窗帘操作模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关窗帘","value":0},{"dataType":"ENUM","name":"开窗帘","value":1},{"dataType":"ENUM","name":"暂停窗帘","value":2}],"dataType":"ENUM","description":"","identifier":"OuterCurtainOperation","name":"外窗帘操作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关窗帘","value":0},{"dataType":"ENUM","name":"开窗帘","value":1},{"dataType":"ENUM","name":"暂停窗帘","value":2}],"dataType":"ENUM","description":"","identifier":"InnerCurtainOperation","name":"内窗帘操作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[10].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3381228455', 'SmartTemplate', '智能模板', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3393802789', 'IRDetector', '红外探测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-127","precise":7,"step":"0.01","unit":"dBm","unitName":"分贝毫瓦"},"dataType":"DOUBLE","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无人","value":0},{"dataType":"BOOL","name":"有人","value":1}],"dataType":"BOOL","description":"","identifier":"MotionAlarmState","name":"红外检测状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"当设备被撬时,上报该事件","eventName":"防撬报警","eventType":"INFO_EVENT_TYPE","identifier":"TamperAlarm","outputData":[],"required":false},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3408202990', 'GasLeakAlarm', '燃气泄漏报警器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3418867707', 'SmartHives', '智能蜂箱', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"-55","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"蜂箱环境温度","identifier":"Temperature","name":"温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"蜂箱环境湿度","identifier":"Humidity","name":"湿度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"50","min":"0","precise":7,"step":"0.1","unit":"kg","unitName":"千克(公斤)"},"dataType":"FLOAT","description":"蜂箱重量","identifier":"Weight","name":"重量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000","min":"0","precise":0,"step":"1","unit":"pcs","unitName":"只"},"dataType":"INT","description":"","identifier":"EntryHiveNumber","name":"进箱数量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000","min":"0","precise":0,"step":"1","unit":"pcs","unitName":"只"},"dataType":"INT","description":"","identifier":"ExitHiveNumber","name":"出箱数量","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3439387816', 'TowelRack', '毛巾架', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1}],"dataType":"ENUM","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"75","min":"-10","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"75","min":"30","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"烘干","value":1},{"dataType":"ENUM","name":"消毒","value":2},{"dataType":"ENUM","name":"杀菌","value":3}],"dataType":"ENUM","description":"","identifier":"ModeControl","name":"控制模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[5].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3512675487', 'other', '其他设备', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3516903911', 'DioxideDetector', '二氧化碳检测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"ppm","unitName":"ppm"},"dataType":"DOUBLE","description":"","identifier":"CO2","name":"二氧化碳浓度","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3529688126', 'PHSensor', '酸碱度监测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3533566706', 'FlowDetection', '营养液流速监测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"L/min","unitName":"升每分钟"},"dataType":"DOUBLE","description":"单位:毫升每分钟 ml/min 请进行补充和修改","identifier":"Flow","name":"流量","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3540162772', 'Spraying', '喷涂处理', '{"services":[{"callType":"ASYNC","custom":false,"description":"触发设备的工艺参数报警","identifier":"SCraftAlarm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"E_CraftAlarm","name":"参数报警标识","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"工艺参数报警"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100000","min":"-100000","precise":7,"step":"0.1","unit":"m/s","unitName":"米每秒"},"dataType":"FLOAT","description":"","identifier":"E_Craft_Speed_China_Spray","name":"链条速度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"-10000","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"E_Craft_TT_Drying_Spray","name":"烘干室温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"-10000","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"E_Craft_TT_Solidify_Spray","name":"固化室温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100000","min":"0","precise":7,"step":"0.1","unit":"m/s","unitName":"米每秒"},"dataType":"FLOAT","description":"","identifier":"E_Craft_S_Sgun_Spray","name":"喷枪运动速度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"E_Craft_R_FE_Spray","name":"出粉率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100000","min":"0","precise":7,"step":"0.1","unit":"V","unitName":"伏特"},"dataType":"FLOAT","description":"","identifier":"E_Craft_V_Elect_Spray","name":"静电电压","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"A","unitName":"安培"},"dataType":"FLOAT","description":"","identifier":"E_Craft_A_Elect_Spray","name":"静电电流","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","description":"设备理想生产周期","identifier":"E_Craft_Ideal_Cycle_Time","name":"设备理想生产周期","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备合格率","identifier":"E_Q","name":"设备合格率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备性能稼动率","identifier":"E_P","name":"设备性能稼动率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备时间稼动率","identifier":"E_A","name":"设备时间稼动率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备最新的OEE","identifier":"E_OEE","name":"设备综合效率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例:\n0 -- 正常运行\n1 -- 缺料\n2 -- 无生产任务\n3 -- 休息","identifier":"E_Stop_Reason","name":"停机原因","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"min","unitName":"分"},"dataType":"INT","description":"设备运行总时间","identifier":"E_TotalRunTime","name":"设备运行总时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备次品的累加器","identifier":"E_Defect_UP","name":"设备不良品","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备产量的累加器","identifier":"E_OutPut_UP","name":"设备产量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"E_Status_UP == 0 初始状态(开机)\nE_Status_UP == 1 运行\nE_Status_UP == 2 停止\nE_Status_UP == 3 故障","identifier":"E_Status_UP","name":"设备运行状态","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3546813887', 'SmartWaterFlowMeter', '智能水流量计', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m³","unitName":"立方米"},"dataType":"DOUBLE","description":"","identifier":"ForwardIntegratedFlow","name":"正向累计流量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m³","unitName":"立方米"},"dataType":"DOUBLE","description":"","identifier":"BackwardIntegratedFlow","name":"反向累计流量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m³/h","unitName":"立方米每小时"},"dataType":"DOUBLE","description":"","identifier":"InstantaneousFlow","name":"瞬时流量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m/s","unitName":"米每秒"},"dataType":"DOUBLE","description":"","identifier":"Velocity","name":"流速","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"kg/m³","unitName":"千克每立方米"},"dataType":"DOUBLE","description":"","identifier":"Density","name":"密度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000","min":"-100","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"Temperature","name":"温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"MPa","unitName":"兆帕"},"dataType":"DOUBLE","description":"","identifier":"Pressure","name":"压力","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"表计通讯故障","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"通讯中断","value":0},{"dataType":"BOOL","name":"通讯正常","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"M_STATUS","name":"表计通讯状态","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '3557654312', 'FaceRecognition', '人脸识别门禁', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"AuthVerifySDK","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"LicenseData","name":"授权文件","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"StatusCode","name":"状态码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"StatusCodeDescription","name":"状态码描述","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"授权成功","value":0},{"dataType":"BOOL","name":"授权失败","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"DoAuthorized","name":"设备授权是否成功","paraOrder":0}],"required":true,"serviceName":"设备授权文件下发"},{"callType":"SYNC","custom":false,"description":"","identifier":"SyncFacePictures","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FacePicURL","name":"同步文件URL地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1},{"dataType":"ENUM","name":"下载文件失败","value":2},{"dataType":"ENUM","name":"解析文件失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"设备同步图片状态值","paraOrder":0}],"required":true,"serviceName":"同步人脸库图片"},{"callType":"SYNC","custom":false,"description":"","identifier":"QuerySyncPicSchedule","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"GroupID","name":"人脸库组ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Rate","name":"人脸图布控百分比","paraOrder":0}],"required":true,"serviceName":"查询人脸布控进度"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAddedUserInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"GroupID","name":"人脸库组ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"StoreID","name":"人脸布控文件storeID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"StoreID","value":0},{"dataType":"ENUM","name":"FileName","value":1},{"dataType":"ENUM","name":"URL","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Type","name":"类型","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"查询添加用户信息的布控状态","paraOrder":2}],"required":true,"serviceName":"查询布控成功的人脸图"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryFacePermTotal","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"1000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"FacePermTotal","name":"当前人脸库权限总数","paraOrder":0}],"required":false,"serviceName":"人脸-查询设备上人脸权限总数"},{"callType":"SYNC","custom":false,"description":"","identifier":"SyncFaceFeatures","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FacePicFeaturesURL","name":"同步特征文件URL地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1},{"dataType":"ENUM","name":"下载文件失败","value":2},{"dataType":"ENUM","name":"解析文件失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"设备同步图片状态值","paraOrder":0}],"required":false,"serviceName":"同步人脸库特征"},{"callType":"SYNC","custom":false,"description":"内容推荐 - 当云端收到ContentSdkInitCompleteEvent事件或密钥泄露导致安全问题需要更新密钥时调用该服务","identifier":"UpdateToken","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SlsToken","name":"SLS访问Token信息","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"OssToken","name":"OSS访问Token信息","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TInfo","name":"Token-Info","paraOrder":2}],"outputParams":[],"required":false,"serviceName":"更新OSS服务token"},{"callType":"ASYNC","custom":false,"description":"内容推荐","identifier":"UpdateContent","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UpdateTaskID","name":"更新任务ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ContentUrl","name":"Content内容下载地址","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"将内容全量下发到边缘端"},{"callType":"SYNC","custom":false,"description":"内容推荐","identifier":"QueryContent","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"CreativeID","name":"内容创意ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"CreativeID","name":"内容创意ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UpdateTaskID","name":"最近更新的任务ID","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"MaterialList","name":"物料信息","paraOrder":2}],"required":false,"serviceName":"查询内容"},{"callType":"SYNC","custom":false,"description":"内容推荐","identifier":"ConfigContentSDK","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"RecommendOn","name":"内容推荐开关","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"4096","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"LogMaxCount","name":"日志批量上传配置","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"5","min":"1","precise":0,"step":"1","unit":"MB","unitName":"兆字节"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"LogMaxSize","name":"每批次最大size","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"86400","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"LogPeriod","name":"上报周期","paraOrder":3}],"outputParams":[],"required":false,"serviceName":"配置内容推荐SDK"},{"callType":"ASYNC","custom":false,"description":"内容推荐 - 完成后通过MonitorActionEvent事件上报操作结果","identifier":"CaptureScreen","inputParams":[],"outputParams":[],"required":false,"serviceName":"监播截屏"},{"callType":"ASYNC","custom":false,"description":"内容推荐 - 完成后通过MonitorActionEvent事件上报操作结果","identifier":"RecordScreen","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"60","min":"5","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"Duration","name":"录屏时长","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"监播录屏"},{"callType":"SYNC","custom":false,"description":"内容推荐","identifier":"QueryModel","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmID","name":"算法任务唯一标识","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgorithmID","name":"算法任务唯一标识","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UpdateTaskID","name":"模型更新的任务ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgorithmName","name":"算法名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"1","min":"0","precise":7,"step":"0.0001","unit":"","unitName":"无"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"Threshold","name":"结果置信度阈值","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Switch","name":"功能开关","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"0","precise":0,"step":"0","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"NumThreads","name":"使用线程数","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ModelID","name":"模型唯一标识","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ModelName","name":"模型名称","paraOrder":7},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ModelVersion","name":"模型版本","paraOrder":8},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ModelURL","name":"模型地址","paraOrder":9},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ModelMD5","name":"模型文件MD5","paraOrder":10},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Platform","name":"模型平台","paraOrder":11},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ModelTaskID","name":"模型生成任务ID","paraOrder":12},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"EncryptType","name":"模型加密方式","paraOrder":13},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Extension","name":"扩展信息","paraOrder":14},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":30},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"CreateTime","name":"创建时间","paraOrder":15},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":30},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UpdateTime","name":"更新时间","paraOrder":16}],"required":false,"serviceName":"查询模型"},{"callType":"SYNC","custom":false,"description":"内容推荐","identifier":"DeleteModel","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmID","name":"算法任务唯一标识","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"删除模型"},{"callType":"SYNC","custom":false,"description":"内容推荐","identifier":"ConfigModel","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmID","name":"算法任务-人脸识别","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"1","min":"0","precise":7,"step":"0.0001","unit":"","unitName":"无"},"dataType":"FLOAT","direction":"PARAM_INPUT","identifier":"Threshold","name":"结果置信度阈值","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"Switch","name":"功能开关","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"NumThreads","name":"使用线程数","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"配置模型"},{"callType":"ASYNC","custom":false,"description":"内容推荐","identifier":"UpdateModel","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UpdateTaskID","name":"更新任务ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmID","name":"算法任务唯一标识","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AlgorithmName","name":"算法名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"1","min":"0","precise":7,"step":"0.0001","unit":"","unitName":"无"},"dataType":"FLOAT","direction":"PARAM_INPUT","identifier":"Threshold","name":"结果置信度阈值","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"NumThreads","name":"使用线程数","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelID","name":"模型唯一标识","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelName","name":"模型名称","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelVersion","name":"模型版本","paraOrder":7},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelURL","name":"模型地址","paraOrder":8},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelMD5","name":"模型文件MD5","paraOrder":9},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelPlatform","name":"模型平台","paraOrder":10},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelTaskID","name":"模型生成任务ID","paraOrder":11},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelEncryptType","name":"模型加密方式","paraOrder":12},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ModelExtension","name":"扩展信息","paraOrder":13}],"outputParams":[],"required":false,"serviceName":"更新模型"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"OnMatchThreshOld","name":"人脸比对成功阈值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"FaceSetMD5Sign","name":"人脸库MD5签名","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"FaceSetID","name":"人脸库ID","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"FaceSetSize","name":"当前人脸库大小","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":65},"dataType":"TEXT","description":"","identifier":"FaceSetAlgorithmVersion","name":"人脸库算法版本","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"FaceSetPicStoreAbility","name":"人脸库图片存储能力","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"支持","value":0},{"dataType":"BOOL","name":"不支持","value":1}],"dataType":"BOOL","description":"脸特征下发:设备端开关,云端判断支持时才处理和下发人脸特征数据。否则会按传统方式下发人脸URL,由设备端计算特征值","identifier":"SupportFaceFeature","name":"人脸-设备是否支持人脸特征下发","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":65},"dataType":"TEXT","description":"人脸特征下发","identifier":"FaceAlgorithmVersion","name":"人脸算法版本号","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","description":"内容推荐、人脸特征下发","identifier":"FirmwareVersion","name":"设备固件版本号","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"内容推荐","identifier":"SerialNo","name":"产品序列号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"内容推荐","identifier":"Volume","name":"音量百分比","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"内容推荐","identifier":"Brightness","name":"亮度百分比","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"内容推荐。0:未知状态,1:熄屏,2:亮屏","identifier":"RunningState","name":"运行状态","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"人脸算法SDK需授权","eventType":"INFO_EVENT_TYPE","identifier":"NeedAuthVerifySDK","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PackageName","name":"包名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ClientID","name":"设备唯一标识","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PublicKey","name":"包公钥信息","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Token","name":"设备Token值","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceEncrypt","name":"设备加密信息唯一标识","paraOrder":4}],"required":true},{"custom":false,"description":"","eventName":"人脸比对事件上报","eventType":"INFO_EVENT_TYPE","identifier":"OnMatched","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserPicID","name":"用户人脸图ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"FaceMatchedPicStorID","name":"人脸比对图片StorID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":""},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"Similarity","name":"人脸比对相似度结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserInfo","name":"人脸ID相关属性","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"GroupID","name":"人脸组ID","paraOrder":4}],"required":true},{"custom":false,"description":"","eventName":"人脸检测事件上报","eventType":"INFO_EVENT_TYPE","identifier":"OnDetect","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"StoreID","name":"人脸检测图StoreID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"GroupID","name":"人脸组ID","paraOrder":1}],"required":true},{"custom":false,"description":"内容推荐","eventName":"SDK初始化完成","eventType":"INFO_EVENT_TYPE","identifier":"ContentSdkInitCompleteEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":4096},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceInfo","name":"设备基本信息","paraOrder":0}],"required":false},{"custom":false,"description":"内容推荐","eventName":"SDK运行状态","eventType":"INFO_EVENT_TYPE","identifier":"ContentSdkStatusEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Status","name":"状态类型值","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Message","name":"消息内容","paraOrder":1}],"required":false},{"custom":false,"description":"内容推荐 - 云端内容推送内容并且 SDK 下载完成后发送该事件","eventName":"内容加载完成","eventType":"INFO_EVENT_TYPE","identifier":"UpdateContentCompleteEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UpdateTaskID","name":"下发任务ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Status","name":"状态","paraOrder":1},{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"内容创意ID","childSpecsDTO":{"dataType":"TEXT","length":128},"dataSpecs":{"$ref":"$.events[5].outputData[2].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"CreativeID","name":"失败创意列表"},{"childDataType":"INT","childName":"错误代码","childSpecsDTO":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.events[5].outputData[2].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Code","name":"失败创意列表"},{"childDataType":"TEXT","childName":"错误描述","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.events[5].outputData[2].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Message","name":"失败创意列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"FailedCreativeIDs","name":"失败创意列表","paraOrder":2}],"required":false},{"custom":false,"description":"内容推荐","eventName":"监播动作结果上报事件","eventType":"INFO_EVENT_TYPE","identifier":"MonitorActionEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"ActionType","name":"监播操作类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"FileKey","name":"上传文件ossKey","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Extension","name":"扩展信息","paraOrder":2}],"required":false},{"custom":false,"description":"内容推荐","eventName":"模型更新完成","eventType":"INFO_EVENT_TYPE","identifier":"UpdateModelCompleteEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UpdateTaskID","name":"下发任务ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlgorithmID","name":"算法ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ModelID","name":"模型ID","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"1024","min":"-1024","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Status","name":"状态","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '3558225177', 'Metering_socket', '带计量功能插座', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"INT","description":"","identifier":"energy","name":"总电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"W","unitName":"瓦特"},"dataType":"INT","description":"","identifier":"actp","name":"有功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"W","unitName":"瓦特"},"dataType":"INT","description":"","identifier":"reactp","name":"无功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"A","unitName":"安培"},"dataType":"INT","description":"插座电流值","identifier":"curr","name":"当前电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"V","unitName":"伏特"},"dataType":"INT","description":"当前电压","identifier":"volt","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"ON","name":"开关控制","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3571744526', 'DoorContact', '门磁传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"ContactState","name":"门磁状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-127","precise":7,"step":"0.01","unit":"dBm","unitName":"分贝毫瓦"},"dataType":"DOUBLE","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"当设备被撬时,上报该事件","eventName":"防撬报警","eventType":"INFO_EVENT_TYPE","identifier":"TamperAlarm","outputData":[],"required":false},{"custom":false,"description":"当检测到超时未关门时,上报该事件","eventName":"超时未关门报警","eventType":"INFO_EVENT_TYPE","identifier":"TimeoutAlarm","outputData":[],"required":false},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3579544448', 'HazardWarningLamp', '危险报警器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"80","min":"-40","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"250","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3591070504', 'ToxicGas', '有害气体检测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"DOUBLE","description":"","identifier":"NH3","name":"氨气浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"DOUBLE","description":"","identifier":"CO","name":"一氧化碳浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"DOUBLE","description":"","identifier":"SO2","name":"二氧化硫浓度","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3604808437', 'ParkChannel', '社区车行停车通道', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"OrderCompleted","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"OrderNumber","name":"订单编号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"订单完成"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"打开","value":1}],"dataType":"ENUM","description":"","identifier":"BarrierState","name":"道闸状态","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"车辆收费订单","eventType":"INFO_EVENT_TYPE","identifier":"CarPassOrder","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"InTime","name":"入场时间","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"OutTime","name":"出场时间","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"999999","min":"0","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"Amount","name":"收费金额","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"OrderNumber","name":"订单编号","paraOrder":5},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"支付完成","value":0},{"dataType":"ENUM","name":"未支付","value":1},{"dataType":"ENUM","name":"支付失败","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"OrderStatus","name":"订单支付状态","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AreaProductKey","name":"从属停车区域PK","paraOrder":7},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AreaDeviceName","name":"从属停车区域DN","paraOrder":8}],"required":true},{"custom":false,"description":"","eventName":"识别锁定车辆","eventType":"INFO_EVENT_TYPE","identifier":"LockedVehicleRecognition","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AreaProductKey","name":"从属停车区域PK","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AreaDeviceName","name":"从属停车区域DN","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumberImageUrl","name":"车牌照片Url","paraOrder":4}],"required":true},{"custom":false,"description":"","eventName":"车辆通行事件","eventType":"INFO_EVENT_TYPE","identifier":"CarPassEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserID","name":"用户ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AreaProductKey","name":"从属停车区域PK","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AreaDeviceName","name":"从属停车区域DN","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumberImageUrl","name":"车牌照片Url","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"OrderNumber","name":"订单编号","paraOrder":5},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常抬杆","value":0},{"dataType":"ENUM","name":"异常抬杆","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"OpenType","name":"抬杆类型","paraOrder":6}],"required":true}]}'), -('1692347065', '0', '3611679979', 'Threadmill', '跑步机', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"SwitchChannel","inputParams":[],"outputParams":[],"required":false,"serviceName":"频道切换"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SwitchAudio","inputParams":[],"outputParams":[],"required":false,"serviceName":"单曲切换"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"RunningSteps","name":"跑步步数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000000","min":"0","precise":7,"step":"0.01","unit":"cal","unitName":"卡路里"},"dataType":"DOUBLE","description":"","identifier":"BurnCalories","name":"消耗热量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"18","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurrentGradient","name":"当前坡度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"14","min":"0.8","precise":7,"step":"0.01","unit":"km/h","unitName":"千米每小时"},"dataType":"DOUBLE","description":"","identifier":"CurrentSpeed","name":"当前速度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000000","min":"0","precise":0,"step":"1","unit":"m","unitName":"米"},"dataType":"INT","description":"","identifier":"RunningDistance","name":"跑步距离","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"10000","min":"0","precise":0,"step":"1","unit":"min","unitName":"分钟"},"dataType":"INT","description":"","identifier":"RunningTotalTime","name":"跑步总时间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200","min":"40","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"HeartRate","name":"心率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"播放中","value":0},{"dataType":"ENUM","name":"暂停","value":1},{"dataType":"ENUM","name":"停止","value":2}],"dataType":"ENUM","description":"","identifier":"PlayControl","name":"单曲播放控制","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"SoundVolume","name":"音量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"300","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"ChannelID","name":"频道ID","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"AudioID","name":"单曲ID","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"PlayProgress","name":"播放进度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"PlayDuration","name":"歌曲总时长","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3621564311', 'FireCannon', '智能消防炮', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3637077762', 'ParkLed', '余位显示屏', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"LEDREGIONSDISPLAY","identifier":"Display","name":"显示内容","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3646528617', 'CustomCategory', '自定义品类', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3652010661', 'RegulatorPool', '调节池调节池', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3652589839', 'Aquatic', '水产', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3655084651', 'WaterPressureSensor', '水压传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3656857237', 'IRRemoteController', '红外遥控器', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3661757174', 'EnvSensor', '九合一环境传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"10000","min":"0","precise":0,"step":"1","unit":"ppm","unitName":"ppm"},"dataType":"INT","description":"co2Value","identifier":"CO2","name":"二氧化碳","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"pm2Value","identifier":"PM25","name":"PM25浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"pm10Value","identifier":"PM10","name":"PM10浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1","min":"0","precise":7,"step":"0.01","unit":"ppm","unitName":"ppm"},"dataType":"DOUBLE","description":"HCHOValue","identifier":"HCHO","name":"甲醛浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"50","min":"0","precise":7,"step":"0.01","unit":"ppm","unitName":"ppm"},"dataType":"DOUBLE","description":"TVOCValue","identifier":"Tvoc","name":"有机挥发物浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"tempValue","identifier":"Temperature","name":"温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"Power","identifier":"Battery","name":"电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"150000","min":"0","precise":1,"step":"0.01","unit":"Lux","unitName":"照度"},"dataType":"DOUBLE","description":"lightValue","identifier":"Env_lux","name":"环境光照度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":1,"step":"0.1","unit":"%RH","unitName":"相对湿度"},"dataType":"FLOAT","description":"humidityValue","identifier":"Humidity","name":"湿度","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3673767326', 'WindowLinearActuator', '推窗器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关窗","value":0},{"dataType":"ENUM","name":"开窗","value":1},{"dataType":"ENUM","name":"暂停","value":2}],"dataType":"ENUM","description":"","identifier":"ActuatorOperationMode","name":"推窗器操作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"ActuatorPosition","name":"推窗器位置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3687945806', 'SceneSwitch', '场景开关', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"键值信息上报","eventType":"INFO_EVENT_TYPE","identifier":"KeyValueNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"KeyValue","name":"键值","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '3704883068', 'Sphygmomanometer', '电子血压计', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":16},"dataType":"TEXT","description":"","identifier":"NumberModel","name":"型号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":12},"dataType":"TEXT","description":"","identifier":"NumberSerial","name":"设备号","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3710124394', 'Temperatureandhumiditysensor', '室内温湿度监测设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"120","min":"-40","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"CurrentHumidity","name":"湿度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3715228082', 'ShowerHead', '花洒', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"80","min":"0","step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","identifier":"WaterTemperature","name":"水温","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100000000","min":"0","step":"0.1","unit":"L","unitName":"升"},"dataType":"FLOAT","identifier":"WaterConsumption","name":"耗水量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"WaterOutletSwitch","name":"出水开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3736118440', 'ActiveInfraredIntrusionDetectors', '红外对射探测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3747080170', 'SmartAgriculture', '智能农业', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3752475679', 'Platinum_Temperature', '铂电阻温度传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"200","min":"-200","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3766001125', 'SensorSignalCollector', '传感器信号采集器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"低电平信号","value":0},{"dataType":"BOOL","name":"高电平信号","value":1}],"dataType":"BOOL","identifier":"HighLowLevelSignal","name":"高低电平信号","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '377641172', 'ElectricPower', '智能电力', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3779908697', 'FeatureCamera', '特征摄像头', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"Feature","name":"人脸特征数据","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3784342360', 'SOCOutlet', 'SoC插座', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '379948555', 'FireWaterCannon', '智能消防水炮', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '380146280', 'MAXHUB', '会议平板', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ToggleLightSwitch","inputParams":[],"outputParams":[],"required":false,"serviceName":"翻转主灯开关"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"6500","min":"2700","precise":0,"step":"1","unit":"K","unitName":"开尔文"},"dataType":"INT","description":"","identifier":"ColorTemperature","name":"冷暖色温","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"Brightness","name":"明暗度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"主灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"4","name":"夜灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"手动默认","value":0},{"dataType":"ENUM","name":"阅读","value":1},{"dataType":"ENUM","name":"影院","value":2},{"dataType":"ENUM","name":"夜灯","value":3},{"dataType":"ENUM","name":"生活","value":4},{"dataType":"ENUM","name":"柔和","value":5}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"色调","childSpecsDTO":{"dataType":"INT","max":"360","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Hue","name":"HSV调色"},{"childDataType":"INT","childName":"饱和度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Saturation","name":"HSV调色"},{"childDataType":"INT","childName":"明度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[5].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Value","name":"HSV调色"}],"dataType":"STRUCT","description":"","identifier":"HSVColor","name":"HSV调色","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"色调","childSpecsDTO":{"dataType":"INT","max":"360","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Hue","name":"HSL调色"},{"childDataType":"INT","childName":"饱和度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Saturation","name":"HSL调色"},{"childDataType":"INT","childName":"亮度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[6].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Lightness","name":"HSL调色"}],"dataType":"STRUCT","description":"","identifier":"HSLColor","name":"HSL调色","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"红色","childSpecsDTO":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Red","name":"RGB调色"},{"childDataType":"INT","childName":"绿色","childSpecsDTO":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Green","name":"RGB调色"},{"childDataType":"INT","childName":"蓝色","childSpecsDTO":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Blue","name":"RGB调色"}],"dataType":"STRUCT","description":"","identifier":"RGBColor","name":"RGB调色","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3807707450', 'Others', '其它', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3820236551', 'SmartTox', '智能车机', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"VehAlertService","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Vin","name":"车架号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EventID","name":"事件ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"TboxID","name":"tboxID","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"OwnerID","name":"用户ID","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"StartTime","name":"时间段起始","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EndTime","name":"时间段末尾","paraOrder":5}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"告警结果","paraOrder":0}],"required":false,"serviceName":"车辆告警服务"},{"callType":"ASYNC","custom":false,"description":"","identifier":"VehDtcService","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DeviceID","name":"设备码","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"故障码","paraOrder":0}],"required":false,"serviceName":"ECO故障码"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","identifier":"GnssTime","name":"GPS时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-128","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","identifier":"VehInsideTemp","name":"车内温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"40000","min":"0","step":"0.01","unit":"km/h","unitName":"千米每小时"},"dataType":"DOUBLE","identifier":"VehSpeed","name":"速度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"Face","value":0},{"dataType":"ENUM","name":"Face_Foot","value":1},{"dataType":"ENUM","name":"Foot","value":2},{"dataType":"ENUM","name":"Foot_Defrost","value":3},{"dataType":"ENUM","name":"Defrost","value":4},{"dataType":"ENUM","name":"Face_Foot_Defrost","value":5},{"dataType":"ENUM","name":"Face_Defrost","value":6},{"dataType":"ENUM","name":"NoMode","value":7}],"dataType":"ENUM","identifier":"VehACCircDirection","name":"空调循环模式","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"BetweenRanges","value":0},{"dataType":"ENUM","name":"ParkRange","value":1},{"dataType":"ENUM","name":"ReverseRange","value":2},{"dataType":"ENUM","name":"NeutralRange","value":3},{"dataType":"ENUM","name":"ForwardRangeA","value":4},{"dataType":"ENUM","name":"ForwardRangeB","value":5},{"dataType":"ENUM","name":"ForwardRangeC","value":6},{"dataType":"ENUM","name":"ForwardRangeD","value":7},{"dataType":"ENUM","name":"ForwardRangeE","value":8},{"dataType":"ENUM","name":"ForwardRangeF","value":9},{"dataType":"ENUM","name":"ForwardRangeG","value":10},{"dataType":"ENUM","name":"ForwardRangeH","value":11},{"dataType":"ENUM","name":"Reserved1","value":12},{"dataType":"ENUM","name":"Reserved2","value":13},{"dataType":"ENUM","name":"LeverPositionUnknown","value":15}],"dataType":"ENUM","identifier":"VehGearPos","name":"档位","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"60000","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataType":"DOUBLE","identifier":"Altitude","name":"海拔","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"False","value":0},{"dataType":"BOOL","name":"Ture","value":1}],"dataType":"BOOL","identifier":"VehACSwitch","name":"空调开关","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"180","min":"0","step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","identifier":"Longitude","name":"经度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"180","min":"0","step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","identifier":"Latitude","name":"纬度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"360","min":"0","step":"0.01","unit":"°","unitName":"度"},"dataType":"DOUBLE","identifier":"DirectionAngle","name":"方向角度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"eventName":"碰撞事件","eventType":"INFO_EVENT_TYPE","identifier":"CrashDetectedEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"12750","min":"0","precise":16,"step":"0.01","unit":"r/min(rpm)","unitName":"转每分"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"vehRPM","name":"发送机转速","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"False","value":0},{"dataType":"BOOL","name":"Ture","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"VehSeatBeltDrv","name":"主驾安全带","paraOrder":1}],"required":false},{"custom":false,"eventName":"胎压事件","eventType":"ERROR_EVENT_TYPE","identifier":"TyrePressureEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"False","value":0},{"dataType":"BOOL","name":"Ture","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"VehTyrePressFault","name":"胎压故障","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '3827564613', 'Dimming_panel', '家居调光面板', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"Brightness","name":"明暗度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"7000","min":"2000","precise":0,"step":"1","unit":"K","unitName":"开尔文"},"dataType":"INT","description":"","identifier":"ColorTemperature","name":"冷暖色温","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"色调","childSpecsDTO":{"dataType":"INT","max":"360","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Hue","name":"场景颜色"},{"childDataType":"INT","childName":"饱和度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Saturation","name":"场景颜色"},{"childDataType":"INT","childName":"明度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Value","name":"场景颜色"}],"dataType":"STRUCT","description":"","identifier":"ScenesColor","name":"场景颜色","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"色调","childSpecsDTO":{"dataType":"INT","max":"360","min":"0","precise":0,"step":"1","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Hue","name":"HSV调色"},{"childDataType":"INT","childName":"饱和度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Saturation","name":"HSV调色"},{"childDataType":"INT","childName":"明度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Value","name":"HSV调色"}],"dataType":"STRUCT","description":"","identifier":"HSVColor","name":"HSV调色","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '383489426', 'Containers', '售货柜', '{"services":[{"callType":"SYNC","custom":false,"description":"上报设备最新全部的库存情况","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"下单数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"},{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"增加的数量","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"增加库存"},{"callType":"SYNC","custom":false,"description":"单个库存查询","identifier":"getInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"c","name":"库存","paraOrder":0}],"required":true,"serviceName":"单个库存查询"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '3845952132', 'AgriculturalMonitor', '农业监控设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"CollectionEquipmentStatus","name":"综合采集器状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"55.0","min":"-40.0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"SoilTemperature","name":"土壤温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"SoilMoisture","name":"土壤湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"500","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"CO2Content","name":"二氧化碳含量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"O2Content","name":"氧气含量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"Lux","unitName":"卢克斯"},"dataType":"FLOAT","description":"","identifier":"LightLux","name":"光照强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"55.0","min":"-40.0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"EnvironmentTemperature","name":"环境温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"EnvironmentHumidity","name":"环境湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[8].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[8].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[8].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3876844561', 'PumpValve', '泵阀', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '3889716365', 'EmbeddedSteamer', '嵌入式电蒸箱', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1440","min":"0","precise":0,"step":"1","unit":"min","unitName":"分钟"},"dataType":"INT","description":"","identifier":"AppointmentTime","name":"预约时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"1","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PreheatSwitch","name":"预热开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"255","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"PreheatTemperature","name":"预热温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"PowerLevel","name":"功率档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"30","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"ProbeTemperature","name":"探针温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","precise":0,"step":"1","unit":"g","unitName":"克"},"dataType":"INT","description":"","identifier":"Weight","name":"重量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"230","min":"90","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"HeatingTemperature","name":"加热温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"230","min":"70","precise":7,"step":"0.01","unit":"g","unitName":"克"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"1","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"1","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WarmDuration","name":"保温时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"预约中","value":2},{"dataType":"ENUM","name":"保温中","value":3},{"dataType":"ENUM","name":"预热中","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PauseSwitch","name":"暂停开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地美食","value":1},{"dataType":"ENUM","name":"云食谱","value":2}],"dataType":"ENUM","description":"","identifier":"RecipeInfo","name":"食谱信息","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3889814573', 'DoorSensor', '门磁', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"127","min":"-127","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"lqi","name":"信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"zsta","name":"设备状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"batpt","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3897856191', 'Dehumidifier', '除湿器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"500","min":"300","precise":7,"step":"0.01","unit":"ppm","unitName":"百万分率"},"dataType":"DOUBLE","description":"","identifier":"CO2","name":"二氧化碳浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurrentHumidity","name":"当前相对湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"3","min":"0","precise":7,"step":"0.01","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"DOUBLE","description":"","identifier":"HCHO","name":"甲醛浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"停止","value":0},{"dataType":"ENUM","name":"摇摆","value":1}],"dataType":"ENUM","description":"","identifier":"HorizontalAdjustment","name":"出风口水平调节","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"Ions","name":"健康_离子团","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"","identifier":"PM25","name":"PM25值","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"h","unitName":"小时"},"dataType":"DOUBLE","description":"","identifier":"Runtime","name":"运行时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"TargetHumidity","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"3","min":"0","precise":7,"step":"0.01","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"DOUBLE","description":"","identifier":"TVOC","name":"TVOC_VOC浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"UV","name":"紫外线杀菌","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"停止","value":0},{"dataType":"ENUM","name":"摆动","value":1}],"dataType":"ENUM","description":"","identifier":"VerticalAdjustment","name":"出风口垂直调节","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"风速","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动模式","value":0},{"dataType":"ENUM","name":"手动模式","value":1},{"dataType":"ENUM","name":"干衣模式","value":2}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '390986828', 'Juicer', '果汁机', '{"services":[{"callType":"SYNC","custom":false,"description":"单个库存查询","identifier":"getInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"c","name":"库存","paraOrder":0}],"required":true,"serviceName":"单个库存查询"},{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"库存","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"增加库存"},{"callType":"SYNC","custom":false,"description":"批量库存查询","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '3915613047', 'SmartElevator', '智能电梯', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"ElevatorStatus","name":"电梯状态","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"ALERT_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '392237309', 'irrigation', '灌溉系统', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ActivateAlarm","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"停止报警","value":0},{"dataType":"ENUM","name":"系统撤防提示","value":1},{"dataType":"ENUM","name":"系统布防提示","value":2},{"dataType":"ENUM","name":"防盗报警","value":3},{"dataType":"ENUM","name":"火警","value":4},{"dataType":"ENUM","name":"紧急情况报警","value":5},{"dataType":"ENUM","name":"110报警","value":6}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"AlarmMode","name":"报警模式","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"触发报警"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SetSpeed","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"未设置","value":0},{"dataType":"ENUM","name":"加速","value":1},{"dataType":"ENUM","name":"减速","value":2}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"SetSpeedMode","name":"速度调整模式","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"调整速度"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"-35","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"TargetHumidity","name":"目标湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未感应到","value":0},{"dataType":"BOOL","name":"感应到","value":1}],"dataType":"BOOL","description":"","identifier":"SensorState","name":"感应状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"h","unitName":"时"},"dataType":"DOUBLE","description":"","identifier":"Runtime","name":"运行时间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低液位","value":0},{"dataType":"ENUM","name":"高液位","value":1}],"dataType":"ENUM","description":"","identifier":"WaterLevel","name":"水位","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"L","unitName":"升"},"dataType":"DOUBLE","description":"","identifier":"CurrentWaterVolume","name":"当前水量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"上","value":1},{"dataType":"ENUM","name":"下","value":2},{"dataType":"ENUM","name":"左","value":3},{"dataType":"ENUM","name":"右","value":4}],"dataType":"ENUM","description":"","identifier":"DirectionControl","name":"方向控制","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'); -INSERT INTO "thing_model_template" ("created", "modified", "id", "category_key", "category_name", "thing_model_json") VALUES -('1692347065', '0', '3923937548', 'SoyMilkMaker', '豆浆机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"温饮","value":0},{"dataType":"ENUM","name":"热饮","value":1}],"dataType":"ENUM","description":"","identifier":"DrinkTemperatureType","name":"饮用温度类型","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"预约中","value":2},{"dataType":"ENUM","name":"保温中","value":3},{"dataType":"ENUM","name":"预热中","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"Runtime","name":"运行时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"PresetFinishTime","name":"预设完成时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3925398648', 'Television', '电视机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"音量减","value":0},{"dataType":"ENUM","name":"音量加","value":1}],"dataType":"ENUM","description":"","identifier":"Volume","name":"音量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"频道减","value":0},{"dataType":"ENUM","name":"频道加","value":1}],"dataType":"ENUM","description":"","identifier":"Channel","name":"频道","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"Mute","name":"静音","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '3953372011', 'liquidometer', '液位计', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3957959620', 'Gatewaycampus', '网关-园区', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"868M","value":0},{"dataType":"ENUM","name":"915M","value":1},{"dataType":"ENUM","name":"2_4G","value":2}],"dataType":"ENUM","description":"","identifier":"ZB_Band","name":"ZB带宽","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"NETWORK_KEY","name":"网络秘钥","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"ZB_CO_MAC","name":"ZB设备MAC地址","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"EXT_PAN_ID","name":"扩展网路标识","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"26","min":"11","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"ZB_Channel","name":"ZB通道","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"ZB_PAN_ID","name":"网路标识","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '3962651193', 'TemperatureHumidityDetector', '温湿度检测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"120","min":"-40","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"CurrentHumidity","name":"当前湿度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '3971254218', 'RainGauge', '雨量计', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '3971486819', 'SmartIndustry', '智能工业', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '4006211061', 'ElevatorAccelerationSensor', '电梯加速度探测传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":""},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '403744216', 'GrainMill', '谷物碾磨机', '{"services":[{"callType":"ASYNC","custom":false,"description":"把本地时间同步到NVR上","identifier":"SyncTime","inputParams":[{"custom":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"LocalTime","name":"本地时间","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"失败","value":0},{"dataType":"BOOL","name":"成功","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"SyncTimeStatus","name":"状态","paraOrder":0}],"required":false,"serviceName":"同步时间"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"50","min":"0","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"Temperature","name":"储仓温度","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"eventName":"故障上报","eventType":"ALERT_EVENT_TYPE","identifier":"Error","outputData":[],"required":false}]}'), -('1692347065', '0', '4039188686', 'VoiceTemperatureControlPanel', '语音温控面板', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"50","min":"0","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"30","min":"20","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0},{"dataType":"ENUM","name":"水超温","value":1},{"dataType":"ENUM","name":"传感器故障","value":2},{"dataType":"ENUM","name":"加热器缺水","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '4041349742', 'FoodDispenser', '取餐柜', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"HeatingSwitch","name":"加热开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SterilizingSwitch","name":"消毒开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"CoolingSwitch","name":"制冷开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"CellCount","name":"单元格数量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无加热器","value":0},{"dataType":"ENUM","name":"整体加热","value":1},{"dataType":"ENUM","name":"单独加热","value":2}],"dataType":"ENUM","description":"","identifier":"HeatingMode","name":"加热模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无消毒","value":0},{"dataType":"ENUM","name":"整体消毒","value":1},{"dataType":"ENUM","name":"单独消毒","value":2}],"dataType":"ENUM","description":"","identifier":"SterilizeringMode","name":"消毒模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"编号","childSpecsDTO":{"dataType":"TEXT","length":100},"dataSpecs":{"$ref":"$.properties[7].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"CellCode","name":"单元格门开关"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"childName":"状态","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"STRUCT","identifier":"Status","name":"单元格门开关"}],"dataType":"STRUCT","description":"","identifier":"CellDoorSwitch","name":"单元格门开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"编号","childSpecsDTO":{"dataType":"TEXT","length":100},"dataSpecs":{"$ref":"$.properties[8].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"CellCode","name":"单元格照明灯开关"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"childName":"状态","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"STRUCT","identifier":"Status","name":"单元格照明灯开关"}],"dataType":"STRUCT","description":"","identifier":"CellLightSwitch","name":"单元格照明灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"编号","childSpecsDTO":{"dataType":"TEXT","length":100},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"CellCode","name":"单元格指示灯开关"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"childName":"状态","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"STRUCT","identifier":"Status","name":"单元格指示灯开关"}],"dataType":"STRUCT","description":"","identifier":"CellIndicatorSwitch","name":"单元格指示灯开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"编号","childSpecsDTO":{"dataType":"TEXT","length":100},"dataSpecs":{"$ref":"$.properties[10].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"CellCode","name":"单元格加热开关"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"childName":"状态","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"STRUCT","identifier":"Status","name":"单元格加热开关"}],"dataType":"STRUCT","description":"","identifier":"CellHeatingSwitch","name":"单元格加热开关","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"前门状态反馈","eventType":"INFO_EVENT_TYPE","identifier":"FrontDoorStatus","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"已开门","value":1},{"dataType":"ENUM","name":"正在开门","value":2},{"dataType":"ENUM","name":"已关门","value":3},{"dataType":"ENUM","name":"正在关门","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"DoorStatus","name":"门状态","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '4045400804', 'ExhaustWindow', '电动排烟窗', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"WorkSwitch","name":"运行开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"经度"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"纬度"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"海拔"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '4047737731', 'loraLight', 'lora单灯', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"LightStatus","name":"工作状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"LightAdjustLevel","name":"调光等级","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"-2147483648","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"seq","name":"帧序号","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","description":"","identifier":"cmd","name":"命令号","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"illumination","name":"环境亮度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"警告","value":1}],"dataType":"BOOL","description":"","identifier":"overPower","name":"功率过高","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"告警","value":1}],"dataType":"BOOL","description":"","identifier":"underPower","name":"功率过低","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"告警","value":1}],"dataType":"BOOL","description":"","identifier":"powerGetErr","name":"电能采集故障","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"4","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"LightVolt","name":"工作电压","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"LightCurrent","name":"工作电流","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000","min":"0","precise":7,"step":"0.01","unit":"W","unitName":"瓦特"},"dataType":"DOUBLE","description":"","identifier":"ActivePower","name":"有功功率值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1","min":"0.1","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"PowerRatio","name":"功率因数","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","description":"","identifier":"PowerConsumption","name":"用电量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"告警","value":1}],"dataType":"BOOL","description":"","identifier":"OverVoltError","name":"过压告警","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"告警","value":1}],"dataType":"BOOL","description":"","identifier":"UnderVoltError","name":"欠压告警","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"errValue","name":"故障发生值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65536","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"setValue","name":"故障门限值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"-2147483648","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"resCode","name":"操作返回值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"INT","childName":"策略编号","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"-2147483648","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"methodId","name":"策略"},{"childDataType":"INT","childName":"运行模式","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"mode","name":"策略"},{"childDataType":"INT","childName":"亮度","childSpecsDTO":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"brightness","name":"策略"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"开关","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"onOff","name":"策略"},{"childDataType":"INT","childName":"策略参考值","childSpecsDTO":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"onSet","name":"策略"},{"childDataType":"INT","childName":"循环设置","childSpecsDTO":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[5].childSpecsDTO"},"dataType":"STRUCT","identifier":"loop","name":"策略"},{"childDataType":"DATE","childName":"生效时间","childSpecsDTO":{"dataType":"DATE","length":64},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[6].childSpecsDTO"},"dataType":"STRUCT","identifier":"effectTime","name":"策略"},{"childDataType":"DATE","childName":"失效时间","childSpecsDTO":{"dataType":"DATE","length":64},"dataSpecs":{"$ref":"$.properties[18].dataSpecsList[7].childSpecsDTO"},"dataType":"STRUCT","identifier":"invalidTime","name":"策略"}],"dataType":"STRUCT","description":"","identifier":"action","name":"策略","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '4061025073', 'ChemicalFiberManufacturing', '化学纤维制造业', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '406684262', 'ElectricWaterHeater', '电热水器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"75","min":"0","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"全日制","value":1},{"dataType":"ENUM","name":"夜电","value":2}],"dataType":"ENUM","description":"","identifier":"HeatMode","name":"加热模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"HotWaterVolumeStatus","name":"热水量状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"75","min":"30","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"半胆","value":0},{"dataType":"ENUM","name":"全胆","value":1},{"dataType":"ENUM","name":"速热","value":2}],"dataType":"ENUM","description":"","identifier":"PowerMode","name":"功耗模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"EnergySavingSwitch","name":"节能开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未用水","value":0},{"dataType":"ENUM","name":"用水中","value":1}],"dataType":"ENUM","description":"","identifier":"WateringStatus","name":"用水状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"加热中","value":1},{"dataType":"ENUM","name":"保温中","value":2}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"HeatTimeLeft","name":"加热剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"4000","min":"0","precise":7,"step":"0.01","unit":"W","unitName":"瓦特"},"dataType":"DOUBLE","description":"","identifier":"CurrentPower","name":"当前功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时"},"dataType":"DOUBLE","description":"","identifier":"PowerConsumption","name":"功耗","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[12].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"开","value":0},{"dataType":"BOOL","name":"关","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"开","value":0},{"dataType":"BOOL","name":"关","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '4071890702', 'FireButton', '消防手报', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '408226614', 'InternetProtocolCamera', '网络摄像机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '4083587403', 'WallSwitch', '入墙开关', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_1","name":"电源开关_1","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_2","name":"电源开关_2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_3","name":"电源开关_3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_4","name":"电源开关_4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭背光灯","value":1},{"dataType":"ENUM","name":"状态指示灯","value":2},{"dataType":"ENUM","name":"位置指示灯","value":3}],"dataType":"ENUM","description":"","identifier":"BackLightMode","name":"背光灯模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"127","min":"-127","precise":7,"step":"0.01","unit":"dBm","unitName":"分贝毫瓦"},"dataType":"DOUBLE","description":"","identifier":"RSSI","name":"接收信号强度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_5","name":"电源开关_5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_6","name":"电源开关_6","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_7","name":"电源开关_7","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_8","name":"电源开关_8","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch_9","name":"电源开关_9","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"操作对象","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[12].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Target","name":"倒计时列表"},{"childDataType":"TEXT","childName":"倒计时命令","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.properties[12].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Contents","name":"倒计时列表"}],"dataType":"STRUCT","description":"","identifier":"CountDownList","name":"倒计时列表","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[13].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '4101715846', 'Audio', '音箱', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"CD","value":0},{"dataType":"ENUM","name":"USB","value":1},{"dataType":"ENUM","name":"SD_MMC","value":2},{"dataType":"ENUM","name":"Tape","value":3},{"dataType":"ENUM","name":"Phone","value":4},{"dataType":"ENUM","name":"Aux1","value":5},{"dataType":"ENUM","name":"Aux2","value":6},{"dataType":"ENUM","name":"LineIn","value":7},{"dataType":"ENUM","name":"Guitar","value":8},{"dataType":"ENUM","name":"FM","value":9},{"dataType":"ENUM","name":"AM","value":10},{"dataType":"ENUM","name":"DAB","value":11}],"dataType":"ENUM","description":"","identifier":"MediaSource","name":"多媒体资源","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"停止","value":0},{"dataType":"ENUM","name":"播放","value":1},{"dataType":"ENUM","name":"暂停","value":2}],"dataType":"ENUM","description":"","identifier":"PlayType","name":"播放类型","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"上一首","value":1},{"dataType":"ENUM","name":"下一首","value":2}],"dataType":"ENUM","description":"","identifier":"MusicSelect","name":"音乐选择","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"单曲循环","value":1},{"dataType":"ENUM","name":"全部循环","value":2},{"dataType":"ENUM","name":"随机","value":3}],"dataType":"ENUM","description":"","identifier":"RepeatType","name":"循环模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"LeftRightBalance","name":"左右耳平衡","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流行","value":1},{"dataType":"ENUM","name":"爵士","value":2},{"dataType":"ENUM","name":"古典","value":3},{"dataType":"ENUM","name":"摇滚","value":4},{"dataType":"ENUM","name":"普通","value":5}],"dataType":"ENUM","description":"","identifier":"EqualizerType","name":"EQ模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"AutoDJSwitch","name":"自动DJ模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"ENUM","description":"","identifier":"CoordinateSystem","name":"坐标系统","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '4101876373', 'AirCollect', '大气监测设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"120","min":"-40","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"Temperature","name":"温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"RelativeHumidity","name":"相对湿度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"360","min":"0","precise":7,"step":"0.1","unit":"°","unitName":"度"},"dataType":"FLOAT","description":"","identifier":"WindDirection","name":"风向","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"m/s","unitName":"米每秒"},"dataType":"FLOAT","description":"","identifier":"WindSpeed","name":"风速","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1060","min":"550","precise":7,"step":"0.1","unit":"hPa","unitName":"百帕"},"dataType":"FLOAT","description":"","identifier":"Atmosphere","name":"气压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"PM25","name":"PM25浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"PM10","name":"PM10浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"SO2","name":"二氧化硫浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"Hexad","name":"六价物","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"Arsenic","name":"砷","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"Mercury","name":"汞","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"Cadmium","name":"镉","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"BaP","name":"苯并芘","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"Lead","name":"铅","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"NO2","name":"二氧化氮浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"FLOAT","description":"","identifier":"CO","name":"一氧化碳浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"O3","name":"臭氧浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"TSP","name":"总悬浮颗粒物","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"FLOAT","description":"","identifier":"NitrogenOxides","name":"氮氧化物浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"μg/d㎡·d","unitName":"每天每平方分米微克"},"dataType":"FLOAT","description":"","identifier":"Fluoride","name":"氟化物浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"null","unitName":"null"},"dataType":"INT","description":"","identifier":"AQI","name":"空气质量指数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255,"unit":""},"dataType":"TEXT","description":"","identifier":"PrimaryItem","name":"首要污染物","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[22].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '4108829081', 'SingleSlotOutlet', 'SoC单孔插座', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1},{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_5","name":"插孔开关5","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_4","name":"插孔开关4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"16","min":"0","precise":7,"step":"0.1","unit":"A","unitName":"安培"},"dataType":"FLOAT","description":"","identifier":"RMSCurrent","name":"有效电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_7","name":"插孔开关7","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"USBSwitch_2","name":"USB开关2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_6","name":"插孔开关6","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_8","name":"插孔开关8","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"USBSwitch_4","name":"USB开关4","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_1","name":"插孔开关1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1},{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_2","name":"插孔开关2","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"250","min":"0","precise":7,"step":"0.1","unit":"V","unitName":"伏特"},"dataType":"FLOAT","description":"","identifier":"RMSVoltage","name":"有效电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"USBSwitch_1","name":"USB开关1","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"99999","min":"0","precise":7,"step":"0.1","unit":"kW·h","unitName":"千瓦·时"},"dataType":"FLOAT","description":"","identifier":"TotalConsumption","name":"总耗电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"SocketSwitch_3","name":"插孔开关3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"已停止","value":0},{"dataType":"BOOL","name":"执行中","value":1}],"childName":"执行状态","dataSpecsList":[{"dataType":"BOOL","name":"已停止","value":0},{"dataType":"BOOL","name":"执行中","value":1}],"dataType":"STRUCT","identifier":"IsRunning","name":"本地倒计时"},{"childDataType":"INT","childName":"剩余时间","childSpecsDTO":{"dataType":"INT","max":"86399","min":"1","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.properties[15].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"TimeLeft","name":"本地倒计时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"childName":"开关动作","dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"STRUCT","identifier":"PowerSwitch","name":"本地倒计时"},{"childDataType":"DATE","childName":"当前时间戳","childSpecsDTO":{"dataType":"DATE","length":64},"dataSpecs":{"$ref":"$.properties[15].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timestamp","name":"本地倒计时"}],"dataType":"STRUCT","description":"","identifier":"CountDown","name":"本地倒计时","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"4000","min":"0","precise":7,"step":"0.1","unit":"W","unitName":"瓦特"},"dataType":"FLOAT","description":"","identifier":"RealTimePower","name":"实时功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1},{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"USBSwitch_3","name":"USB开关3","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[18].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","description":"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致。","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '4115745139', 'WaterSoftener', '软水机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"24","min":"0","step":"1","unit":"h","unitName":"时"},"dataType":"INT","identifier":"CurrentTime_h","name":"当前小时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1440","min":"0","step":"1","unit":"min","unitName":"分"},"dataType":"INT","identifier":"CurrentTime_m","name":"当前分钟","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"360","min":"0","step":"1","unit":"s","unitName":"秒"},"dataType":"INT","identifier":"CurrentTime_s","name":"当前秒","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"365","min":"0","step":"1","unit":"d","unitName":"天"},"dataType":"INT","identifier":"RegenerateDays","name":"再生间隔天数","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"24","min":"0","step":"1","unit":"h","unitName":"时"},"dataType":"INT","identifier":"RegenerateTime_h","name":"再生引发小时","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1440","min":"0","step":"1","unit":"min","unitName":"分"},"dataType":"INT","identifier":"RegenerateTime_m","name":"再生引发分钟","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"999","min":"0","step":"1","unit":"mg/L","unitName":"毫克每升"},"dataType":"INT","identifier":"RawHardness","name":"原水硬度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"OneKeyRegenerate","name":"一键再生","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9999.00","min":"0","step":"0.01","unit":"L","unitName":"升"},"dataType":"DOUBLE","identifier":"waterUsed","name":"已用总水量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"99.00","min":"0","step":"0.1","unit":"L","unitName":"升"},"dataType":"FLOAT","identifier":"RemainingWater","name":"再生剩余水量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无","value":0},{"dataType":"BOOL","name":"有","value":1}],"dataType":"BOOL","identifier":"NoSaltFlag","name":"缺盐报警","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","step":"0.01","unit":"m³/h","unitName":"立方米每小时"},"dataType":"DOUBLE","identifier":"InstantaneousFlow","name":"瞬时流量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1}],"dataType":"ENUM","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"手动默认","value":0},{"dataType":"ENUM","name":"阅读","value":1},{"dataType":"ENUM","name":"影院","value":2},{"dataType":"ENUM","name":"夜灯","value":3},{"dataType":"ENUM","name":"生活","value":4},{"dataType":"ENUM","name":"柔和","value":5}],"dataType":"ENUM","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"eventName":"故障上报","eventType":"ERROR_EVENT_TYPE","identifier":"Faultreport","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0},{"dataType":"ENUM","name":"水超温","value":1},{"dataType":"ENUM","name":"传感器故障","value":2},{"dataType":"ENUM","name":"加热器缺水","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"error","name":"故障","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '4127748569', 'GasWaterHeater', '燃气热水器', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"set","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"75","min":"35","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"Set_Temputer","name":"设定温度","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","direction":"PARAM_INPUT","identifier":"Safety_Temputer_Lock","name":"防烫保护锁","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭预热","value":0},{"dataType":"ENUM","name":"单次预热","value":1},{"dataType":"ENUM","name":"定时预热","value":2},{"dataType":"ENUM","name":"全天预热","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Preheat_Mode","name":"预热模式","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":254},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Timer_Quantum","name":"定时信息","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","direction":"PARAM_INPUT","identifier":"PowerSwitch","name":"电源开关","paraOrder":4}],"outputParams":[],"required":false,"serviceName":"设备控制"},{"callType":"SYNC","custom":false,"description":"","identifier":"get","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"Set_Temputer","value":0},{"dataType":"ENUM","name":"Safety_Temputer_Loc","value":1},{"dataType":"ENUM","name":"Preheat_Mode","value":2},{"dataType":"ENUM","name":"Timer_Quantum","value":3},{"dataType":"ENUM","name":"OutputWaterTempute","value":4},{"dataType":"ENUM","name":"Flame_State","value":5},{"dataType":"ENUM","name":"CombustibleGasCheck","value":6},{"dataType":"ENUM","name":"Error_Code","value":7},{"dataType":"ENUM","name":"PowerSwitch","value":8}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Selected_Property","name":"状态同步属性","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"75","min":"35","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Set_Temputer","name":"设定温度","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Safety_Temputer_Lock","name":"防烫保护锁","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"单次预热","value":1},{"dataType":"ENUM","name":"关闭预热","value":0},{"dataType":"ENUM","name":"定时预热","value":2},{"dataType":"ENUM","name":"全天预热","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Preheat_Mode","name":"预热模式","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":254},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Timer_Quantum","name":"定时信息","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"OutputWaterTemputer","name":"出水温度","paraOrder":4},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"无火","value":0},{"dataType":"BOOL","name":"有火","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Flame_State","name":"燃烧火焰状态","paraOrder":5},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"未监测到可燃气体泄漏","value":0},{"dataType":"ENUM","name":"监测到可燃气体谢里普","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"CombustibleGasCheck","name":"可燃气体检测","paraOrder":6},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"PowerSwitch","name":"电源开关","paraOrder":7},{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在进行固件升级","value":0},{"dataType":"BOOL","name":"正在进行固件升级","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"OTA_Status","name":"固件升级状态","paraOrder":8},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0},{"dataType":"ENUM","name":"CO故障","value":90},{"dataType":"ENUM","name":"比例阀故障","value":80},{"dataType":"ENUM","name":"意外火焰检测故障","value":72},{"dataType":"ENUM","name":"电磁阀故障","value":71},{"dataType":"ENUM","name":"风机故障","value":61},{"dataType":"ENUM","name":"出水温度检测器故障","value":32},{"dataType":"ENUM","name":"进水温度传感器故障","value":31},{"dataType":"ENUM","name":"高温继电器故障","value":20},{"dataType":"ENUM","name":"出水温度过高故障","value":16},{"dataType":"ENUM","name":"温度熔断器故障","value":14},{"dataType":"ENUM","name":"燃烧中熄火","value":12},{"dataType":"ENUM","name":"点火失败","value":11},{"dataType":"ENUM","name":"单次燃烧时间超过60分钟","value":1},{"dataType":"ENUM","name":"CH4故障","value":91}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Error_Code","name":"故障状态","paraOrder":9}],"required":false,"serviceName":"状态同步"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"75","min":"-10","precise":7,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机中","value":0},{"dataType":"ENUM","name":"加热中","value":1}],"dataType":"ENUM","description":"","identifier":"HeatState","name":"加热状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3}],"dataType":"ENUM","description":"","identifier":"PowerMode","name":"火力档位","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"45","min":"-10","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m³","unitName":"立方米"},"dataType":"DOUBLE","description":"","identifier":"TotalGas","name":"总耗气量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"L","unitName":"升"},"dataType":"DOUBLE","description":"","identifier":"TotalWater","name":"总耗水量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦特"},"dataType":"DOUBLE","description":"","identifier":"PowerConsumption","name":"功耗","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"单次预热","value":1},{"dataType":"ENUM","name":"关闭预热","value":0},{"dataType":"ENUM","name":"定时预热","value":2},{"dataType":"ENUM","name":"全天预热","value":3}],"dataType":"ENUM","description":"","identifier":"Preheat_Mode","name":"预热模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"Safety_Temputer_Lock","name":"防烫保护锁","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":254},"dataType":"TEXT","description":"","identifier":"Timer_Quantum","name":"定时信息","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"OutputWaterTemputer","name":"出水温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"无火","value":0},{"dataType":"BOOL","name":"有火","value":1}],"dataType":"BOOL","description":"","identifier":"Flame_State","name":"燃烧火焰状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未监测到可燃气体泄漏","value":0},{"dataType":"ENUM","name":"监测到可燃气体泄漏","value":1}],"dataType":"ENUM","description":"","identifier":"CombustibleGasCheck","name":"可燃气体检测","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0},{"dataType":"ENUM","name":"CO故障","value":90},{"dataType":"ENUM","name":"比例阀故障","value":80},{"dataType":"ENUM","name":"意外火焰监测故障","value":72},{"dataType":"ENUM","name":"电磁阀故障","value":71},{"dataType":"ENUM","name":"风机故障","value":61},{"dataType":"ENUM","name":"出水温度传感器故障","value":31},{"dataType":"ENUM","name":"高温继电器故障","value":20},{"dataType":"ENUM","name":"出水温度过高故障","value":16},{"dataType":"ENUM","name":"温度熔断器故障","value":14},{"dataType":"ENUM","name":"燃烧中熄火","value":12},{"dataType":"ENUM","name":"点火失败","value":11},{"dataType":"ENUM","name":"单次燃烧大于60min","value":1},{"dataType":"ENUM","name":"CH4故障","value":91}],"dataType":"ENUM","description":"","identifier":"Error_Code","name":"故障状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在升级","value":0},{"dataType":"BOOL","name":"正在升级","value":1}],"dataType":"BOOL","description":"","identifier":"OTA_Status","name":"固件升级状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[16].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"固件升级通知","eventType":"INFO_EVENT_TYPE","identifier":"OTA_Event","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"未在升级","value":0},{"dataType":"BOOL","name":"正在升级","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"OTA_Status","name":"固件升级状态","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"机器故障告警","eventType":"INFO_EVENT_TYPE","identifier":"Machine_Fault_Event","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0},{"dataType":"ENUM","name":"发生异常","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Error_Code","name":"错误信息","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"可燃气体告警","eventType":"INFO_EVENT_TYPE","identifier":"GasCheck_Event","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"未检测到可燃气体","value":0},{"dataType":"ENUM","name":"检测到可燃气体","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Gas_Result","name":"可燃气体检测结果","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '4128524728', 'Thermometer', '体温计', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"Reset","inputParams":[],"outputParams":[],"required":false,"serviceName":"复位"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"5000","min":"2000","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"BodyTemperature","name":"人体温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '4139882313', 'SmartGasFlowMeter', '智能燃气流量计', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m³","unitName":"立方米"},"dataType":"DOUBLE","description":"","identifier":"IntegratedFlow","name":"总累计量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m³","unitName":"立方米"},"dataType":"DOUBLE","description":"","identifier":"WorkingConditionIntegratedFlow","name":"工况累计量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m³","unitName":"立方米"},"dataType":"DOUBLE","description":"","identifier":"StandardConditionIntegratedFlow","name":"标况累计量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m³/h","unitName":"立方米每小时"},"dataType":"DOUBLE","description":"","identifier":"WorkingConditionInstantaneousFlow","name":"工况流量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"m³/h","unitName":"立方米每小时"},"dataType":"DOUBLE","description":"","identifier":"StandardConditionInstantaneousFlow","name":"标况流量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000","min":"-100","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"Temperature","name":"温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"MPa","unitName":"兆帕"},"dataType":"DOUBLE","description":"","identifier":"Pressure","name":"压力","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"表计通讯故障","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"通讯中断","value":0},{"dataType":"BOOL","name":"通讯正常","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"M_STATUS","name":"表计通讯状态","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '4141184612', 'SmartPatrol', '智能巡护', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '4144136539', 'DigitalShop', '数字门店', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '415419478', 'EnvironmentMonitor', '环境监测设备', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"SoundModuleStatus","name":"声音模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"CO2ModuleStatus","name":"二氧化碳模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"500.0","min":"0","precise":7,"step":"0.1","unit":"μg/m³","unitName":"毫克每平方米"},"dataType":"FLOAT","description":"Cube环境监测设备","identifier":"PM25Value","name":"PM25浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"PM25ModuleStatus","name":"PM25模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","precise":7,"step":"0.1","unit":"Lux","unitName":"卢克斯"},"dataType":"FLOAT","description":"","identifier":"LightLuxValue","name":"光照度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"LightModuleStatus","name":"光照度模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"ppm","unitName":"百万分率"},"dataType":"INT","description":"","identifier":"CO2Value","name":"二氧化碳浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"55.0","min":"-40.0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"","identifier":"CurrentTemperature","name":"温度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"500","min":"0","precise":7,"step":"0.1","unit":"dB","unitName":"分贝"},"dataType":"FLOAT","description":"","identifier":"SoundDecibelValue","name":"声音分贝值","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"RelativeHumidity","name":"湿度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"通信正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"设备异常","value":2}],"dataType":"ENUM","description":"","identifier":"HumitureModuleStatus","name":"模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"FLOAT","childName":"经度","childSpecsDTO":{"dataType":"FLOAT","max":"180","min":"-180","precise":7,"step":"0.1","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"FLOAT","childName":"纬度","childSpecsDTO":{"dataType":"FLOAT","max":"90","min":"-90","precise":7,"step":"0.1","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"FLOAT","childName":"高度","childSpecsDTO":{"dataType":"FLOAT","max":"9999","min":"0","precise":7,"step":"0.1","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[11].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '4160987985', 'OutdoorStation', '门口机', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"Unlock","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"室内机开锁","value":0},{"dataType":"ENUM","name":"刷卡开锁","value":1},{"dataType":"ENUM","name":"密码开锁","value":2},{"dataType":"ENUM","name":"蓝牙开锁","value":3},{"dataType":"ENUM","name":"人脸开锁","value":4},{"dataType":"ENUM","name":"指纹开锁","value":5},{"dataType":"ENUM","name":"手机开锁","value":6}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"UnlockCode","name":"开锁方式","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"开锁"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Call","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":12},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"RoomNumber","name":"房号","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"网络故障","value":1},{"dataType":"ENUM","name":"占线","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"CallResult","name":"呼叫结果","paraOrder":0}],"required":true,"serviceName":"呼叫"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Monitor","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":12},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"RoomNumber","name":"房号","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"网络故障","value":1},{"dataType":"ENUM","name":"占线","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"MonitorResult","name":"监视结果","paraOrder":0}],"required":true,"serviceName":"监视"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Reboot","inputParams":[],"outputParams":[],"required":false,"serviceName":"重启"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"SystemVolume","name":"系统音量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"ScreenSaverTime","name":"屏保时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"IP地址","childSpecsDTO":{"dataType":"TEXT","length":16},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"IP","name":"网络配置"},{"childDataType":"TEXT","childName":"子网掩码","childSpecsDTO":{"dataType":"TEXT","length":16},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Netmask","name":"网络配置"},{"childDataType":"TEXT","childName":"默认网关","childSpecsDTO":{"dataType":"TEXT","length":16},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Gateway","name":"网络配置"},{"childDataType":"TEXT","childName":"MAC地址","childSpecsDTO":{"dataType":"TEXT","length":17},"dataSpecs":{"$ref":"$.properties[2].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"MAC","name":"网络配置"}],"dataType":"STRUCT","description":"","identifier":"NetConfiguration","name":"网络配置","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"机身码","childSpecsDTO":{"dataType":"TEXT","length":30},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"IEMI","name":"本机配置"},{"childDataType":"TEXT","childName":"软件版本","childSpecsDTO":{"dataType":"TEXT","length":10},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"SolfwareVersion","name":"本机配置"},{"childDataType":"TEXT","childName":"系统版本","childSpecsDTO":{"dataType":"TEXT","length":10},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"SystemVersion","name":"本机配置"}],"dataType":"STRUCT","description":"","identifier":"LocalConfiguration","name":"本机配置","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"开锁动作上报","eventType":"INFO_EVENT_TYPE","identifier":"UnlockNotification","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"室内机开锁","value":0},{"dataType":"ENUM","name":"刷卡开锁","value":1},{"dataType":"ENUM","name":"密码开锁","value":2},{"dataType":"ENUM","name":"蓝牙开锁","value":3},{"dataType":"ENUM","name":"人脸开锁","value":4},{"dataType":"ENUM","name":"指纹开锁","value":5},{"dataType":"ENUM","name":"手机开锁","value":6}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"UnlockState","name":"开锁方式","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"门磁状态上报","eventType":"INFO_EVENT_TYPE","identifier":"DoorSensorNotification","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"打开","value":0},{"dataType":"ENUM","name":"关闭","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"DoorState","name":"门磁状态","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '4164254065', 'AnaerobicPoo', '厌氧池', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10","min":"0","precise":7,"step":"0.1","unit":"mg/L","unitName":"毫克每升"},"dataType":"FLOAT","description":"溶氧量","identifier":"DO","name":"溶氧量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"°C","unitName":"摄氏度"},"dataType":"FLOAT","description":"温度","identifier":"temperature","name":"温度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%RH","unitName":"相对湿度"},"dataType":"FLOAT","description":"湿度","identifier":"Humidity","name":"湿度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"14","min":"1","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","description":"氢离子浓度指数(hydrogen ion concentration)是衡量水体酸碱度的一个值,亦称氢离子浓度指数、酸碱值,是溶液中氢离子活度的一种标度,也就是通常意义上溶液酸碱程度的衡量标准","identifier":"pH","name":"PH值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"200","min":"0","precise":7,"step":"0.1","unit":"mg/L","unitName":"毫克每升"},"dataType":"FLOAT","description":"总氰化物","identifier":"total_cyanide","name":"总氰化物","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"mg/L","unitName":"毫克每升"},"dataType":"FLOAT","description":"硫氰酸根","identifier":"thiocyanate_radical","name":"硫氰酸根","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000","min":"0","precise":7,"step":"0.1","unit":"mg/L","unitName":"毫克每升"},"dataType":"FLOAT","description":"氨氮","identifier":"ammonia_nitrogen","name":"氨氮","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"200","min":"0","precise":7,"step":"0.1","unit":"mg/L","unitName":"毫克每升"},"dataType":"FLOAT","description":"硫化物","identifier":"sulfide","name":"硫化物","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000","min":"0","precise":7,"step":"0.1","unit":"mg/L","unitName":"毫克每升"},"dataType":"FLOAT","description":"挥发酚","identifier":"volatile_phenol","name":"挥发酚","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000","min":"0","precise":7,"step":"0.1","unit":"mg/L","unitName":"毫克每升"},"dataType":"FLOAT","description":"碱度","identifier":"alkalinity","name":"碱度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"5000","min":"0","precise":0,"step":"1","unit":"mg/L","unitName":"毫克每升"},"dataType":"INT","description":"化学需氧量COD(Chemical Oxygen Demand)是以化学方法测量水样中需要被氧化的还原性物质的量","identifier":"COD","name":"化学需氧量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"mg/L","unitName":"毫克每升"},"dataType":"DOUBLE","description":"易释放氰化物","identifier":"easy_release_cyanide","name":"易释放氰化物","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '417041604', 'AromaDiffuser', '香薰机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"IonsSwitch","name":"负离子开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"缺水","value":1}],"dataType":"BOOL","description":"","identifier":"WaterShortage","name":"缺水状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"HeatSwitch","name":"加热开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"静音","value":0},{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3},{"dataType":"ENUM","name":"最高档","value":4}],"dataType":"ENUM","description":"","identifier":"SprayLevel","name":"雾量档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ConstantHumiditySwitch","name":"恒湿开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"TargetHumidity","name":"目标湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurrentHumidity","name":"当前湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ScreenSwitch","name":"屏显开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[9].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '4188015734', 'Siren', '声光报警器', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ActivateAlarm","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"停止报警","value":0},{"dataType":"ENUM","name":"系统撤防提示","value":1},{"dataType":"ENUM","name":"系统布防提示","value":2},{"dataType":"ENUM","name":"防盗报警","value":3},{"dataType":"ENUM","name":"火警","value":4},{"dataType":"ENUM","name":"紧急情况报警","value":5},{"dataType":"ENUM","name":"110报警","value":6}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"AlarmMode","name":"报警模式","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"触发报警"}],"properties":[],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '4192123490', 'ParkingArea', '停车区域', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"OrderCompleted","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"OrderNumber","name":"订单编号","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"支付完成","value":0},{"dataType":"ENUM","name":"免费","value":1},{"dataType":"ENUM","name":"本地支付","value":2},{"dataType":"ENUM","name":"取消订单","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"PayStatus","name":"支付状态","paraOrder":1}],"outputParams":[],"required":true,"serviceName":"订单确认"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetRelationAreaList","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"SubAreaIdListUrl","name":"子级区域Id列表Url","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ParentAreaId","name":"父级区域Id","paraOrder":1}],"required":true,"serviceName":"查询关联区域列表"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetParkSpaceList","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ParkSpaceListUrl","name":"车位列表Url","paraOrder":0}],"required":true,"serviceName":"查询车位列表"},{"callType":"SYNC","custom":false,"description":"","identifier":"CreateOrder","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"InBarrierPK","name":"进场道闸PK","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"InBarrierDN","name":"进场道闸DN","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"InTime","name":"进场时间","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"OutBarrierPK","name":"出场道闸PK","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"OutBarrierDN","name":"出场道闸DN","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"OutTime","name":"出场时间","paraOrder":6},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"支付完成","value":0},{"dataType":"ENUM","name":"未支付","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"PayStatus","name":"支付状态","paraOrder":7}],"outputParams":[],"required":true,"serviceName":"创建订单"},{"callType":"SYNC","custom":false,"description":"","identifier":"AddVehicleIOfBlackList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"新增黑名单车辆"},{"callType":"SYNC","custom":false,"description":"","identifier":"DelVehicleIOfBlackList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"删除黑名单车辆"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetBlackList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"BlackListUrl","name":"黑名单车辆Url","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"查询黑名单车辆"},{"callType":"SYNC","custom":false,"description":"","identifier":"AddVehicleIOfWhiteList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"新增白名单车辆"},{"callType":"SYNC","custom":false,"description":"","identifier":"DelVehicleIOfWhiteList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"删除白名单车辆"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetWhiteList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"WhiteListUrl","name":"白名单车辆Url","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"查询白名单车辆"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"99999999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"TotalParkSpace","name":"车位总数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"99999999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"RemainParkSpace","name":"余位总数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"AreaId","name":"区域Id","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"AreaName","name":"区域名称","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"通行订单","eventType":"INFO_EVENT_TYPE","identifier":"CarPassOrder","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"InTime","name":"进场时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"OutTime","name":"出场时间","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"99999","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Amount","name":"订单金额","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"OrderNumber","name":"订单编号","paraOrder":4},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"支付完成","value":0},{"dataType":"ENUM","name":"未支付","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"PayStatus","name":"支付状态","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"InBarrierPK","name":"进场道闸PK","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"InBarrierDN","name":"进场道闸DN","paraOrder":7},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"OutBarrierPK","name":"出场道闸PK","paraOrder":8},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"OutBarrierDN","name":"出场道闸DN","paraOrder":9},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"OutImageUrl","name":"出场照片文件URL","paraOrder":10},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"InImageUrl","name":"入场照片文件URL","paraOrder":11}],"required":true},{"custom":false,"description":"","eventName":"黑名单变更","eventType":"INFO_EVENT_TYPE","identifier":"UpdateBlackList","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"新增","value":0},{"dataType":"ENUM","name":"删除","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Type","name":"变更类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"白名单变更","eventType":"INFO_EVENT_TYPE","identifier":"UpdateWhiteList","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"新增","value":0},{"dataType":"ENUM","name":"删除","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Type","name":"变更类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PlateNumber","name":"车牌号","paraOrder":1}],"required":true}]}'), -('1692347065', '0', '4194888609', 'Counter', '无人货柜', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"DoorOpen","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DeviceID","name":"设备ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"失败","value":0},{"dataType":"ENUM","name":"成功","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"DoorOpenResult","name":"开门结果","paraOrder":0}],"required":false,"serviceName":"开门"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SensorPeelAllSensor","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DeviceID","name":"设备ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"失败","value":0},{"dataType":"ENUM","name":"成功","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"PeelAllResult","name":"全部去皮结果","paraOrder":0}],"required":false,"serviceName":"全部传感器去皮"},{"callType":"ASYNC","custom":false,"description":"","identifier":"PeelSensor","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DeviceID","name":"设备ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"失败","value":0},{"dataType":"ENUM","name":"成功","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"PeelResult","name":"去皮结果","paraOrder":0}],"required":false,"serviceName":"传感器去皮"},{"callType":"ASYNC","custom":false,"description":"","identifier":"CalibrateSensor","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DeviceID","name":"设备ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":4},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SensorID","name":"传感器ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"g","unitName":"克"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"Weight","name":"重量","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"失败","value":0},{"dataType":"ENUM","name":"成功","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"CalibrationResult","name":"校准结果","paraOrder":0}],"required":false,"serviceName":"传感器校准"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"开门通知","eventType":"INFO_EVENT_TYPE","identifier":"DoorOpenedNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceID","name":"设备ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"ReportTime","name":"上报时间","paraOrder":1}],"required":false},{"custom":false,"description":"","eventName":"关门通知","eventType":"INFO_EVENT_TYPE","identifier":"DoorClosedNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceID","name":"设备ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"ReportTime","name":"上报时间","paraOrder":1}],"required":false},{"custom":false,"description":"","eventName":"关门时拿取物品通知","eventType":"INFO_EVENT_TYPE","identifier":"FinalItemNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Name","name":"名称","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Code","name":"编号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Count","name":"数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"999999","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"Price","name":"价格","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Property","name":"规格","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ImageURL","name":"图片链接","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"CreateTime","name":"创建时间","paraOrder":6},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"OrderID","name":"订单ID","paraOrder":7}],"required":false}]}'), -('1692347065', '0', '419695629', 'ConversionGateway', '通用网关', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '4207739836', 'WaterAndFertilizerMachine', '水肥一体机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"14","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"绿立方","identifier":"TargetPH","name":"目标PH","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000","min":"0","precise":7,"step":"0.01","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"DOUBLE","description":"绿立方","identifier":"TargetEC","name":"目标EC","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '4219937310', 'MicrowaveOven', '微波炉', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSaveSwitch","name":"省电开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不翻面","value":0},{"dataType":"BOOL","name":"翻面","value":1}],"dataType":"BOOL","description":"","identifier":"TurnSwitch","name":"翻面开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"烹饪","value":1},{"dataType":"ENUM","name":"预约","value":2},{"dataType":"ENUM","name":"保温","value":3},{"dataType":"ENUM","name":"预热","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2500","min":"0","precise":0,"step":"1","unit":"g","unitName":"克"},"dataType":"INT","description":"","identifier":"Weight","name":"食材重量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"120","min":"0","precise":1,"step":"1","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"230","min":"70","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"PowerMode","name":"功率模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地食谱","value":1},{"dataType":"ENUM","name":"云食谱","value":2}],"dataType":"ENUM","description":"","identifier":"RecipeInfo","name":"食谱信息","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"120","min":"0","precise":1,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentTime","name":"预约时间","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"VoiceSwitch","name":"语音开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"WorkStep","name":"工作步骤","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"启动","value":0},{"dataType":"ENUM","name":"暂停","value":1},{"dataType":"ENUM","name":"取消","value":2}],"dataType":"ENUM","description":"","identifier":"OperationControl","name":"运行控制","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"解冻","value":0},{"dataType":"ENUM","name":"预热","value":1},{"dataType":"ENUM","name":"微波","value":2},{"dataType":"ENUM","name":"快速","value":3}],"dataType":"ENUM","description":"","identifier":"ModeControl","name":"模式控制","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低","value":0},{"dataType":"ENUM","name":"中低","value":1},{"dataType":"ENUM","name":"中","value":2},{"dataType":"ENUM","name":"中高","value":3},{"dataType":"ENUM","name":"高","value":4}],"dataType":"ENUM","description":"","identifier":"FireLevel","name":"选择火力","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障类别","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '4220079838', 'TiltSensor', '倾角传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '4225532562', 'TextileIndustry', '纺织业', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '4228566100', 'Bathtub', '浴缸', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"FillerOn","name":"开启注水","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"FillerOff","name":"停止注水","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"DrainOn","name":"开启排水","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"DrainOff","name":"关闭排水","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"WaterLevel","name":"设置水位","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '4254924630', 'ElectricityMeter', '电表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","identifier":"HoodPower","name":"烟机电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","identifier":"HoodLight","name":"烟机照明开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"抵挡","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3}],"dataType":"ENUM","identifier":"HoodSpeed","name":"烟机风量档位","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"待机中","value":0},{"dataType":"BOOL","name":"工作中","value":1}],"dataType":"BOOL","identifier":"HoodWorState","name":"烟机工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","identifier":"SteamerPower","name":"蒸箱开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"模式1","value":1},{"dataType":"ENUM","name":"模式2","value":2},{"dataType":"ENUM","name":"模式3","value":3},{"dataType":"ENUM","name":"模式4","value":4},{"dataType":"ENUM","name":"模式5","value":5}],"dataType":"ENUM","identifier":"SteamerMode","name":"蒸箱模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","identifier":"SteameTemperatureSet","name":"蒸箱制作温度设置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"待机中","value":0},{"dataType":"BOOL","name":"工作中","value":1}],"dataType":"BOOL","identifier":"SteamerState","name":"蒸箱工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","identifier":"SysVoice","name":"语音功能开启关闭设置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '4271718091', 'NVR', '网络硬盘录像机', '{"services":[{"callType":"ASYNC","custom":false,"description":"把本地时间同步到NVR上","identifier":"SyncTime","inputParams":[{"custom":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"LocalTime","name":"本地时间","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"失败","value":0},{"dataType":"BOOL","name":"成功","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"SyncTimeStatus","name":"状态","paraOrder":0}],"required":false,"serviceName":"同步时间"},{"callType":"ASYNC","custom":false,"description":"磁盘格式化","identifier":"DiskFormat","inputParams":[],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"格式化失败","value":0},{"dataType":"ENUM","name":"格式化成功","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"DiskFormatStatus","name":"磁盘格式化状态","paraOrder":0}],"required":true,"serviceName":"磁盘格式化"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","description":"设备生产商的设备编号","identifier":"DeviceID","name":"设备ID","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","description":"设备制造商的设备型号","identifier":"DeviceType","name":"设备型号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"256","min":"2","step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"NVR通道数目","identifier":"ChannelNumber","name":"通道数目","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","description":"设备别名","identifier":"DeviceName","name":"设备名称","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE"},"dataType":"DATE","description":"设备时间","identifier":"DeviceTime","name":"设备时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"UTC","value":0},{"dataType":"ENUM","name":"UTCplus1","value":1},{"dataType":"ENUM","name":"UTCplus2","value":2},{"dataType":"ENUM","name":"UTCplus3","value":3},{"dataType":"ENUM","name":"UTCplus4","value":4},{"dataType":"ENUM","name":"UTCplus5","value":5},{"dataType":"ENUM","name":"UTCplus6","value":6},{"dataType":"ENUM","name":"UTCplus7","value":7},{"dataType":"ENUM","name":"UTCplus8","value":8},{"dataType":"ENUM","name":"UTCplus9","value":9},{"dataType":"ENUM","name":"UTCplus10","value":10},{"dataType":"ENUM","name":"UTCplus11","value":11},{"dataType":"ENUM","name":"东西十二区","value":12},{"dataType":"ENUM","name":"UTCminus11","value":13},{"dataType":"ENUM","name":"UTCminus10","value":14},{"dataType":"ENUM","name":"UTCminus9","value":15},{"dataType":"ENUM","name":"UTCminus8","value":16},{"dataType":"ENUM","name":"UTCminus7","value":17},{"dataType":"ENUM","name":"UTCminus6","value":18},{"dataType":"ENUM","name":"UTCminus5","value":19},{"dataType":"ENUM","name":"UTCminus4","value":20},{"dataType":"ENUM","name":"UTCminus3","value":21},{"dataType":"ENUM","name":"UTCminus2","value":22},{"dataType":"ENUM","name":"UTCminus1","value":23}],"dataType":"ENUM","identifier":"DeviceTimeZone","name":"设备时区","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"50Hz","value":0},{"dataType":"ENUM","name":"60Hz","value":1}],"dataType":"ENUM","description":"电源频率设置","identifier":"PowerFrequency","name":"电源频率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"10000","min":"0","step":"0.01","unit":"GB","unitName":"吉字节"},"dataType":"FLOAT","description":"NVR磁盘容量","identifier":"DiskCapacity","name":"磁盘容量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"异常","value":1},{"dataType":"ENUM","name":"无硬盘","value":2}],"dataType":"ENUM","description":"NVR磁盘状态","identifier":"DiskState","name":"磁盘状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"磁盘使用率","identifier":"DiskUtilizationRate","name":"磁盘使用百分比","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"产品名称","childSpecsDTO":{"dataType":"TEXT","length":128},"dataSpecs":{"$ref":"$.properties[10].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"ProductKey","name":"产品名称"},{"childDataType":"TEXT","childName":"设备名称","childSpecsDTO":{"dataType":"TEXT","length":1024},"dataSpecs":{"$ref":"$.properties[10].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"DeviceName","name":"设备名称"},{"childDataType":"INT","childName":"通道号","childSpecsDTO":{"dataType":"INT","max":"512","min":"1","step":"1","unit":"","unitName":"无"},"dataSpecs":{"$ref":"$.properties[10].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"ChannelNumber","name":"通道号"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","description":"NVR通道与IPC三元组的映射关系表","identifier":"ChannelList","name":"通道映射关系","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":256},"dataType":"TEXT","description":"制造商名称","identifier":"ManufacturerName","name":"制造商名称","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '431398844', 'GarbageOverflowingDetection', '垃圾满溢检测', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '445258799', 'BathHeater', '浴霸', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"照明开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"45","min":"16","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"低档","value":1},{"dataType":"ENUM","name":"中档","value":2},{"dataType":"ENUM","name":"高档","value":3}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"档位设置","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"风暖","value":1},{"dataType":"ENUM","name":"换气","value":2},{"dataType":"ENUM","name":"净化","value":3},{"dataType":"ENUM","name":"干燥","value":4}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '445865205', 'Networking', '网络设备', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '449158568', 'RemoteTerminalUnit', '远程监测终端', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '462274112', 'MicrowaveDetector', '微波人体探测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"INT","childName":"海拔","childSpecsDTO":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '501974764', 'Wristband', '手环', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '513453802', 'campus', '智能园区', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '516797874', 'PunchingMachine', '冲压机', '{"services":[{"callType":"ASYNC","custom":false,"description":"触发设备的工艺参数报警","identifier":"SCraftAlarm","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"E_CraftAlarm","name":"参数报警标识","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"工艺参数报警"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"-1000000","precise":7,"step":"0.1","unit":"kPa","unitName":"千帕"},"dataType":"FLOAT","description":"","identifier":"E_Craft_PT_Punch","name":"冲压压力","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"-1000000","precise":7,"step":"0.1","unit":"cm","unitName":"厘米"},"dataType":"FLOAT","description":"","identifier":"E_Craft_Stroke_Punch","name":"冲压行程","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"-1000000","precise":7,"step":"0.1","unit":"r/s(rps)","unitName":"转每秒"},"dataType":"FLOAT","description":"","identifier":"E_Craft_Speed_Motor_Punch","name":"电机转速","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"-1000000","precise":7,"step":"0.1","unit":"cm","unitName":"厘米"},"dataType":"FLOAT","description":"","identifier":"E_Craft_LT_Oil_Punch","name":"润滑油液位","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"-100000","precise":7,"step":"0.1","unit":"kPa","unitName":"千帕"},"dataType":"FLOAT","description":"","identifier":"E_Craft_PT_Oil_Punch","name":"润滑油压力","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","description":"","identifier":"E_Craft_C1_Oiling_Punch","name":"齿轮分配阀润滑次数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","description":"","identifier":"E_Craft_C2_Oiling_Punch","name":"顶置分配阀压润滑次数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","description":"","identifier":"E_Craft_C3_Oiling_Punch","name":"滑块分配阀压润滑次数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"1000000","min":"0","precise":7,"step":"0.1","unit":"","unitName":"无"},"dataType":"FLOAT","description":"设备理想生产周期","identifier":"E_Craft_Ideal_Cycle_Time","name":"设备理想生产周期","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备合格率","identifier":"E_Q","name":"设备合格率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备性能稼动率","identifier":"E_P","name":"设备性能稼动率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备时间稼动率","identifier":"E_A","name":"设备时间稼动率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"设备最新的OEE","identifier":"E_OEE","name":"设备综合效率","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备停机原因标识符,用不同的数字表示不同的因素,停机因素需要提前定义好,如下示例:\n0 -- 正常运行\n1 -- 缺料\n2 -- 无生产任务\n3 -- 休息","identifier":"E_Stop_Reason","name":"停机原因","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"min","unitName":"分"},"dataType":"INT","description":"设备运行总时间","identifier":"E_TotalRunTime","name":"设备运行总时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备次品的累加器","identifier":"E_Defect_UP","name":"设备不良品","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"设备产量的累加器","identifier":"E_OutPut_UP","name":"设备产量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"E_Status_UP == 0 初始状态(开机)\nE_Status_UP == 1 运行\nE_Status_UP == 2 停止\nE_Status_UP == 3 故障","identifier":"E_Status_UP","name":"设备运行状态","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '530272504', 'SmartFireHydrants', '智能消防栓', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '546366569', 'air_sensor', '环境检测盒子', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"mhumi","name":"湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32768","min":"-32768","precise":0,"step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"mtemp","name":"温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"","identifier":"PM25","name":"PM25","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"","identifier":"PM10","name":"PM10","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"","identifier":"PM1","name":"PM1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"INT","description":"","identifier":"voc","name":"挥发性气体","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"INT","description":"","identifier":"co","name":"一氧化碳","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"INT","description":"","identifier":"co2","name":"二氧化碳","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"INT","description":"","identifier":"ch4","name":"甲烷","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"mlux","name":"光照度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '575612436', 'ServoDriver', '伺服驱动器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","identifier":"Pnumber","name":"产品序列号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"2100000000","min":"0","step":"1","unit":"min","unitName":"分"},"dataType":"INT","identifier":"SRuntime","name":"运行时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","identifier":"ActIIT","name":"电机实际IIT","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"30000","min":"-30000","step":"1","unit":"A","unitName":"安培"},"dataType":"INT","identifier":"ActI","name":"电机实际电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"30000","min":"-30000","step":"1","unit":"r/min(rpm)","unitName":"转每分"},"dataType":"INT","identifier":"ActVel","name":"电机实际速度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"StatusWord","name":"状态字","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"ErrorCode","name":"错误字","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"210000000","min":"-210000000","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"ActPos","name":"实际位置","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","identifier":"DriverTemperature","name":"驱动器温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"32767","min":"0","step":"10","unit":"","unitName":"无"},"dataType":"INT","identifier":"ErrorCode_1","name":"错误字1","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '575864466', 'PeopleFlow', '客流量传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"customerData","name":"客流数据","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '593595853', 'gateway', '边缘网关', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":2,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"memory_usage","name":"内存使用率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"gateway_version","name":"网关版本","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":2,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"cpu_usage","name":"CPU使用率","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"system_info","name":"系统信息","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","precise":1,"step":"0.01","unit":"B","unitName":"字节"},"dataType":"DOUBLE","description":"","identifier":"memory_total","name":"内存总量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","precise":1,"step":"0.01","unit":"B","unitName":"字节"},"dataType":"DOUBLE","description":"","identifier":"memory_free","name":"内存剩余量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"128","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"cpu_core_number","name":"CPU内核数量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":2,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"disk_usage","name":"磁盘使用率","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '615500285', 'FingerPrintDoor', '指纹门禁', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","description":"","identifier":"CardId","name":"指纹卡号","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"Switch_control","name":"开关控制","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"门禁状态告警","eventType":"INFO_EVENT_TYPE","identifier":"Status_alarm","outputData":[],"required":true},{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '623070924', 'PlasticProductsIndustry', '塑料制品业', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '635460059', 'IceCreamMaker', '冰激凌机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"制冷","value":0},{"dataType":"ENUM","name":"保鲜","value":1},{"dataType":"ENUM","name":"清洗","value":2},{"dataType":"ENUM","name":"解冻","value":3},{"dataType":"ENUM","name":"杀菌","value":4}],"dataType":"ENUM","identifier":"WorkMode","name":"工作模式","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","step":"1","unit":"V","unitName":"伏特"},"dataType":"INT","identifier":"Voltage","name":"实际电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"1000","min":"0","step":"1","unit":"A","unitName":"安培"},"dataType":"INT","identifier":"Electricity","name":"实际电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200","min":"-100","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","identifier":"FreezeCylindersTemperature","name":"冷冻缸温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","identifier":"FormingRate","name":"成型比","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000","min":"0","step":"1","unit":"r/min(rpm)","unitName":"转每分"},"dataType":"INT","identifier":"RotateSpeed","name":"实际转速","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200","min":"-100","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","identifier":"EnvironmentTemperature","name":"环境温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200","min":"-100","step":"1","unit":"℃","unitName":"摄氏度"},"dataType":"INT","identifier":"KeepFreshTemperature","name":"保鲜温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"HitFeedCupCounts","name":"打料杯数","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"eventName":"电流过载","eventType":"ALERT_EVENT_TYPE","identifier":"CurrentOverload","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"电流过载","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"CurrentOverload","name":"电流过载","paraOrder":0}],"required":false},{"custom":false,"eventName":"电压过高告警","eventType":"ALERT_EVENT_TYPE","identifier":"HighVoltageAlarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"电压过高告警","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"电压过高告警","paraOrder":0}],"required":false},{"custom":false,"eventName":"电压过低告警","eventType":"ALERT_EVENT_TYPE","identifier":"LowVoltageAlarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"电压过低告警","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"电压过低告警","paraOrder":0}],"required":false},{"custom":false,"eventName":"制冷不良","eventType":"ALERT_EVENT_TYPE","identifier":"RefrigeratingExceptional","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"制冷不良","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"制冷不良","paraOrder":0}],"required":false},{"custom":false,"eventName":"转速传感器异常","eventType":"ALERT_EVENT_TYPE","identifier":"RotateSpeedSensorExceptional","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"转速传感器异常","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"转速传感器异常","paraOrder":0}],"required":false},{"custom":false,"eventName":"皮带打滑","eventType":"ALERT_EVENT_TYPE","identifier":"BeltSlip","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"皮带打滑","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"皮带打滑","paraOrder":0}],"required":false},{"custom":false,"eventName":"低温报警","eventType":"ALERT_EVENT_TYPE","identifier":"LowTemperatureWarning","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"低温报警","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"低温报警","paraOrder":0}],"required":false},{"custom":false,"eventName":"缺料报警","eventType":"ALERT_EVENT_TYPE","identifier":"StarvingWarning","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"缺料报警","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"缺料报警","paraOrder":0}],"required":false},{"custom":false,"eventName":"通讯故障","eventType":"ERROR_EVENT_TYPE","identifier":"CommunicationFault","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"通讯故障","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"通讯故障","paraOrder":0}],"required":false},{"custom":false,"eventName":"环境温度过高告警","eventType":"ALERT_EVENT_TYPE","identifier":"HighEnvironmentTempWarning","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"环境温度过高告警","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"环境温度过高告警","paraOrder":0}],"required":false},{"custom":false,"eventName":"进气温度传感器异常","eventType":"ALERT_EVENT_TYPE","identifier":"EnterAirTempSensorExceptional","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"进气温度传感器异常","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"进气温度传感器异常","paraOrder":0}],"required":false},{"custom":false,"eventName":"保鲜温度异常","eventType":"ALERT_EVENT_TYPE","identifier":"KeepFreshTempExceptional","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"保鲜温度异常","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"保鲜温度异常","paraOrder":0}],"required":false},{"custom":false,"eventName":"冷冻缸温度异常","eventType":"ALERT_EVENT_TYPE","identifier":"FreezeCylindersTempExceptional","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"冷冻缸温度异常","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"冷冻缸温度异常","paraOrder":0}],"required":false},{"custom":false,"eventName":"环境温度传感器异常","eventType":"ALERT_EVENT_TYPE","identifier":"TemperatureSensorExceptional","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"环境温度传感器异常","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"Error","name":"环境温度传感器异常","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '650386231', 'Grab the doll machine', '抓娃娃机', '{"services":[{"callType":"SYNC","custom":false,"description":"批量库存查询","identifier":"listInventory","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"TEXT","customFlag":true,"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"inventoryDetail","name":"库存详情","paraOrder":0}],"required":true,"serviceName":"批量库存查询"},{"callType":"SYNC","custom":false,"description":"单个库存查询","identifier":"getInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"c","name":"库存","paraOrder":0}],"required":true,"serviceName":"单个库存查询"},{"callType":"ASYNC","custom":false,"description":"出货","identifier":"deliverCommodity","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"quantity","name":"下单的数量","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"orderNo","name":"订单号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"出货"},{"callType":"ASYNC","custom":false,"description":"增加库存","identifier":"addInventory","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"x","name":"横坐标","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"y","name":"纵坐标","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"1","precise":0,"step":"1","unit":"","unitName":""},"dataType":"INT","direction":"PARAM_INPUT","identifier":"c","name":"库存","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":1}],"required":true,"serviceName":"增加库存"}],"properties":[],"events":[{"custom":false,"description":"订单出货事件","eventName":"订单出货事件","eventType":"INFO_EVENT_TYPE","identifier":"deliverCommodityEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"orderNo","name":"订单号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"deliverTime","name":"出货时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":1},{"dataType":"ENUM","name":"失败","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"result","name":"结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"code","name":"错误说明","paraOrder":3}],"required":false}]}'), -('1692347065', '0', '653061381', 'ImageCaptureDevice', '图像采集设备', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '656257986', 'CuttingMachine', '裁床', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"StopJob","inputParams":[],"outputParams":[],"required":true,"serviceName":"停止任务"},{"callType":"ASYNC","custom":false,"description":"","identifier":"LoadFile","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AbsoluteDirectoryAndFileName","name":"文件目录和文件名","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"下载文件"},{"callType":"ASYNC","custom":false,"description":"","identifier":"ReadMaxCutSpeed","inputParams":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"m/s","unitName":"米每秒"},"dataType":"DOUBLE","direction":"PARAM_INPUT","identifier":"MaxCutSpeed","name":"最大速度","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"读取最大速度"},{"callType":"ASYNC","custom":false,"description":"","identifier":"ReadMachineState","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"standby","value":0},{"dataType":"ENUM","name":"locked","value":1},{"dataType":"ENUM","name":"active","value":2},{"dataType":"ENUM","name":"jogg","value":3},{"dataType":"ENUM","name":"pause","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"MachineState","name":"机器状态","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"读取机器状态"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"机器状态变更事件","eventType":"INFO_EVENT_TYPE","identifier":"MachineStateChangedEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"Standby","value":0},{"dataType":"ENUM","name":"Locked","value":1},{"dataType":"ENUM","name":"Active","value":2},{"dataType":"ENUM","name":"Jogg","value":3},{"dataType":"ENUM","name":"Pause","value":4}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"MachineState","name":"机器状态","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '656512848', 'CarbonDioxideGeneratingDevice', '二氧化碳发生装置', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '658805263', 'FaceServer', '人脸门禁', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":16},"dataType":"TEXT","description":"","identifier":"Facetype","name":"人脸类型","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":16},"dataType":"TEXT","description":"","identifier":"FaceID","name":"人脸ID","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","description":"","identifier":"Permission","name":"鉴权信息","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","description":"","identifier":"Pic_storage","name":"下发底库信息","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '664063510', 'MultiParkingCamera', '多功能停车摄像头', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"QueryRecordTimeList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"QuerySize","name":"查询数量","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"所有类型","value":99},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Type","name":"录像类型","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"INT","childName":"开始时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataSpecs":{"$ref":"$.services[0].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"BeginTime","name":"时间列表"},{"childDataType":"INT","childName":"结束时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataSpecs":{"$ref":"$.services[0].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"时间列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"childName":"录像类型","dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"dataType":"STRUCT","identifier":"Type","name":"时间列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"TimeList","name":"时间列表","paraOrder":0}],"required":true,"serviceName":"查询录像时间列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopPushStreaming","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"辅码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"码流类型","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"停止直播"},{"callType":"ASYNC","custom":false,"description":"","identifier":"TriggerPicCapture","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UPloadUrl","name":"上传地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PicID","name":"图片ID","paraOrder":0}],"required":true,"serviceName":"触发设备抓图"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVodByTime","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"″","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":6}],"outputParams":[],"required":true,"serviceName":"开始录像按时间观看"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVod","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FileName","name":"录像名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":512},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":5}],"outputParams":[],"required":true,"serviceName":"开始录像观看"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Reboot","inputParams":[],"outputParams":[],"required":true,"serviceName":"重启"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryRecordList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"所有类型","value":99},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Type","name":"录像类型","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"QuerySize","name":"查询数量","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"录像名","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[6].outputParams[0].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"FileName","name":"录像列表"},{"childDataType":"INT","childName":"开始时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[6].outputParams[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"BeginTime","name":"录像列表"},{"childDataType":"INT","childName":"结束时间","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataSpecs":{"$ref":"$.services[6].outputParams[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"EndTime","name":"录像列表"},{"childDataType":"TEXT","childName":"文件大小","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.services[6].outputParams[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"Size","name":"录像列表"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"childName":"录像类型","dataSpecsList":[{"dataType":"ENUM","name":"计划录像","value":0},{"dataType":"ENUM","name":"报警录像","value":1},{"dataType":"ENUM","name":"主动录像","value":2}],"dataType":"STRUCT","identifier":"Type","name":"录像列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"RecordList","name":"录像列表","paraOrder":0}],"required":true,"serviceName":"查询录像列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartPushStreaming","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"辅码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"码流类型","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"60","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PreTime","name":"提前推流时间","paraOrder":5}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"设备不支持","value":1},{"dataType":"ENUM","name":"设备资源不足","value":2},{"dataType":"ENUM","name":"推流连接失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"推流结果","paraOrder":0}],"required":true,"serviceName":"开始直播"},{"callType":"ASYNC","custom":false,"description":"","identifier":"AddVehicleIOfPermission","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"VehiclePermissionUrl","name":"车辆权限Url地址","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"通行车辆权限下发"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetVehiclePermission","inputParams":[],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"VehiclePermissionUrl","name":"车辆权限信息Url","paraOrder":0}],"required":true,"serviceName":"查询车辆权限信息"},{"callType":"SYNC","custom":false,"description":"","identifier":"GetPermissionDownloadProgress","inputParams":[],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"完成","value":0},{"dataType":"ENUM","name":"进行中","value":1},{"dataType":"ENUM","name":"下载权限文件失败","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"DownloadStatus","name":"车辆权限下发状态","paraOrder":0}],"required":true,"serviceName":"查询车辆权限下发进度"},{"callType":"ASYNC","custom":false,"description":"","identifier":"SendOssStsToken","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"Credentials","name":"加密的访问凭证","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"BucketName","name":"OSSbucket名称","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EndPoint","name":"OSS的EndPoint名称","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ObjectName","name":"OSS存储空间名称","paraOrder":3}],"outputParams":[],"required":true,"serviceName":"下发OssStsToken"},{"callType":"ASYNC","custom":false,"description":"下发LED数据","identifier":"AddLedData","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"LedData","name":"LED数据","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"下发LED数据"},{"callType":"SYNC","custom":false,"description":"提示语音","identifier":"NoticeBroadcast","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"VoiceContent","name":"语音播报内容","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"10","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PlaySpeed","name":"语音播报速度","paraOrder":1}],"outputParams":[],"required":false,"serviceName":"提示语音"},{"callType":"SYNC","custom":false,"description":"提示显示","identifier":"NoticeDisplay","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DisplayContent","name":"显示内容","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"RowNumber","name":"屏幕行号","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"10","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"MovingSpeed","name":"文字移动速度","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"3600","min":"1","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"DisplayTime","name":"显示时长","paraOrder":3},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"禁止","value":0},{"dataType":"ENUM","name":"从右到左","value":1},{"dataType":"ENUM","name":"从左到右","value":2},{"dataType":"ENUM","name":"从下到上","value":3},{"dataType":"ENUM","name":"从上到下","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"MovingType","name":"文字移动方式","paraOrder":4}],"outputParams":[],"required":false,"serviceName":"提示显示"},{"callType":"ASYNC","custom":false,"description":"默认显示","identifier":"DefaultDisplay","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"DisplayContent","name":"显示内容","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"RowNumber","name":"屏幕行号","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"空闲","value":0},{"dataType":"ENUM","name":"普通权限车辆_白名单车辆过车","value":1},{"dataType":"ENUM","name":"黑名单车辆过车","value":2},{"dataType":"ENUM","name":"临时车辆过车","value":3},{"dataType":"ENUM","name":"无牌车辆过车","value":4}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"DefaultSituation","name":"默认场景","paraOrder":2}],"outputParams":[],"required":false,"serviceName":"默认显示"},{"callType":"SYNC","custom":false,"description":"显示二维码","identifier":"QrCodeDisplay","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"QrCode","name":"二维码","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"显示二维码"},{"callType":"SYNC","custom":false,"description":"触发抓拍","identifier":"TriggerRecognition","inputParams":[],"outputParams":[],"required":true,"serviceName":"触发抓拍"},{"callType":"SYNC","custom":false,"description":"道闸操作","identifier":"OperatGate","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闸","value":0},{"dataType":"ENUM","name":"开闸","value":1},{"dataType":"ENUM","name":"长开","value":2}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"OperatType","name":"操作类型","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"道闸操作"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"SubStreamVideoQuality","name":"辅码流视频质量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常状态","value":0},{"dataType":"ENUM","name":"翻转状态","value":1}],"dataType":"ENUM","description":"","identifier":"ImageFlipState","name":"画面翻转状态","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"关闭","value":0},{"dataType":"ENUM","name":"最低档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"MotionDetectSensitivity","name":"移动侦测灵敏度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"StreamVideoQuality","name":"主码流视频质量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低频","value":0},{"dataType":"ENUM","name":"中频","value":1},{"dataType":"ENUM","name":"高频","value":2}],"dataType":"ENUM","description":"","identifier":"AlarmFrequencyLevel","name":"报警频率","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"AlarmSwitch","name":"报警开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"-100","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"数字绝对值表示屏幕支持的行数\n负号表示支持
换行符,调用费显屏显示服务时指定行数为1,内容为带
的字符串","identifier":"LedRowNumber","name":"屏幕行数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"分离模式","value":0},{"dataType":"ENUM","name":"混合模式","value":1}],"dataType":"ENUM","description":"分离模式:支持语音、文字提示单独下发,屏幕支持单行刷新\n混合模式:仅支持语音、文字提示混合下发,屏幕不支持单行刷新","identifier":"LedNoticeMode","name":"屏幕通知模式","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"屏幕音量大小","identifier":"Volume","name":"屏幕音量大小","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"屏幕亮度","identifier":"Brightness","name":"屏幕亮度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"不支持","value":0},{"dataType":"BOOL","name":"支持","value":1}],"dataType":"BOOL","description":"是否支持二维码","identifier":"IsSurportQrCode","name":"是否支持二维码","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"已打开","value":0},{"dataType":"ENUM","name":"已关闭","value":1},{"dataType":"ENUM","name":"开闸中","value":2},{"dataType":"ENUM","name":"关闸中","value":3}],"dataType":"ENUM","description":"道闸设备状态","identifier":"GateState","name":"道闸设备状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无车","value":0},{"dataType":"ENUM","name":"有车","value":1},{"dataType":"ENUM","name":"不支持","value":2}],"dataType":"ENUM","description":"车辆等待状态","identifier":"VehicleState","name":"车辆等待状态","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"侦测报警","eventType":"ALERT_EVENT_TYPE","identifier":"AlarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"哭声侦测","value":11},{"dataType":"ENUM","name":"笑声侦测","value":12},{"dataType":"ENUM","name":"火警侦测","value":13},{"dataType":"ENUM","name":"人群聚集","value":14},{"dataType":"ENUM","name":"人流统计","value":15},{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"宠物侦测","value":4},{"dataType":"ENUM","name":"越界侦测","value":5},{"dataType":"ENUM","name":"区域入侵侦测","value":6},{"dataType":"ENUM","name":"跌倒侦测","value":7},{"dataType":"ENUM","name":"人脸检测","value":8},{"dataType":"ENUM","name":"笑脸检测","value":9},{"dataType":"ENUM","name":"异响侦测","value":10}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"告警类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AlarmPicID","name":"报警抓图ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Data","name":"告警内容","paraOrder":2}],"required":true},{"custom":false,"description":"","eventName":"智能告警","eventType":"ALERT_EVENT_TYPE","identifier":"IntelligentAlarm","outputData":[{"custom":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"客流统计","value":14001},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"口罩识别","value":11017}],"childName":"告警类型","dataSpecsList":[{"dataType":"ENUM","name":"火灾检测","value":13001},{"dataType":"ENUM","name":"物品移动","value":11009},{"dataType":"ENUM","name":"快速移动","value":11008},{"dataType":"ENUM","name":"摄像头移动检测","value":10011},{"dataType":"ENUM","name":"区域入侵","value":11001},{"dataType":"ENUM","name":"摄像头遮挡检测","value":10010},{"dataType":"ENUM","name":"起身检测","value":11003},{"dataType":"ENUM","name":"消防通道占用","value":13002},{"dataType":"ENUM","name":"重点区域占用","value":10012},{"dataType":"ENUM","name":"攀高检测","value":11002},{"dataType":"ENUM","name":"吸烟检测","value":13003},{"dataType":"ENUM","name":"人员逗留","value":11005},{"dataType":"ENUM","name":"离岗检测","value":11004},{"dataType":"ENUM","name":"逆行检测","value":11007},{"dataType":"ENUM","name":"拌线入侵","value":11006},{"dataType":"ENUM","name":"客流统计","value":14001},{"dataType":"ENUM","name":"物品遗留","value":11010},{"dataType":"ENUM","name":"人脸检测","value":10008},{"dataType":"ENUM","name":"移动侦测","value":1},{"dataType":"ENUM","name":"人脸识别","value":10007},{"dataType":"ENUM","name":"声音侦测","value":2},{"dataType":"ENUM","name":"人形侦测","value":3},{"dataType":"ENUM","name":"人车检测","value":10009},{"dataType":"ENUM","name":"人群聚集","value":11012},{"dataType":"ENUM","name":"垃圾暴露","value":12002},{"dataType":"ENUM","name":"人群密度估计","value":11011},{"dataType":"ENUM","name":"非机动车乱停","value":12001},{"dataType":"ENUM","name":"占道经营","value":10002},{"dataType":"ENUM","name":"剧烈运动","value":11014},{"dataType":"ENUM","name":"违章停车","value":10001},{"dataType":"ENUM","name":"人群发散","value":11013},{"dataType":"ENUM","name":"沿街晾挂","value":12003},{"dataType":"ENUM","name":"行人识别","value":10004},{"dataType":"ENUM","name":"摩托车识别","value":10003},{"dataType":"ENUM","name":"跌倒检测","value":11015},{"dataType":"ENUM","name":"店外经营","value":10006},{"dataType":"ENUM","name":"宠物检测","value":11018},{"dataType":"ENUM","name":"车辆识别","value":10005},{"dataType":"ENUM","name":"口罩识别","value":11017}],"dataType":"STRUCT","identifier":"AlarmType","name":"事件列表"},{"childDataType":"TEXT","childName":"图片ID","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicID","name":"事件列表"},{"childDataType":"INT","childName":"图片大小","childSpecsDTO":{"dataType":"INT","max":"2147483647","min":"1","precise":0,"step":"1","unit":"B","unitName":"字节"},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"AlarmPicSize","name":"事件列表"},{"childDataType":"TEXT","childName":"告警内容","childSpecsDTO":{"dataType":"TEXT","length":2048},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"Data","name":"事件列表"},{"childDataType":"DATE","childName":"告警时间","childSpecsDTO":{"dataType":"DATE","length":64},"dataSpecs":{"$ref":"$.events[1].outputData[0].dataSpecs.dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"EventTime","name":"事件列表"}],"dataType":"ARRAY","size":128},"dataType":"ARRAY","direction":"PARAM_OUTPUT","identifier":"EventList","name":"事件列表","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0},{"dataType":"ENUM","name":"网络异常","value":1},{"dataType":"ENUM","name":"存储介质异常","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"StsToken请求上报","eventType":"INFO_EVENT_TYPE","identifier":"OssStsTokenRequest","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"图片文件上传","value":0},{"dataType":"ENUM","name":"文本文件上传","value":1},{"dataType":"ENUM","name":"其他类型文件上传","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"RequestType","name":"请求上传文件类型","paraOrder":0}],"required":true},{"custom":false,"description":"异常抬杆","eventName":"异常抬杆","eventType":"ALERT_EVENT_TYPE","identifier":"AbnormalOpenGate","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"遥控器控制抬杆","value":0},{"dataType":"ENUM","name":"设备自身按键抬杆","value":1},{"dataType":"ENUM","name":"其他方式","value":99}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"OpenType","name":"抬杆方式","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ImagePath","name":"抓拍图片地址","paraOrder":1}],"required":false}]}'), -('1692347065', '0', '686726274', 'TempHumiUnit', '温湿度采集单元', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"80","min":"-40","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"CurrentHumidity","name":"当前湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"5","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '693371308', 'CircuitBreaker', '断路器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"30","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"CircuitBreakerAddress","name":"断路器地址","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"LineName","name":"线路名称","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"分闸","value":0},{"dataType":"BOOL","name":"合闸","value":1}],"dataType":"BOOL","description":"","identifier":"CircuitBreakerReclosingState","name":"断路器分合闸状态","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"能","value":0},{"dataType":"BOOL","name":"不能","value":1}],"dataType":"BOOL","description":"","identifier":"CircuitBreakerRemoteControlEnable","name":"断路器远程控制使能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"220伏断路器","value":0},{"dataType":"ENUM","name":"380伏断路器","value":1}],"dataType":"ENUM","description":"","identifier":"CircuitBreakerType","name":"断路器类型","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"4294967","min":"0","precise":0,"step":"1","unit":"kW·h","unitName":"千瓦·时"},"dataType":"INT","description":"","identifier":"LineElectricityQuantity","name":"线路用电电量","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"W","unitName":"瓦特"},"dataType":"INT","description":"","identifier":"LinePowerThreshold","name":"线路用电功率阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"655.35","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"LineCurrentThreshold","name":"线路用电电流阈值","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"655.35","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"LineCurrent","name":"线路电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"6553.5","min":"0","precise":7,"step":"0.01","unit":"mA","unitName":"毫安"},"dataType":"DOUBLE","description":"","identifier":"LineLeakage","name":"线路漏电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-40","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CircuitBreakerInternalTemperature","name":"断路器内部温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"600","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"LineVotage","name":"线路电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"65535","min":"0","precise":7,"step":"0.01","unit":"W","unitName":"瓦特"},"dataType":"DOUBLE","description":"","identifier":"LinePower","name":"线路功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-40","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"LineTemperature","name":"线路温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"LinePowerFactor","name":"线路功率因数","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '696971728', 'AdvertTerminal', '广告屏', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"}],"dataType":"STRUCT","identifier":"GeoLocation","name":"地理位置","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"eventName":"播放日志","eventType":"INFO_EVENT_TYPE","identifier":"PlayLogEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AdPlanID","name":"广告计划标识","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ChannelId","name":"渠道标识","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048,"unit":"","unitName":"无"},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"AdFileUrl","name":"广告文件链接","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"图片","value":0},{"dataType":"ENUM","name":"视频","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AdFileType","name":"广告文件类型","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"DATE","unit":"","unitName":"无"},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"StartTime","name":"开始播放时间","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"DATE","unit":"","unitName":"无"},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"EndTime","name":"结束播放时间","paraOrder":5}],"required":true}]}'), -('1692347065', '0', '710010625', 'SmokeDetector', '烟雾探测器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"未报警状态","value":0},{"dataType":"BOOL","name":"报警状态","value":1}],"dataType":"BOOL","description":"","identifier":"Alarm","name":"报警状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"CO2Value","name":"二氧化碳浓度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"500","min":"0","precise":7,"step":"0.1","unit":"dB","unitName":"分贝"},"dataType":"FLOAT","description":"","identifier":"SoundDecibelValue","name":"声音分贝值","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[3].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"BatteryLevel","name":"电池电量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"火警","value":1}],"dataType":"ENUM","description":"","identifier":"SmokeState","name":"烟感状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '710628546', 'MultifunctionElectricityMeter', '多功能电表', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"Ia","name":"A相电流","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"Ib","name":"B相电流","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"Ic","name":"C相电流","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"Ua","name":"A相电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"Ub","name":"B相电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"Uc","name":"C相电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"Uab","name":"AB线电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"Ubc","name":"BC线电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"Uca","name":"CA线电压","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"P","name":"总有功功率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"Pa","name":"A相有功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"Pb","name":"B相有功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"Pc","name":"C相有功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"Pdmd","name":"有功需量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"Q","name":"总无功功率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"KVA","unitName":"千伏安"},"dataType":"DOUBLE","description":"","identifier":"Qa","name":"A相无功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"KVA","unitName":"千伏安"},"dataType":"DOUBLE","description":"","identifier":"Qb","name":"B相无功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"KVA","unitName":"千伏安"},"dataType":"DOUBLE","description":"","identifier":"Qc","name":"C相无功功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"S","name":"总视在功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"Sa","name":"A相视在功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"Sb","name":"B相视在功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"-10000000000","precise":7,"step":"0.01","unit":"kW","unitName":"千瓦"},"dataType":"DOUBLE","description":"","identifier":"Sc","name":"C相视在功率","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1.00","min":"-1.00","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"COSa","name":"A相功率因数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1.00","min":"-1.00","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"COSb","name":"B相功率因数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1.00","min":"-1.00","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"COSc","name":"C相功率因数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1.00","min":"-1.00","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"COSQ","name":"总功率因数","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"Hz","unitName":"赫兹"},"dataType":"DOUBLE","description":"","identifier":"F","name":"频率","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999999999999","min":"-999999999999999","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","description":"","identifier":"EP","name":"总有功电能","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999999999999","min":"-999999999999999","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","description":"","identifier":"EP_1","name":"总有功尖电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000000000","min":"0","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","description":"","identifier":"EP_2","name":"总有功峰电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999999999999","min":"-999999999999999","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","description":"","identifier":"EP_3","name":"总有功平电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999999999999","min":"-999999999999999","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","description":"","identifier":"EP_4","name":"总有功谷电能","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"999999999999999","min":"-999999999999999","precise":7,"step":"0.01","unit":"kW·h","unitName":"千瓦·时(度)"},"dataType":"DOUBLE","description":"","identifier":"EQ","name":"总无功电能","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000","min":"-100","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"T_OUTa","name":"回路出线侧A相温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000","min":"-100","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"T_OUTb","name":"回路出线侧B相温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000","min":"-100","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"T_OUTc","name":"回路出线侧C相温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"IaTHD","name":"A相电流总谐波","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"IbTHD","name":"B相电流总谐波","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"IcTHD","name":"C相电流总谐波","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"UaTHD","name":"A相电压总谐波","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"UbTHD","name":"B相电压总谐波","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"UcTHD","name":"C相电压总谐波","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"异常","value":0},{"dataType":"BOOL","name":"正常","value":1}],"dataType":"BOOL","description":"","identifier":"M_STATUS","name":"表计通讯状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"断开","value":0},{"dataType":"BOOL","name":"闭合","value":1}],"dataType":"BOOL","description":"","identifier":"C_SWITCH","name":"主回路开关合闸状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1000000000","min":"0","step":"0.01","unit":"mA","unitName":"毫安"},"dataType":"DOUBLE","identifier":"RC","name":"剩余电流","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"表计通讯故障","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"通讯中断","value":0},{"dataType":"BOOL","name":"通讯正常","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"M_STATUS","name":"表计通讯状态","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '711304917', 'AlarmSwitch', '报警开关', '{"services":[],"properties":[],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"紧急触发报警","eventType":"INFO_EVENT_TYPE","identifier":"EmergencyTriggerAlarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"解除报警","value":0},{"dataType":"ENUM","name":"紧急报警","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"报警类型","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '718775237', 'sharing', '共享租赁服务', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '741262812', 'AutoDoor', '自动门', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"RemoteOpen","inputParams":[],"outputParams":[],"required":false,"serviceName":"远程开门"},{"callType":"ASYNC","custom":false,"description":"","identifier":"RemoteClose","inputParams":[],"outputParams":[],"required":false,"serviceName":"远程关门"},{"callType":"ASYNC","custom":false,"description":"","identifier":"RemoteFreeze","inputParams":[],"outputParams":[],"required":false,"serviceName":"远程冻结"},{"callType":"ASYNC","custom":false,"description":"","identifier":"RemoteUnfreeze","inputParams":[],"outputParams":[],"required":false,"serviceName":"远程解冻"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100000000","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"RunTimes","name":"运行次数","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"0-25kg","value":0},{"dataType":"ENUM","name":"25-50kg","value":1},{"dataType":"ENUM","name":"50-75kg","value":2},{"dataType":"ENUM","name":"75-100kg","value":3},{"dataType":"ENUM","name":"100-125kg","value":4},{"dataType":"ENUM","name":"125-150kg","value":5}],"dataType":"ENUM","identifier":"Payload","name":"负载重量","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"LockEnabled","name":"启用锁","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"AutoCloseEnabled","name":"启用自动关门","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"60","min":"0","step":"1","unit":"s","unitName":"秒"},"dataType":"INT","identifier":"OpenedStayTime","name":"开门端停留时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"DetectEanbled","name":"启用人体感应","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"9","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","identifier":"DetectDistance","name":"人体感应距离","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"就绪","value":0},{"dataType":"ENUM","name":"学习","value":1},{"dataType":"ENUM","name":"已关门","value":2},{"dataType":"ENUM","name":"已落锁","value":3},{"dataType":"ENUM","name":"已开门","value":4},{"dataType":"ENUM","name":"开门中","value":5},{"dataType":"ENUM","name":"关门中","value":6},{"dataType":"ENUM","name":"错误","value":7}],"dataType":"ENUM","identifier":"AutoDoorWorkState","name":"自动门工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"DoorOpenDirectionAdjustment","name":"开门方向调整","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"AntiPinchEnabled","name":"启用防夹","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"LinkageEnabled","name":"启用双门联动","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"ExtInterfaceEnabled","name":"启用外部接口","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","identifier":"CurrentDoorPosition","name":"当前门位置","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"DetectMoveEnabled","name":"启用检测位移开关门","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","identifier":"DetectResistEnabled","name":"启用检测遇阻","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100000000","min":"0","step":"0.01","unit":"h","unitName":"时"},"dataType":"DOUBLE","description":"累计运行时间","identifier":"Runtime","name":"运行时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"200","min":"-55","precise":7,"step":"0.1","unit":"℃","unitName":"摄氏度"},"dataType":"FLOAT","description":"电机工作温度","identifier":"Temperature","name":"温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"WiFi信号强度","identifier":"WiFiRSSI","name":"WiFi信号强度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"非正常状态告警","eventType":"INFO_EVENT_TYPE","identifier":"AbnormalBehaviorAlarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"学习错误","value":0},{"dataType":"ENUM","name":"开门遇阻错误","value":1},{"dataType":"ENUM","name":"关门遇阻错误","value":2},{"dataType":"ENUM","name":"开门错误","value":3},{"dataType":"ENUM","name":"关门错误","value":4},{"dataType":"ENUM","name":"减速超时","value":5},{"dataType":"ENUM","name":"霍尔错误","value":6},{"dataType":"ENUM","name":"位置错误","value":7},{"dataType":"ENUM","name":"双门通信错误","value":8},{"dataType":"ENUM","name":"电流过大","value":9},{"dataType":"ENUM","name":"温度过高","value":10},{"dataType":"ENUM","name":"制动错误","value":11},{"dataType":"ENUM","name":"锁错误","value":12}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"告警类型","paraOrder":0}],"required":false},{"custom":false,"description":"","eventName":"开门通知","eventType":"INFO_EVENT_TYPE","identifier":"DoorOpenedNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceID","name":"设备ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"ReportTime","name":"上报时间","paraOrder":1}],"required":false},{"custom":false,"description":"","eventName":"关门通知","eventType":"INFO_EVENT_TYPE","identifier":"DoorClosedNotification","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceID","name":"设备ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_OUTPUT","identifier":"ReportTime","name":"上报时间","paraOrder":1}],"required":false}]}'); -INSERT INTO "thing_model_template" ("created", "modified", "id", "category_key", "category_name", "thing_model_json") VALUES -('1692347065', '0', '749530163', 'PricingScale', '计价秤', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"ResetZero","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":20},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ZeroInstruction","name":"清零指令","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":20},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ZeroValue","name":"零点数值","paraOrder":0}],"required":false,"serviceName":"清零"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Peel","inputParams":[],"outputParams":[],"required":false,"serviceName":"去皮"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"商品","childSpecsDTO":{"dataType":"TEXT","length":20},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Item","name":"商品详情"},{"childDataType":"TEXT","childName":"净重","childSpecsDTO":{"dataType":"TEXT","length":20},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"NetWeight","name":"商品详情"},{"childDataType":"TEXT","childName":"皮重","childSpecsDTO":{"dataType":"TEXT","length":20},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"TareWeight","name":"商品详情"},{"childDataType":"TEXT","childName":"单价","childSpecsDTO":{"dataType":"TEXT","length":20},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"UnitPrice","name":"商品详情"},{"childDataType":"TEXT","childName":"总价","childSpecsDTO":{"dataType":"TEXT","length":20},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[4].childSpecsDTO"},"dataType":"STRUCT","identifier":"TotalPrice","name":"商品详情"}],"dataType":"STRUCT","description":"","identifier":"ItemDetail","name":"商品详情","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"总数","childSpecsDTO":{"dataType":"TEXT","length":20},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"TotalItem","name":"支付金额"},{"childDataType":"TEXT","childName":"金额","childSpecsDTO":{"dataType":"TEXT","length":20},"dataSpecs":{"$ref":"$.properties[1].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Amount","name":"支付金额"}],"dataType":"STRUCT","description":"","identifier":"TotalAmount","name":"支付金额","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"低电量告警","eventType":"INFO_EVENT_TYPE","identifier":"LowBatteryAlarm","outputData":[],"required":false}]}'), -('1692347065', '0', '755087608', 'KitchenAppliance', '厨房电器', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '757250462', 'ElevatorStatusSensor', '电梯门体状态探测传感器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '785235747', 'SmartCity', '智能城市', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '789085217', 'Car_Detector_Cam', '车牌抓拍', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"capture","name":"抓拍动作","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"识别的车牌","identifier":"Car_number","name":"识别车牌","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"Pic_name","name":"识别照片","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '816500068', 'Sauna', '干蒸房', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '822819372', 'RiceCooker', '电饭煲', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"烹饪","value":1},{"dataType":"ENUM","name":"预约","value":2},{"dataType":"ENUM","name":"保温","value":3},{"dataType":"ENUM","name":"预热","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"1","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"RemainingWorkTime","name":"剩余工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentRemainingTime","name":"预约剩余时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WarmDuration","name":"保温时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"浙江米","value":1},{"dataType":"ENUM","name":"糯米","value":2},{"dataType":"ENUM","name":"糙米","value":3},{"dataType":"ENUM","name":"长粒米","value":4},{"dataType":"ENUM","name":"东北米","value":5},{"dataType":"ENUM","name":"丝苗米","value":6},{"dataType":"ENUM","name":"珍珠米","value":7},{"dataType":"ENUM","name":"泰国香米","value":8},{"dataType":"ENUM","name":"秋田小町","value":9},{"dataType":"ENUM","name":"湖南米","value":10}],"dataType":"ENUM","description":"","identifier":"RiceType","name":"米种选择","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"软","value":1},{"dataType":"ENUM","name":"标准","value":2},{"dataType":"ENUM","name":"硬","value":3}],"dataType":"ENUM","description":"","identifier":"MouthFeel","name":"口感选择","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地食谱","value":1},{"dataType":"ENUM","name":"云食谱","value":2}],"dataType":"ENUM","description":"","identifier":"RecipeInfo","name":"食谱信息","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"AppointmentTime","name":"预约时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"255","min":"0","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","description":"","identifier":"CurrentVoltage","name":"当前电压","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"255","min":"0","precise":7,"step":"0.01","unit":"A","unitName":"安培"},"dataType":"DOUBLE","description":"","identifier":"Current","name":"当前电流","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"StewTime","name":"焖饭时间","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无故障","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '82670954', 'Farming', '种植养殖', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '827617957', 'HomeSecurity', '家居安防', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '856709616', 'PigDataReader', '猪参数采集器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"猪的ID","identifier":"PigID","name":"猪的ID","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"-20","precise":7,"step":"0.01","unit":"℃","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"AnimalTemperature","name":"当前体温","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '882168351', 'Airer', '晾衣杆', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"GetStates","inputParams":[],"outputParams":[],"required":false,"serviceName":"获取设备状态"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Getweathers","inputParams":[],"outputParams":[],"required":false,"serviceName":"获取天气信息参数"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"LightSwitch","name":"照明开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"AirDryingSwitch","name":"风干开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"DryingSwitch","name":"烘干开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"DisinfectionSwitch","name":"消毒开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"停止","value":0},{"dataType":"ENUM","name":"上升","value":1},{"dataType":"ENUM","name":"下降","value":2}],"dataType":"ENUM","description":"","identifier":"MotorControlMode","name":"晾杆控制模式","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"IonsSwitch","name":"负离子开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"-30","precise":0,"step":"1","unit":"°C","unitName":"摄氏度"},"dataType":"INT","description":"","identifier":"Temperature","name":"温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"立春","value":0},{"dataType":"ENUM","name":"白露","value":14},{"dataType":"ENUM","name":"秋分","value":15},{"dataType":"ENUM","name":"寒露","value":16},{"dataType":"ENUM","name":"霜降","value":17},{"dataType":"ENUM","name":"立冬","value":18},{"dataType":"ENUM","name":"小雪","value":19},{"dataType":"ENUM","name":"大雪","value":20},{"dataType":"ENUM","name":"冬至","value":21},{"dataType":"ENUM","name":"小寒","value":22},{"dataType":"ENUM","name":"大寒","value":23},{"dataType":"ENUM","name":"处暑","value":13},{"dataType":"ENUM","name":"立秋","value":12},{"dataType":"ENUM","name":"大暑","value":11},{"dataType":"ENUM","name":"雨水","value":1},{"dataType":"ENUM","name":"惊蛰","value":2},{"dataType":"ENUM","name":"春分","value":3},{"dataType":"ENUM","name":"清明","value":4},{"dataType":"ENUM","name":"谷雨","value":5},{"dataType":"ENUM","name":"立夏","value":6},{"dataType":"ENUM","name":"小满","value":7},{"dataType":"ENUM","name":"芒种","value":8},{"dataType":"ENUM","name":"夏至","value":9},{"dataType":"ENUM","name":"小暑","value":10},{"dataType":"ENUM","name":"不存在","value":99}],"dataType":"ENUM","description":"","identifier":"SolarTerms","name":"节气","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"晴","value":0},{"dataType":"ENUM","name":"小雪","value":14},{"dataType":"ENUM","name":"中雪","value":15},{"dataType":"ENUM","name":"大雪","value":16},{"dataType":"ENUM","name":"暴雪","value":17},{"dataType":"ENUM","name":"雾","value":18},{"dataType":"ENUM","name":"冻雨","value":19},{"dataType":"ENUM","name":"沙尘暴","value":20},{"dataType":"ENUM","name":"小到中雨","value":21},{"dataType":"ENUM","name":"中到大雨","value":22},{"dataType":"ENUM","name":"大到暴雨","value":23},{"dataType":"ENUM","name":"阵雪","value":13},{"dataType":"ENUM","name":"特大暴雨","value":12},{"dataType":"ENUM","name":"大暴雨","value":11},{"dataType":"ENUM","name":"多云","value":1},{"dataType":"ENUM","name":"阴","value":2},{"dataType":"ENUM","name":"阵雨","value":3},{"dataType":"ENUM","name":"雷阵雨","value":4},{"dataType":"ENUM","name":"雷阵雨伴有冰雹","value":5},{"dataType":"ENUM","name":"雨夹雪","value":6},{"dataType":"ENUM","name":"小雨","value":7},{"dataType":"ENUM","name":"中雨","value":8},{"dataType":"ENUM","name":"大雨","value":9},{"dataType":"ENUM","name":"暴雨","value":10},{"dataType":"ENUM","name":"暴雨到大暴雨","value":24}],"dataType":"ENUM","description":"","identifier":"Weather","name":"天气现象","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无风","value":0},{"dataType":"ENUM","name":"软风","value":1},{"dataType":"ENUM","name":"轻风","value":2},{"dataType":"ENUM","name":"微风","value":3},{"dataType":"ENUM","name":"和风","value":4},{"dataType":"ENUM","name":"轻劲风","value":5},{"dataType":"ENUM","name":"强风","value":6},{"dataType":"ENUM","name":"疾风","value":7},{"dataType":"ENUM","name":"大风","value":8},{"dataType":"ENUM","name":"烈风","value":9},{"dataType":"ENUM","name":"狂风","value":10},{"dataType":"ENUM","name":"暴风","value":11},{"dataType":"ENUM","name":"飓风","value":12},{"dataType":"ENUM","name":"龙卷风","value":13}],"dataType":"ENUM","description":"","identifier":"WindLevel","name":"风力等级","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"255","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"","identifier":"PM25","name":"PM25","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"Humidity","name":"湿度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"30","min":"0","precise":0,"step":"1","unit":"′","unitName":"分"},"dataType":"INT","description":"","identifier":"DisinfectionRemainingTime","name":"消毒剩余时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"180","min":"0","precise":0,"step":"1","unit":"′","unitName":"分"},"dataType":"INT","description":"","identifier":"AirDryingRemainingTime","name":"风干剩余时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"120","min":"0","precise":0,"step":"1","unit":"′","unitName":"分"},"dataType":"INT","description":"","identifier":"DryingRemainingTime","name":"烘干剩余时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"120","min":"0","precise":0,"step":"1","unit":"′","unitName":"分"},"dataType":"INT","description":"","identifier":"IonsRemainingTime","name":"负离子剩余时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"180","min":"0","precise":0,"step":"1","unit":"′","unitName":"分"},"dataType":"INT","description":"","identifier":"LightRemainingTime","name":"照明剩余时间","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无此功能","value":0},{"dataType":"ENUM","name":"最上面","value":1},{"dataType":"ENUM","name":"中间","value":2},{"dataType":"ENUM","name":"最下面","value":3}],"dataType":"ENUM","description":"","identifier":"Position","name":"衣杆位置","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"获取状态","eventType":"INFO_EVENT_TYPE","identifier":"GetState","outputData":[],"required":false},{"custom":false,"description":"","eventName":"获取天气信息","eventType":"INFO_EVENT_TYPE","identifier":"GetWeather","outputData":[],"required":false}]}'), -('1692347065', '0', '882774809', 'Cateyecamera', '猫眼摄像头', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"FormatStorageMedium","inputParams":[],"outputParams":[],"required":true,"serviceName":"格式化存储介质"},{"callType":"ASYNC","custom":false,"description":"","identifier":"RestoreFactorySettings","inputParams":[],"outputParams":[],"required":true,"serviceName":"恢复出厂设置"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Restart","inputParams":[],"outputParams":[],"required":true,"serviceName":"重新启动"},{"callType":"ASYNC","custom":false,"description":"","identifier":"TriggerPicCapture","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UploadUrl","name":"上传地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PicID","name":"图片ID","paraOrder":0}],"required":true,"serviceName":"触发设备抓图"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartPushStreaming","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"副码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"码流类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"INT","max":"6","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PreTime","name":"提前推流时间","paraOrder":4}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"设备不支持","value":1},{"dataType":"ENUM","name":"设备资源不足","value":2},{"dataType":"ENUM","name":"推流连接失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Result","name":"推流结果","paraOrder":0}],"required":false,"serviceName":"开始直播"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopPushStreaming","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"主码流","value":0},{"dataType":"ENUM","name":"副码流","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"StreamType","name":"码流类型","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"停止直播"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryRecordList","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"s","unitName":"秒"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"所有类型","value":0},{"dataType":"ENUM","name":"主动录像","value":1},{"dataType":"ENUM","name":"报警录像","value":2},{"dataType":"ENUM","name":"计划录像","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Type","name":"录像类型","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"INT","max":"128","min":"1","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"QuerySize","name":"查询数量","paraOrder":3}],"outputParams":[],"required":false,"serviceName":"查询录像列表"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVod","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FileName","name":"录像名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":2},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":5}],"outputParams":[],"required":false,"serviceName":"开始录像观看"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopVod","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"停止录像观看"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartRecord","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"本地录像","value":0},{"dataType":"ENUM","name":"云端录像","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"RecordType","name":"录像方式","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"RecordDuration","name":"录制时长","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"INT","max":"20","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"PreRecordDuration","name":"预录时长","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"UploadUrl","name":"上传地址","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"RecordID","name":"录像ID","paraOrder":0}],"required":false,"serviceName":"开始录像"},{"callType":"ASYNC","custom":false,"description":"","identifier":"stopRecord","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"RecordID","name":"录像ID","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"停止录像"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVodByTime","inputParams":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"9999","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EncryptType","name":"加密类型","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EncryptKey","name":"密钥","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"RTMP","value":0},{"dataType":"ENUM","name":"RTSP","value":1}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"Scheme","name":"流协议","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"PushUrl","name":"推流地址","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"SessionID","name":"会话ID","paraOrder":4},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"BeginTime","name":"开始时间","paraOrder":5},{"custom":false,"dataSpecs":{"dataType":"INT","max":"2147483647","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"EndTime","name":"结束时间","paraOrder":6}],"outputParams":[],"required":false,"serviceName":"开始录像按时间观看"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StartVoiceIntercom","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"IntercomUrl","name":"对讲地址","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"开始语音对讲"},{"callType":"ASYNC","custom":false,"description":"","identifier":"StopVoiceIntercom","inputParams":[],"outputParams":[],"required":false,"serviceName":"停止语音对讲"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"不录像","value":0},{"dataType":"ENUM","name":"事件录像","value":1},{"dataType":"ENUM","name":"连续录像","value":2}],"dataType":"ENUM","description":"","identifier":"StorageRecordMode","name":"存储介质录像模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","precise":7,"step":"0.01","unit":"MB","unitName":"兆字节"},"dataType":"DOUBLE","description":"","identifier":"StorageTotalCapacity","name":"总存储空间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"MicSwitch","name":"麦克风开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"SubStreamVideoQuality","name":"辅码流视频质量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"流畅","value":0},{"dataType":"ENUM","name":"标清","value":1},{"dataType":"ENUM","name":"高清","value":2}],"dataType":"ENUM","description":"","identifier":"StreamVideoQuality","name":"主码流视频质量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"StayAlarmSwitch","name":"逗留报警开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"低灵敏度","value":0},{"dataType":"ENUM","name":"高灵敏度","value":1}],"dataType":"ENUM","description":"","identifier":"AlarmSensitivity","name":"报警灵敏度","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"RingLEDSwitch","name":"门铃灯开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"5分钟","value":0},{"dataType":"ENUM","name":"10分钟","value":1},{"dataType":"ENUM","name":"30分钟","value":2}],"dataType":"ENUM","description":"","identifier":"AlarmSystem","name":"报警间隔设置","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"无操作","value":0},{"dataType":"ENUM","name":"拍照","value":1},{"dataType":"ENUM","name":"录像","value":2}],"dataType":"ENUM","description":"","identifier":"ActionSetting","name":"按铃抓拍动作设置","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":"百分比"},"dataType":"DOUBLE","description":"","identifier":"BatteryPercentage","name":"电池电量百分比","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"未充电","value":0},{"dataType":"ENUM","name":"充电中","value":1}],"dataType":"ENUM","description":"","identifier":"ChargingState","name":"充电状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"RingVolume","name":"门铃音量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"2147483647","min":"0","precise":7,"step":"0.01","unit":"","unitName":"无"},"dataType":"DOUBLE","description":"","identifier":"StorageRemainCapacity","name":"剩余存储空间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"","identifier":"SpeakerSwitch","name":"扬声器开关","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"侦测报警","eventType":"INFO_EVENT_TYPE","identifier":"AlarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"移动侦测","value":0},{"dataType":"ENUM","name":"声音侦测","value":1},{"dataType":"ENUM","name":"逗留侦测","value":2},{"dataType":"ENUM","name":"按铃通知","value":101}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"AlarmType","name":"告警类型","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"无","value":0},{"dataType":"BOOL","name":"无无","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '89544955', 'WaterPurifier', '净水器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要更换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_1","name":"滤芯寿命状态_1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要更换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_2","name":"滤芯寿命状态_2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要更换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_3","name":"滤芯寿命状态_3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要更换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_4","name":"滤芯寿命状态_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要更换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_5","name":"滤芯寿命状态_5","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"999","min":"0","precise":0,"step":"1","unit":"ppm","unitName":"百万分率"},"dataType":"INT","description":"","identifier":"FinishedWaterTDS","name":"出水TDS","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_1","name":"滤芯寿命百分比_1","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_2","name":"滤芯寿命百分比_2","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_3","name":"滤芯寿命百分比_3","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_4","name":"滤芯寿命百分比_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_5","name":"滤芯寿命百分比_5","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_1","name":"滤芯寿命天数_1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_2","name":"滤芯寿命天数_2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_3","name":"滤芯寿命天数_3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_4","name":"滤芯寿命天数_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_5","name":"滤芯寿命天数_5","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"PurePercent","name":"制水进度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"制水中","value":1}],"dataType":"ENUM","description":"","identifier":"PureState","name":"制水状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"PureSwitch","name":"制水开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"999","min":"0","precise":0,"step":"1","unit":"ppm","unitName":"百万分率"},"dataType":"INT","description":"","identifier":"RawWaterTDS","name":"原水TDS","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"L","unitName":"升"},"dataType":"DOUBLE","description":"","identifier":"TotalInput","name":"总进水量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"L","unitName":"升"},"dataType":"DOUBLE","description":"","identifier":"TotalPureWater","name":"总制水量","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"WashingPercent","name":"冲洗进度","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"冲洗中","value":1}],"dataType":"ENUM","description":"","identifier":"WashingState","name":"冲洗状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"WashingSwitch","name":"冲洗开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"满水","value":1}],"dataType":"ENUM","description":"","identifier":"WaterStatus","name":"满水状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"WaterTemperature","name":"水温","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"正常","value":1},{"dataType":"ENUM","name":"制水","value":2},{"dataType":"ENUM","name":"冲洗","value":3},{"dataType":"ENUM","name":"缺水","value":4},{"dataType":"ENUM","name":"满水","value":5}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '905308684', 'IntelligentBroadcast', '智能广播', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"StopPlay","inputParams":[],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"执行成功","value":0},{"dataType":"ENUM","name":"执行失败","value":1},{"dataType":"ENUM","name":"预留","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ReturnCode","name":"返回码","paraOrder":0}],"required":true,"serviceName":"停止功放播放"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"断线","value":0},{"dataType":"ENUM","name":"空闲","value":1},{"dataType":"ENUM","name":"播放中","value":2}],"dataType":"ENUM","description":"","identifier":"PAState","name":"功放状态","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"PlayVolume","name":"功放音量","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","description":"","identifier":"PlayMediaFile","name":"播放媒体文件","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"PlayTTSText","name":"播放TTS文本","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[4].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '909876369', 'capture', '车牌抓拍-ib', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"capture","name":"抓拍动作","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"Car_number","name":"识别车牌","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"Pic_name","name":"识别照片","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '923566718', 'CardAccess', '刷卡门禁', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"remoteOpen","inputParams":[],"outputParams":[],"required":true,"serviceName":"远程开门"},{"callType":"SYNC","custom":false,"description":"","identifier":"syncPermissions","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"permissionUrl","name":"权限url","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"同步门禁权限"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"BOOL","description":"表示门是否为常开状态,如果为1,门保持常开状态;否则,门保持关闭状态。","identifier":"KeepOpen","name":"常开","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"报警事件","eventType":"INFO_EVENT_TYPE","identifier":"alarmEvent","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"防拆报警","value":0},{"dataType":"ENUM","name":"防拆报警解除","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"alarmType","name":"报警类型","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"通行事件","eventType":"INFO_EVENT_TYPE","identifier":"passEvent","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"cardId","name":"门禁卡ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"userId","name":"用户Id","paraOrder":1}],"required":true},{"custom":false,"description":"","eventName":"异常刷卡","eventType":"INFO_EVENT_TYPE","identifier":"abnormalCreditCard","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"cardId","name":"门禁卡ID","paraOrder":0},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"无效卡","value":0},{"dataType":"ENUM","name":"异常通信","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"eventType","name":"事件类型","paraOrder":1}],"required":true}]}'), -('1692347065', '0', '945388245', 'UnmannedAerialVehicle', '无人机', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '949862290', 'ChargingPile', '非机动车充电桩', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"9999","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Altitude","name":"地理位置"},{"childDataType":"ENUM","childEnumSpecsDTO":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"childName":"坐标系统","dataSpecsList":[{"dataType":"ENUM","name":"WGS_84","value":1},{"dataType":"ENUM","name":"GCJ_02","value":2}],"dataType":"STRUCT","identifier":"CoordinateSystem","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[]}'), -('1692347065', '0', '950754573', 'FaceRecognitionCapabilityModel', '人脸识别能力模型', '{"services":[{"callType":"SYNC","custom":false,"description":"","identifier":"AuthVerifySDK","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"LicenseData","name":"授权文件","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"INT","max":"65535","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_INPUT","identifier":"StatusCode","name":"状态码","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"StatusCodeDescription","name":"状态码描述","paraOrder":2}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"授权成功","value":0},{"dataType":"BOOL","name":"授权失败","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"DoAuthorized","name":"设备授权是否成功","paraOrder":0}],"required":true,"serviceName":"设备授权文件下发"},{"callType":"SYNC","custom":false,"description":"","identifier":"SyncFacePictures","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"FacePicURL","name":"同步文件URL地址","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1},{"dataType":"ENUM","name":"下载文件失败","value":2},{"dataType":"ENUM","name":"解析文件失败","value":3}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"设备同步图片状态值","paraOrder":0}],"required":true,"serviceName":"同步人脸库图片"},{"callType":"SYNC","custom":false,"description":"","identifier":"QuerySyncPicSchedule","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"GroupID","name":"人脸库组ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"%","unitName":""},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"Rate","name":"人脸图布控百分比","paraOrder":0}],"required":true,"serviceName":"查询人脸布控进度"},{"callType":"SYNC","custom":false,"description":"","identifier":"QueryAddedUserInfo","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"GroupID","name":"人脸库组ID","paraOrder":0}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"成功","value":0},{"dataType":"ENUM","name":"布控中","value":1}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"SyncPicStatus","name":"查询添加用户信息的布控状态","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":2048},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"StoreID","name":"人脸布控文件storeID","paraOrder":1},{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"StoreID","value":0},{"dataType":"ENUM","name":"FileName","value":1},{"dataType":"ENUM","name":"URL","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"Type","name":"类型","paraOrder":2}],"required":true,"serviceName":"查询布控成功的人脸图"}],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","description":"","identifier":"OnMatchThreshOld","name":"人脸比对成功阈值","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"FaceSetMD5Sign","name":"人脸库MD5签名","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","description":"","identifier":"FaceSetID","name":"人脸库ID","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"FaceSetSize","name":"当前人脸库大小","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":65},"dataType":"TEXT","description":"","identifier":"FaceSetAlgorithmVersion","name":"人脸库算法版本","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"200000","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","description":"","identifier":"FaceSetPicStoreAbility","name":"人脸库图片存储能力","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"人脸算法SDK需授权","eventType":"INFO_EVENT_TYPE","identifier":"NeedAuthVerifySDK","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PackageName","name":"包名","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"ClientID","name":"设备唯一标识","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"PublicKey","name":"包公钥信息","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":128},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"Token","name":"设备Token值","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":1024},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"DeviceEncrypt","name":"设备加密信息唯一标识","paraOrder":4}],"required":true},{"custom":false,"description":"","eventName":"人脸比对事件上报","eventType":"INFO_EVENT_TYPE","identifier":"OnMatched","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserPicID","name":"用户人脸图ID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"FaceMatchedPicStorID","name":"人脸比对图片StorID","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"FLOAT","max":"100","min":"0","precise":7,"step":"0.1","unit":"%","unitName":"百分比"},"dataType":"FLOAT","direction":"PARAM_OUTPUT","identifier":"Similarity","name":"人脸比对相似度结果","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"GroupID","name":"人脸组ID","paraOrder":3},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"UserInfo","name":"人脸ID相关属性","paraOrder":4}],"required":true},{"custom":false,"description":"","eventName":"人脸检测事件上报","eventType":"INFO_EVENT_TYPE","identifier":"OnDetect","outputData":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":32},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"StoreID","name":"人脸检测图StoreID","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_OUTPUT","identifier":"GroupID","name":"人脸组ID","paraOrder":1}],"required":true}]}'), -('1692347065', '0', '961593232', 'Electrical&Lighting', '电工照明', '{"services":[],"properties":[],"events":[]}'), -('1692347065', '0', '964161728', 'Breaker', '通断器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","identifier":"PowerSwitch_1","name":"开关1","required":true,"rwFlag":"READ_WRITE","std":true}],"events":[]}'), -('1692347065', '0', '96685751', 'AirPurifier', '空气净化器', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"500","min":"0","precise":0,"step":"1","unit":"μg/m³","unitName":"微克每立方米"},"dataType":"INT","description":"","identifier":"PM25","name":"PM2_5","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"优","value":1},{"dataType":"ENUM","name":"良","value":2},{"dataType":"ENUM","name":"轻度污染","value":3},{"dataType":"ENUM","name":"中度污染","value":4},{"dataType":"ENUM","name":"重度污染","value":5},{"dataType":"ENUM","name":"严重污染","value":6}],"dataType":"ENUM","description":"","identifier":"PM25Level","name":"PM2_5级别","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"PowerSwitch","name":"电源开关","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"静音档","value":1},{"dataType":"ENUM","name":"低档","value":2},{"dataType":"ENUM","name":"中档","value":3},{"dataType":"ENUM","name":"高档","value":4},{"dataType":"ENUM","name":"最高档","value":5}],"dataType":"ENUM","description":"","identifier":"WindSpeed","name":"风速","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"ChildLockSwitch","name":"童锁开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"5000","min":"300","precise":7,"step":"0.01","unit":"ppm","unitName":"百万分率"},"dataType":"DOUBLE","description":"","identifier":"CO2","name":"二氧化碳浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"CurrentHumidity","name":"当前湿度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"55","min":"-20","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要更换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_1","name":"滤芯寿命状态_1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要替换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_2","name":"滤芯寿命状态_2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要更换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_3","name":"滤芯寿命状态_3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"需要更换","value":1}],"dataType":"ENUM","description":"","identifier":"FilterStatus_4","name":"滤芯寿命状态_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"3","min":"0","precise":7,"step":"0.01","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"DOUBLE","description":"","identifier":"HCHO","name":"甲醛浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"Humidified","name":"加湿开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_1","name":"滤芯剩余寿命时间_1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_2","name":"滤芯剩余寿命时间_2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_3","name":"滤芯剩余寿命时间_3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1100","min":"0","precise":7,"step":"0.01","unit":"day","unitName":"日"},"dataType":"DOUBLE","description":"","identifier":"FilterLifeTimeDays_4","name":"滤芯剩余寿命时间_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_1","name":"滤芯剩余寿命百分比_1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_2","name":"滤芯剩余寿命百分比_2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_3","name":"滤芯剩余寿命百分比_3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"%","unitName":"百分比"},"dataType":"INT","description":"","identifier":"FilterLifeTimePercent_4","name":"滤芯剩余寿命百分比_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"h","unitName":"小时"},"dataType":"DOUBLE","description":"","identifier":"Runtime_1","name":"运行时间_1","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"h","unitName":"小时"},"dataType":"DOUBLE","description":"","identifier":"Runtime_2","name":"运行时间_2","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"h","unitName":"小时"},"dataType":"DOUBLE","description":"","identifier":"Runtime_3","name":"运行时间_3","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"h","unitName":"小时"},"dataType":"DOUBLE","description":"","identifier":"Runtime_4","name":"运行时间_4","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"打开","value":1}],"dataType":"BOOL","description":"","identifier":"IonsSwitch","name":"离子团开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"3","min":"0","precise":7,"step":"0.01","unit":"mg/m³","unitName":"毫克每立方米"},"dataType":"DOUBLE","description":"","identifier":"TVOC","name":"TVOC_VOC浓度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"正常","value":0},{"dataType":"BOOL","name":"缺水","value":1}],"dataType":"BOOL","description":"","identifier":"WaterShortageStatus","name":"加湿缺水状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"自动","value":0},{"dataType":"ENUM","name":"手动","value":1}],"dataType":"ENUM","description":"","identifier":"WorkMode","name":"工作模式","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"childDataType":"STRUCT","customFlag":true,"dataSpecsList":[{"childDataType":"TEXT","childName":"定时时间","childSpecsDTO":{"dataType":"TEXT","length":255},"dataSpecs":{"$ref":"$.properties[30].dataSpecs.dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"Timer","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"childName":"启用","dataSpecsList":[{"dataType":"BOOL","name":"关","value":0},{"dataType":"BOOL","name":"开","value":1}],"dataType":"STRUCT","identifier":"Enable","name":"本地定时"},{"childDataType":"BOOL","childEnumSpecsDTO":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"childName":"可执行","dataSpecsList":[{"dataType":"BOOL","name":"无效","value":0},{"dataType":"BOOL","name":"有效","value":1}],"dataType":"STRUCT","identifier":"IsValid","name":"本地定时"}],"dataType":"ARRAY","size":5},"dataType":"ARRAY","description":"用于为设备配置本地控制,其中前三个参数必选,其它参数自主填写,用于表示该产品哪些功能作为“可被本地控制的功能”,这些参数请和设备的标准功能保持一致。","identifier":"LocalTimer","name":"本地定时","required":false,"rwFlag":"READ_WRITE","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'), -('1692347065', '0', '984740374', 'PreciseTimeSpaceCamera', '精准时空摄像头', '{"services":[{"callType":"ASYNC","custom":false,"description":"","identifier":"Reset","inputParams":[],"outputParams":[],"required":true,"serviceName":"复位"},{"callType":"ASYNC","custom":false,"description":"","identifier":"AngleSelfAdaption","inputParams":[],"outputParams":[],"required":false,"serviceName":"角度自适应校准"},{"callType":"ASYNC","custom":false,"description":"","identifier":"ResetTime","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"ResetTime","name":"校时","paraOrder":0}],"outputParams":[],"required":true,"serviceName":"设备校时服务"},{"callType":"ASYNC","custom":false,"description":"","identifier":"CtrlCommand","inputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"重置无车","value":0},{"dataType":"ENUM","name":"重置标尺","value":1},{"dataType":"ENUM","name":"关机","value":2},{"dataType":"ENUM","name":"强制重启","value":3}],"dataType":"ENUM","direction":"PARAM_INPUT","identifier":"CommandType","name":"指令类型","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"控制指令"},{"callType":"ASYNC","custom":false,"description":"","identifier":"ReceiveEvents","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":64},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EventID","name":"事件编号","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","direction":"PARAM_INPUT","identifier":"EventTime","name":"事件发生时间","paraOrder":1},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EventCode","name":"事件类型编号","paraOrder":2},{"custom":false,"dataSpecs":{"dataType":"TEXT","length":8},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"EventPos","name":"事件位置编号","paraOrder":3}],"outputParams":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"执行成功","value":0},{"dataType":"ENUM","name":"执行失败","value":1},{"dataType":"ENUM","name":"预留","value":2}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ReturnCode","name":"返回码","paraOrder":0}],"required":false,"serviceName":"事件触发"},{"callType":"ASYNC","custom":false,"description":"","identifier":"Reboot","inputParams":[],"outputParams":[],"required":true,"serviceName":"重启"},{"callType":"ASYNC","custom":false,"description":"","identifier":"RestoreFactorySettings","inputParams":[],"outputParams":[],"required":false,"serviceName":"恢复出厂设置"},{"callType":"ASYNC","custom":false,"description":"从OSS端下载下载裁切文件到裁床文件路径下","identifier":"LoadFile","inputParams":[{"custom":false,"dataSpecs":{"dataType":"TEXT","length":255},"dataType":"TEXT","direction":"PARAM_INPUT","identifier":"AbsoluteDirectoryAndFileName","name":"文件目录和文件名","paraOrder":0}],"outputParams":[],"required":false,"serviceName":"下载文件"}],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"DOUBLE","childName":"经度","childSpecsDTO":{"dataType":"DOUBLE","max":"180","min":"-180","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"longitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"纬度","childSpecsDTO":{"dataType":"DOUBLE","max":"90","min":"-90","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"latitude","name":"地理位置"},{"childDataType":"DOUBLE","childName":"海拔","childSpecsDTO":{"dataType":"DOUBLE","max":"10000","min":"0","precise":7,"step":"0.01","unit":"m","unitName":"米"},"dataSpecs":{"$ref":"$.properties[0].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"altitude","name":"地理位置"}],"dataType":"STRUCT","description":"","identifier":"GeoLocation","name":"地理位置","required":true,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DATE","length":64},"dataType":"DATE","description":"","identifier":"CurrentTime","name":"当前时间","required":true,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"上","value":1},{"dataType":"ENUM","name":"下","value":2},{"dataType":"ENUM","name":"左","value":3},{"dataType":"ENUM","name":"右","value":4}],"dataType":"ENUM","description":"","identifier":"DirectionControl","name":"方向控制","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"360","min":"0","precise":7,"step":"0.01","unit":"°","unitName":"度"},"dataType":"DOUBLE","description":"","identifier":"DirectionAngle","name":"方向角度","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"正常","value":0},{"dataType":"ENUM","name":"通信失败","value":1},{"dataType":"ENUM","name":"低电量","value":2},{"dataType":"ENUM","name":"异常","value":3}],"dataType":"ENUM","description":"","identifier":"ModuleState","name":"模块状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":16},"dataType":"TEXT","description":"","identifier":"NumberModel","name":"型号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":12},"dataType":"TEXT","description":"","identifier":"NumberSerial","name":"设备号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"TEXT","length":10},"dataType":"TEXT","description":"","identifier":"Version","name":"固件版本号","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"childDataType":"TEXT","childName":"IP地址","childSpecsDTO":{"dataType":"TEXT","length":16},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[0].childSpecsDTO"},"dataType":"STRUCT","identifier":"IP","name":"网络配置"},{"childDataType":"TEXT","childName":"子网掩码","childSpecsDTO":{"dataType":"TEXT","length":16},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[1].childSpecsDTO"},"dataType":"STRUCT","identifier":"Netmask","name":"网络配置"},{"childDataType":"TEXT","childName":"默认网关","childSpecsDTO":{"dataType":"TEXT","length":16},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[2].childSpecsDTO"},"dataType":"STRUCT","identifier":"Gateway","name":"网络配置"},{"childDataType":"TEXT","childName":"MAC地址","childSpecsDTO":{"dataType":"TEXT","length":17},"dataSpecs":{"$ref":"$.properties[9].dataSpecsList[3].childSpecsDTO"},"dataType":"STRUCT","identifier":"MAC","name":"网络配置"}],"dataType":"STRUCT","description":"","identifier":"NetConfiguration","name":"网络配置","required":true,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecs":{"dataType":"INT","max":"100","min":"0","precise":0,"step":"1","unit":"","unitName":"无"},"dataType":"INT","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true},{"custom":false,"description":"","eventName":"防撬报警","eventType":"INFO_EVENT_TYPE","identifier":"TamperAlarm","outputData":[],"required":false},{"custom":false,"description":"","eventName":"非正常状态告警","eventType":"INFO_EVENT_TYPE","identifier":"AbnormalBehaviorAlarm","outputData":[],"required":false},{"custom":false,"description":"","eventName":"心跳事件上报","eventType":"INFO_EVENT_TYPE","identifier":"HeartbeatNotification","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"无车","value":0},{"dataType":"BOOL","name":"有车","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"ParkingState","name":"车位状态","paraOrder":0},{"custom":false,"dataSpecs":{"dataType":"DOUBLE","max":"4.5","min":"2.5","precise":7,"step":"0.01","unit":"V","unitName":"伏特"},"dataType":"DOUBLE","direction":"PARAM_OUTPUT","identifier":"VoltageValue","name":"电压值","paraOrder":1}],"required":false},{"custom":false,"description":"","eventName":"翻倒告警","eventType":"INFO_EVENT_TYPE","identifier":"TurnoverWarning","outputData":[],"required":false},{"custom":false,"description":"","eventName":"设备故障","eventType":"INFO_EVENT_TYPE","identifier":"Error_alarm","outputData":[],"required":true},{"custom":false,"description":"","eventName":"离线告警","eventType":"INFO_EVENT_TYPE","identifier":"Offline_alarm","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"BOOL","name":"在线","value":0},{"dataType":"BOOL","name":"离线","value":1}],"dataType":"BOOL","direction":"PARAM_OUTPUT","identifier":"eventValue","name":"事件值","paraOrder":0}],"required":false}]}'), -('1692347065', '0', '985288031', 'HealthPreservingPot', '养生壶', '{"services":[],"properties":[{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"ENUM","name":"待机","value":0},{"dataType":"ENUM","name":"工作中","value":1},{"dataType":"ENUM","name":"预约中","value":2},{"dataType":"ENUM","name":"保温中","value":3},{"dataType":"ENUM","name":"预热中","value":4},{"dataType":"ENUM","name":"暂停","value":5},{"dataType":"ENUM","name":"完成","value":6},{"dataType":"ENUM","name":"结束","value":7}],"dataType":"ENUM","description":"","identifier":"WorkState","name":"工作状态","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecsList":[{"dataType":"BOOL","name":"关闭","value":0},{"dataType":"BOOL","name":"开启","value":1}],"dataType":"BOOL","description":"","identifier":"WorkSwitch","name":"运行开关","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"1440","min":"0","precise":7,"step":"0.01","unit":"min","unitName":"分钟"},"dataType":"DOUBLE","description":"","identifier":"WorkTime","name":"工作时间","required":false,"rwFlag":"READ_ONLY","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"35","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"TargetTemperature","name":"目标温度","required":false,"rwFlag":"READ_WRITE","std":true},{"custom":false,"customFlag":false,"dataSpecs":{"dataType":"DOUBLE","max":"100","min":"0","precise":7,"step":"0.01","unit":"°C","unitName":"摄氏度"},"dataType":"DOUBLE","description":"","identifier":"CurrentTemperature","name":"当前温度","required":false,"rwFlag":"READ_ONLY","std":true}],"events":[{"custom":false,"description":"","eventName":"故障上报","eventType":"INFO_EVENT_TYPE","identifier":"Error","outputData":[{"custom":false,"dataSpecsList":[{"dataType":"ENUM","name":"恢复正常","value":0}],"dataType":"ENUM","direction":"PARAM_OUTPUT","identifier":"ErrorCode","name":"故障代码","paraOrder":0}],"required":true}]}'); diff --git a/manifest/sql/unit.sql b/manifest/sql/unit.sql deleted file mode 100644 index e9ef466..0000000 --- a/manifest/sql/unit.sql +++ /dev/null @@ -1,145 +0,0 @@ --- ------------------------------------------------------------- --- TablePlus 3.11.0(352) --- --- https://tableplus.com/ --- --- Database: core.db --- Generation Time: 2023-08-18 16:35:22.2040 --- ------------------------------------------------------------- - - -DROP TABLE IF EXISTS "unit"; -CREATE TABLE `unit` (`created` integer,`modified` integer,`id` text NOT NULL,`symbol` text,`unit_name` text,PRIMARY KEY (`id`)); - -INSERT INTO "unit" ("created", "modified", "id", "symbol", "unit_name") VALUES -('0', '0', '1050529135', 'h㎡', '公顷'), -('0', '0', '1067028776', 'day', '日'), -('0', '0', '1120305984', 'Lux', '照度'), -('0', '0', '1171392092', 'kW·h', '千瓦时'), -('0', '0', '1227251678', 'km/h', '千米每小时'), -('0', '0', '1237352920', 'MB', '兆字节'), -('0', '0', '1238408930', 'mm/hour', '降雨量'), -('0', '0', '1251210766', 'year', '年'), -('0', '0', '1260714642', 'cst', '厘斯'), -('0', '0', '1272565758', 'm/s', '米每秒'), -('0', '0', '1285504879', 'eV', '电子伏'), -('0', '0', '1287162010', 'μg/m³', '微克每立方米'), -('0', '0', '1307611620', 'm', '米'), -('0', '0', '1319961390', 'ppb', '微克每升'), -('0', '0', '134439448', 'ml/min', '滴速'), -('0', '0', '1387479228', 'mg/L', '毫克每升'), -('0', '0', '141205568', 'mV', '毫伏'), -('0', '0', '1435764379', 'KCL/h', '千卡每小时'), -('0', '0', '1508611453', '℉', '华氏度'), -('0', '0', '1661756366', 'uw/cm2', '微瓦每平方厘米'), -('0', '0', '1677031383', 'mg/kg', '毫克每千克'), -('0', '0', '1679257298', 'μF', '微法'), -('0', '0', '1683998972', 'kV', '千伏'), -('0', '0', '1714926017', 'aw', '饱和度'), -('0', '0', '1733101572', 'gear', '档'), -('0', '0', '1756968242', 'Nm3/h', '标准立方米每小时'), -('0', '0', '1784830245', 'cm³', '立方厘米'), -('0', '0', '1828218537', 'L', '升'), -('0', '0', '1869154096', 'L/s', '升每秒'), -('0', '0', '195332683', 'hPa', '百帕'), -('0', '0', '1988291048', 'Ω', '欧姆'), -('0', '0', '2011027793', '㎡', '平方米'), -('0', '0', '2042762171', 'μW', '微瓦'), -('0', '0', '2047337380', 'mPa', '毫帕'), -('0', '0', '2062037286', 'km', '千米'), -('0', '0', '2095500789', 'min', '分钟'), -('0', '0', '2141083904', 'ms', '毫秒'), -('0', '0', '2143472013', 'dS/m', '土壤EC值'), -('0', '0', '2147159174', '%RH', '相对湿度'), -('0', '0', '2183644179', 'mmHg', '血压'), -('0', '0', '2189718870', 'N', '牛'), -('0', '0', '222593263', 'ppt', '纳克每升'), -('0', '0', '2370070327', 'V', '伏特'), -('0', '0', '2378761198', 'KB', '千字节'), -('0', '0', '2408955285', 'K', '开尔文'), -('0', '0', '2409660279', 'rad', '弧度'), -('0', '0', '2448208422', 't', '吨'), -('0', '0', '2463502558', 'cP', '厘泊'), -('0', '0', '2478074432', 'kJ', '千焦'), -('0', '0', '2499648623', 'Wh', '瓦时'), -('0', '0', '2556697285', 'N/C', '牛顿每库仑'), -('0', '0', '2583833740', 'bit', '比特'), -('0', '0', '2599919762', 'pH', 'PH值'), -('0', '0', '2689073860', 'c㎡', '平方厘米'), -('0', '0', '2705262257', 'dB', '分贝'), -('0', '0', '2723823852', 'μg/L', '微克每升'), -('0', '0', '2734512982', 'm³/h', '立方米每小时'), -('0', '0', '28257656', '只', '只'), -('0', '0', '2873975842', 'nm', '纳米'), -('0', '0', '2886629856', 'μA', '微安'), -('0', '0', '2906315097', 'kVA', '千伏安'), -('0', '0', '2908271923', 'grav', '重力加速度'), -('0', '0', '2936832121', 'var', '乏'), -('0', '0', '3086572956', 'k㎡', '平方千米'), -('0', '0', '3162839703', 'g/m³', '克每立方米'), -('0', '0', '3204969447', '°C', '摄氏度'), -('0', '0', '322039693', 'kA', '千安'), -('0', '0', '3233363857', 'kvarh', '千乏时'), -('0', '0', '3341593720', 'm³/s', '立方米每秒'), -('0', '0', '3346885911', 'W', '瓦特'), -('0', '0', '3413923127', 'kVar', '千乏'), -('0', '0', '3459716093', 'g/mL', '克每毫升'), -('0', '0', '3494680817', 'V/m', '伏特每米'), -('0', '0', '3521657261', 'kW', '千瓦特'), -('0', '0', '3526333271', 'lm', '流明'), -('0', '0', '3536079172', 't/h', '吨每小时'), -('0', '0', '3553987486', 'GB', '吉字节'), -('0', '0', '3561194250', 'bar', '巴'), -('0', '0', '3629750633', 'mmol/L', '血糖'), -('0', '0', '3652169375', 'Hz', '赫兹'), -('0', '0', '365283601', 'turn/m', '转每分钟'), -('0', '0', '3703938640', 'A', '安培'), -('0', '0', '37132377', '', '无'), -('0', '0', '3731553406', 'mL', '毫升'), -('0', '0', '3760450650', 'mg', '毫克'), -('0', '0', '3787019170', 'cal', '卡路里'), -('0', '0', '3805681504', 'Mpa', '兆帕'), -('0', '0', '3806667110', 'kg/s', '公斤每秒'), -('0', '0', '3853768919', 'h', '小时'), -('0', '0', '3856243771', 'dm', '分米'), -('0', '0', '3884000677', 'week', '周'), -('0', '0', '3892504745', '°', '度'), -('0', '0', '3924872958', 'kcal', '千卡路里'), -('0', '0', '3940003094', 'mA', '毫安'), -('0', '0', '3977392320', 'F', '法拉'), -('0', '0', '397886103', 'ppm', '百万分率'), -('0', '0', '397910032', '″', '秒'), -('0', '0', '3988157679', 'Pa', '帕斯卡'), -('0', '0', '3990541668', 'km³', '立方千米'), -('0', '0', '4014143885', 'cm', '厘米'), -('0', '0', '4016744681', 'm㎡', '平方毫米'), -('0', '0', '4075453843', '%', '百分比'), -('0', '0', '4077977269', 'B', '字节'), -('0', '0', '4105600633', 'J', '焦耳'), -('0', '0', '4113191213', 'W/㎡', '太阳总辐射'), -('0', '0', '4152695738', 'mm³', '立方毫米'), -('0', '0', '4194933555', 'mW', '毫瓦'), -('0', '0', '4208273555', 'pF', '皮法'), -('0', '0', '4217036485', 's', '秒'), -('0', '0', '4260048369', 'g/L', '克每升'), -('0', '0', '4274342792', 'nF', '纳法'), -('0', '0', '4277998481', 'pixel', '像素'), -('0', '0', '431158833', 'kn', '节'), -('0', '0', '438347815', 'mm/s', '毫米每秒'), -('0', '0', '464628588', 'month', '月'), -('0', '0', '581708831', 'kg/m³', '千克每立方米'), -('0', '0', '595486107', 'g', '克'), -('0', '0', '599137820', 'kg', '千克'), -('0', '0', '642495303', 'count', '次'), -('0', '0', '674931946', 'r/min', '转每分钟'), -('0', '0', '696054434', 'pcs', '个'), -('0', '0', '775746730', '′', '分'), -('0', '0', '776042458', 'kPa', '千帕'), -('0', '0', '782893373', 'uS/cm', '微西每厘米'), -('0', '0', '871685355', 'stepCount', '步'), -('0', '0', '896425856', 'μg/(d㎡·d)', '微克每平方分米每天'), -('0', '0', '919248385', 'μm', '微米'), -('0', '0', '92495678', 'NTU', '浊度'), -('0', '0', '946558460', 'mg/m³', '毫克每立方米'), -('0', '0', '947850259', 'm³', '立方米'), -('0', '0', '991213995', 'mm', '毫米');