| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004 |
- {
- "swagger": "2.0",
- "info": {
- "description": "包含模块:异常检测和健康诊断接口",
- "version": "1.0",
- "title": "中能智能分析业务后台相关接口文档",
- "termsOfService": "https://lanhuapp.com/url/4qLCF",
- "contact": { "name": "研发中心" }
- },
- "host": "106.120.102.238:16880",
- "tags": [
- { "name": "湍流尾流接口", "x-order": "2147483647" },
- { "name": "风机健康查询接口", "x-order": "2147483647" },
- { "name": "风机异常检测查询接口", "x-order": "2147483647" }
- ],
- "paths": {
- "/energy-manage-analyse-service/anomaly/geAnomalyYaw": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "偏航模块模块",
- "operationId": "geAnomalyYawUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyModelDTO",
- "description": "anomalyModelDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场下风机基础参数",
- "originalRef": "异常检测风场下风机基础参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«偏航模块»",
- "originalRef": "ResultResp«偏航模块»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAerodynamics": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "气动性能",
- "operationId": "getAerodynamicsUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyModelDTO",
- "description": "anomalyModelDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场下风机基础参数",
- "originalRef": "异常检测风场下风机基础参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«气动性能模块»",
- "originalRef": "ResultResp«气动性能模块»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAnomalyCtrlParam": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "运行状态模块模块",
- "operationId": "getAnomalyCtrlParamUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyModelDTO",
- "description": "anomalyModelDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场下风机基础参数",
- "originalRef": "异常检测风场下风机基础参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«运行模块»",
- "originalRef": "ResultResp«运行模块»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAnomalyModel": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "风机卡片",
- "operationId": "getAnomalyModelUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyDTO",
- "description": "anomalyDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场参数",
- "originalRef": "异常检测风场参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«List«风机卡片返回数据»»",
- "originalRef": "ResultResp«List«风机卡片返回数据»»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAnomalyModelCount": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "查询模块异常台数 -- 雷达图",
- "operationId": "getAnomalyModelCountUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyDTO",
- "description": "anomalyDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场参数",
- "originalRef": "异常检测风场参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«模块统计雷达图»",
- "originalRef": "ResultResp«模块统计雷达图»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAnomalyModelMap": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "查询热力图",
- "operationId": "getAnomalyModelMapUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyDTO",
- "description": "anomalyDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场参数",
- "originalRef": "异常检测风场参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«热力图»",
- "originalRef": "ResultResp«热力图»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAnomalyOverview": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "查询异常风机概览",
- "operationId": "getAnomalyOverviewUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyDTO",
- "description": "anomalyDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场参数",
- "originalRef": "异常检测风场参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«List«风机异常概览»»",
- "originalRef": "ResultResp«List«风机异常概览»»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAnomalyPitch": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "变桨模块模块",
- "operationId": "getAnomalyPitchUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyModelDTO",
- "description": "anomalyModelDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场下风机基础参数",
- "originalRef": "异常检测风场下风机基础参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«变桨模块»",
- "originalRef": "ResultResp«变桨模块»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAnomalySensorCount": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "查询传感器异常台数 -- 雷达图",
- "operationId": "getAnomalySensorCountUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyDTO",
- "description": "anomalyDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场参数",
- "originalRef": "异常检测风场参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«传感器统计雷达图»",
- "originalRef": "ResultResp«传感器统计雷达图»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getAnomalyWindpwr": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "风速功率模块模块",
- "operationId": "getAnomalyWindpwrUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyModelDTO",
- "description": "anomalyModelDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场下风机基础参数",
- "originalRef": "异常检测风场下风机基础参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«风速功率模块»",
- "originalRef": "ResultResp«风速功率模块»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getBarChartStats": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "查询柱状图",
- "operationId": "getBarChartStatsUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyDTO",
- "description": "anomalyDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场参数",
- "originalRef": "异常检测风场参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«异常检测概览页面柱状图»",
- "originalRef": "ResultResp«异常检测概览页面柱状图»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/anomaly/getPitchAnomalyTrend": {
- "post": {
- "tags": ["风机异常检测查询接口"],
- "summary": "获取模块异常趋势曲线图(支持年度分表+跨年跨表)",
- "operationId": "getPitchAnomalyTrendUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "in": "body",
- "name": "anomalyModelDTO",
- "description": "anomalyModelDTO",
- "required": true,
- "schema": {
- "$ref": "#/definitions/异常检测风场下风机基础参数",
- "originalRef": "异常检测风场下风机基础参数"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«List«异常检测曲线图异常占比»»",
- "originalRef": "ResultResp«List«异常检测曲线图异常占比»»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/healthscores/getHealthOverview": {
- "post": {
- "tags": ["风机健康查询接口"],
- "summary": "风场下所有风机健康查询概览页面",
- "operationId": "getHealthOverviewUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "name": "datatime",
- "in": "query",
- "description": "datatime参数为查询日期,当参数为空时,默认查昨天日期的数据",
- "required": false,
- "type": "string"
- },
- {
- "name": "fieldCode",
- "in": "query",
- "description": "fieldCode参数为平台内部风场编号",
- "required": true,
- "type": "string"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«HealthOverviewVO»",
- "originalRef": "ResultResp«HealthOverviewVO»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/healthscores/getHealthscoresWindList": {
- "post": {
- "tags": ["风机健康查询接口"],
- "summary": "首页风场健康台数统计数据",
- "operationId": "getHealthscoresWindListUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "name": "datatime",
- "in": "query",
- "description": "datatime参数为查询日期,当参数为空时,默认查昨天日期的数据",
- "required": false,
- "type": "string"
- },
- {
- "name": "fieldCode",
- "in": "query",
- "description": "fieldCode参数为平台内部风场编号,当参数为空时,默认查全部风场",
- "required": false,
- "type": "string"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«List«HealthscoresWindVO»»",
- "originalRef": "ResultResp«List«HealthscoresWindVO»»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/healthscores/getLastDaysTrend": {
- "post": {
- "tags": ["风机健康查询接口"],
- "summary": "风机按天数查询趋势图",
- "operationId": "getLastDaysTrendUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "name": "dateTime",
- "in": "query",
- "description": "time",
- "required": true,
- "type": "string"
- },
- {
- "name": "day",
- "in": "query",
- "description": "day参数为查询多少天的趋势图数据,如7天,30天,365天",
- "required": true,
- "type": "integer",
- "format": "int32"
- },
- {
- "name": "engineId",
- "in": "query",
- "description": "engineId参数为客户内部风机ID,可通过风机概览页面获取",
- "required": true,
- "type": "string"
- },
- {
- "name": "fieldId",
- "in": "query",
- "description": "fieldId参数为客户内部风场ID,可通过风机概览页面获取",
- "required": true,
- "type": "string"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«HealthscoresTendencyVO»",
- "originalRef": "ResultResp«HealthscoresTendencyVO»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- },
- "/energy-manage-analyse-service/wakewindfarm/getWakeWindFarm": {
- "post": {
- "tags": ["湍流尾流接口"],
- "summary": "风场湍流尾流的数据",
- "operationId": "getWakeWindFarmUsingPOST",
- "consumes": ["application/json"],
- "produces": ["*/*"],
- "parameters": [
- {
- "name": "datatime",
- "in": "query",
- "description": "datatime参数为查询日期,当参数为空时,默认查昨天日期的数据",
- "required": false,
- "type": "string"
- },
- {
- "name": "fieldCode",
- "in": "query",
- "description": "fieldCode参数为平台内部风场编号",
- "required": true,
- "type": "string"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/ResultResp«WakeWindFarmVO»",
- "originalRef": "ResultResp«WakeWindFarmVO»"
- }
- },
- "201": { "description": "Created" },
- "401": { "description": "Unauthorized" },
- "403": { "description": "Forbidden" },
- "404": { "description": "Not Found" }
- },
- "x-order": "2147483647"
- }
- }
- },
- "definitions": {
- "AnomalyCabletwistPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyCabletwistPO"
- },
- "AnomalyCpPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyCpPO"
- },
- "AnomalyCpTsrPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyCpTsrPO"
- },
- "AnomalyMinpitchPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyMinpitchPO"
- },
- "AnomalyOperationPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyOperationPO"
- },
- "AnomalyPitchcoordPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyPitchcoordPO"
- },
- "AnomalyPitchregulationPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyPitchregulationPO"
- },
- "AnomalyPowercurvePO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyPowercurvePO"
- },
- "AnomalyPowerqualityPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyPowerqualityPO"
- },
- "AnomalyScatterPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyScatterPO"
- },
- "AnomalySimulinkPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalySimulinkPO"
- },
- "AnomalyStaticyawPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyStaticyawPO"
- },
- "AnomalyTsrPO": {
- "type": "object",
- "properties": {
- "anomalyModelName": { "type": "string" },
- "createTime": { "type": "string", "format": "date-time" },
- "detectorAnomalyCount": { "type": "integer", "format": "int32" },
- "detectorAnomalyRate": { "type": "number" },
- "detectorIsAnomaly": { "type": "integer", "format": "int32" },
- "detectorNormallyCount": { "type": "integer", "format": "int32" },
- "engineId": { "type": "string" },
- "fieldId": { "type": "string" },
- "filePath": { "type": "string" },
- "graphPath": { "type": "string" },
- "id": { "type": "integer", "format": "int32" },
- "sensorAnomalyCount": { "type": "integer", "format": "int32" },
- "sensorAnomalyType": { "type": "string" },
- "sensorIsAnomaly": { "type": "integer", "format": "int32" },
- "sensorNormallyCount": { "type": "integer", "format": "int32" },
- "sourceDatetime": { "type": "string", "format": "date" }
- },
- "title": "AnomalyTsrPO"
- },
- "HealthOverviewListVO": {
- "type": "object",
- "properties": {
- "componentScore": { "type": "number", "description": "部件健康评分" },
- "controlSystemScore": {
- "type": "number",
- "description": "主控系统健康评分 (0-100)"
- },
- "converterScore": {
- "type": "number",
- "description": "变流器健康评分 (0-100)"
- },
- "createTime": {
- "type": "string",
- "format": "date-time",
- "description": "评估入库时间戳 (yyyy-mm-dd hh:mm:ss)"
- },
- "engineId": {
- "type": "string",
- "description": "风机ID(客户内部命名)"
- },
- "engineName": { "type": "string", "description": "风机名称" },
- "fieldId": {
- "type": "string",
- "description": "风场ID(客户内部命名)"
- },
- "gearboxScore": {
- "type": "number",
- "description": "齿轮箱健康评分 (0-100)"
- },
- "generatorScore": {
- "type": "number",
- "description": "发电机健康评分 (0-100)"
- },
- "hydraulicSystemScore": {
- "type": "number",
- "description": "液压系统健康评分 (0-100)"
- },
- "id": { "type": "integer", "format": "int32", "description": "编号" },
- "machineTypeCode": { "type": "string", "description": "机型型号" },
- "mainShaftScore": {
- "type": "number",
- "description": "主轴健康评分 (0-100)"
- },
- "overallLevel": {
- "type": "string",
- "description": "综合健康等级 (优/良/中/差)"
- },
- "overallScore": {
- "type": "number",
- "description": "综合健康评分 (0-100)"
- },
- "pitchSystemScore": {
- "type": "number",
- "description": "变桨系统健康评分 (0-100)"
- },
- "rotorScore": {
- "type": "number",
- "description": "叶轮健康评分 (0-100)"
- },
- "sourceDatetime": {
- "type": "string",
- "format": "date-time",
- "description": "数据来源时间 (yyyy-mm-dd)"
- },
- "structureScore": { "type": "number", "description": "结构健康评分" },
- "systemScore": { "type": "number", "description": "系统健康评分" },
- "towerScore": {
- "type": "number",
- "description": "塔筒健康评分 (0-100)"
- },
- "yawSystemScore": {
- "type": "number",
- "description": "偏航系统健康评分 (0-100)"
- }
- },
- "title": "HealthOverviewListVO"
- },
- "HealthOverviewVO": {
- "type": "object",
- "properties": {
- "healthOverviewListVOList": {
- "type": "array",
- "description": "健康概览风机集合",
- "items": {
- "$ref": "#/definitions/HealthOverviewListVO",
- "originalRef": "HealthOverviewListVO"
- }
- },
- "healthscoresWindVO": {
- "description": "风场健康信息",
- "$ref": "#/definitions/HealthscoresWindVO",
- "originalRef": "HealthscoresWindVO"
- }
- },
- "title": "HealthOverviewVO"
- },
- "HealthscoresTendencyVO": {
- "type": "object",
- "properties": {
- "birthday": { "type": "string", "description": "坐标x时间" },
- "controlSystemScore": {
- "type": "number",
- "description": "主控系统健康评分"
- },
- "converterScore": { "type": "number", "description": "变流器健康评分" },
- "engineId": { "type": "string", "description": "风机id,客户内部编号" },
- "fieldId": { "type": "string", "description": "风场id,客户内部编号" },
- "gearboxScore": { "type": "number", "description": "齿轮箱健康评分" },
- "generatorScore": { "type": "number", "description": "发电机健康评分" },
- "hydraulicSystemScore": {
- "type": "number",
- "description": "液压系统健康评分"
- },
- "mainShaftScore": { "type": "number", "description": "主轴健康评分" },
- "overallScore": {
- "type": "number",
- "description": "综合健康评分 (0-100) "
- },
- "pitchSystemScore": {
- "type": "number",
- "description": "变桨系统健康评分"
- },
- "rotorScore": { "type": "number", "description": "叶轮健康评分" },
- "sourceDatetime": {
- "type": "string",
- "format": "date",
- "description": "坐标x"
- },
- "towerScore": { "type": "number", "description": "塔筒健康评分" },
- "yawSystemScore": {
- "type": "number",
- "description": "偏航系统健康评分"
- }
- },
- "title": "HealthscoresTendencyVO"
- },
- "HealthscoresWindVO": {
- "type": "object",
- "properties": {
- "componentScore": {
- "type": "number",
- "description": "风场部件健康评分"
- },
- "createTime": {
- "type": "string",
- "format": "date-time",
- "description": "评估入库时间戳"
- },
- "excellentCount": {
- "type": "number",
- "description": "风场内健康等级为优的风机占比"
- },
- "fairCount": {
- "type": "number",
- "description": "风场内健康等级为中的风机占比"
- },
- "fieldId": {
- "type": "string",
- "description": "风场ID(客户内部编号)"
- },
- "fieldName": { "type": "string" },
- "goodCount": {
- "type": "number",
- "description": "风场内健康等级为良的风机占比"
- },
- "id": { "type": "integer", "format": "int32", "description": "主键ID" },
- "overallScore": { "type": "number", "description": "风场综合健康评分" },
- "poorCount": {
- "type": "number",
- "description": "风场内健康等级为差的风机占比"
- },
- "sourceDatetime": {
- "type": "string",
- "format": "date-time",
- "description": "数据来源时间"
- },
- "structureScore": {
- "type": "number",
- "description": "风场结构健康评分"
- },
- "systemScore": { "type": "number", "description": "风场系统健康评分" }
- },
- "title": "HealthscoresWindVO"
- },
- "ResultResp«HealthOverviewVO»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "$ref": "#/definitions/HealthOverviewVO",
- "originalRef": "HealthOverviewVO"
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«HealthOverviewVO»"
- },
- "ResultResp«HealthscoresTendencyVO»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "$ref": "#/definitions/HealthscoresTendencyVO",
- "originalRef": "HealthscoresTendencyVO"
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«HealthscoresTendencyVO»"
- },
- "ResultResp«List«HealthscoresWindVO»»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/HealthscoresWindVO",
- "originalRef": "HealthscoresWindVO"
- }
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«List«HealthscoresWindVO»»"
- },
- "ResultResp«List«异常检测曲线图异常占比»»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/异常检测曲线图异常占比",
- "originalRef": "异常检测曲线图异常占比"
- }
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«List«异常检测曲线图异常占比»»"
- },
- "ResultResp«List«风机卡片返回数据»»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/风机卡片返回数据",
- "originalRef": "风机卡片返回数据"
- }
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«List«风机卡片返回数据»»"
- },
- "ResultResp«List«风机异常概览»»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/风机异常概览",
- "originalRef": "风机异常概览"
- }
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«List«风机异常概览»»"
- },
- "ResultResp«WakeWindFarmVO»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "$ref": "#/definitions/WakeWindFarmVO",
- "originalRef": "WakeWindFarmVO"
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«WakeWindFarmVO»"
- },
- "ResultResp«传感器统计雷达图»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "$ref": "#/definitions/传感器统计雷达图",
- "originalRef": "传感器统计雷达图"
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«传感器统计雷达图»"
- },
- "ResultResp«偏航模块»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": { "$ref": "#/definitions/偏航模块", "originalRef": "偏航模块" },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«偏航模块»"
- },
- "ResultResp«变桨模块»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": { "$ref": "#/definitions/变桨模块", "originalRef": "变桨模块" },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«变桨模块»"
- },
- "ResultResp«异常检测概览页面柱状图»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "$ref": "#/definitions/异常检测概览页面柱状图",
- "originalRef": "异常检测概览页面柱状图"
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«异常检测概览页面柱状图»"
- },
- "ResultResp«模块统计雷达图»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "$ref": "#/definitions/模块统计雷达图",
- "originalRef": "模块统计雷达图"
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«模块统计雷达图»"
- },
- "ResultResp«气动性能模块»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "$ref": "#/definitions/气动性能模块",
- "originalRef": "气动性能模块"
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«气动性能模块»"
- },
- "ResultResp«热力图»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": { "$ref": "#/definitions/热力图", "originalRef": "热力图" },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«热力图»"
- },
- "ResultResp«运行模块»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": { "$ref": "#/definitions/运行模块", "originalRef": "运行模块" },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«运行模块»"
- },
- "ResultResp«风速功率模块»": {
- "type": "object",
- "properties": {
- "code": { "type": "integer", "format": "int32" },
- "data": {
- "$ref": "#/definitions/风速功率模块",
- "originalRef": "风速功率模块"
- },
- "msg": { "type": "string" },
- "status": { "type": "boolean" }
- },
- "title": "ResultResp«风速功率模块»"
- },
- "WakeTurbineVO": {
- "type": "object",
- "required": ["dateResource", "engineId", "fieldId"],
- "properties": {
- "confidentLevel": { "type": "number", "description": "检测置信度" },
- "dateResource": {
- "type": "string",
- "format": "date-time",
- "example": "2023-12-13",
- "description": "数据采集时间"
- },
- "engineId": { "type": "string", "description": "风机ID" },
- "fieldId": { "type": "string", "description": "风场ID" },
- "isWake": {
- "type": "integer",
- "format": "int32",
- "description": "是否受尾流影响(0或1)"
- },
- "turbulenceIntensity": { "type": "number", "description": "湍流强度" },
- "velocityDeficit": { "type": "number", "description": "尾流速度损失" },
- "wakeRoseDiagramPath": {
- "type": "string",
- "description": "玫瑰图 - 新增"
- },
- "wakeTurbinePath": {
- "type": "string",
- "description": "每个风机的尾流影响图"
- }
- },
- "title": "WakeTurbineVO"
- },
- "WakeWindFarmVO": {
- "type": "object",
- "properties": {
- "dataDate": {
- "type": "string",
- "format": "date-time",
- "description": "时间,以天为单位"
- },
- "fieldId": { "type": "string", "description": "风场id" },
- "getWakeTurbineList": {
- "type": "array",
- "description": "湍流尾流风场风机集合",
- "items": {
- "$ref": "#/definitions/WakeTurbineVO",
- "originalRef": "WakeTurbineVO"
- }
- },
- "id": { "type": "integer", "format": "int32", "description": "主键ID" },
- "velocityDeficitPath": {
- "type": "string",
- "description": "风场各风机速度亏损与附加湍流柱状图"
- },
- "wakeDiscriptionPath": {
- "type": "string",
- "description": "风机尾流检测结果文本描述路径"
- },
- "wakeDistributePath": {
- "type": "string",
- "description": "风场尾流影响分布图路径"
- },
- "wakeLossConfidentPath": {
- "type": "string",
- "description": "风场尾流亏损置信度散点图路径"
- },
- "wakeRoseDiagramPath": {
- "type": "string",
- "description": "玫瑰图 - 新增"
- },
- "windSpeedDistributionChart": {
- "type": "string",
- "description": "风速分布图地址 - 新增 "
- }
- },
- "title": "WakeWindFarmVO"
- },
- "传感器统计雷达图": {
- "type": "object",
- "properties": {
- "sensorAnomalyApeedCount": {
- "type": "integer",
- "format": "int32",
- "description": "转速传感器异常风机数"
- },
- "sensorAnomalyPitchCount": {
- "type": "integer",
- "format": "int32",
- "description": "变桨传感器异常风机数"
- },
- "sensorAnomalyPowerCount": {
- "type": "integer",
- "format": "int32",
- "description": "功率传感器异常风机数"
- },
- "sensorAnomalySpdTrqCount": {
- "type": "integer",
- "format": "int32",
- "description": " 转速-扭矩逻辑异常风机数"
- },
- "sensorAnomalyTorqueCount": {
- "type": "integer",
- "format": "int32",
- "description": "转矩传感器异常风机数"
- },
- "sensorAnomalyWindCount": {
- "type": "integer",
- "format": "int32",
- "description": "风速传感器异常风机数"
- },
- "sensorAnomalyWindPwrCount": {
- "type": "integer",
- "format": "int32",
- "description": "风速-功率逻辑异常风机数"
- }
- },
- "title": "传感器统计雷达图"
- },
- "偏航模块": {
- "type": "object",
- "properties": {
- "anomalyCabletwistPO": {
- "description": "扭缆角度检测器",
- "$ref": "#/definitions/AnomalyCabletwistPO",
- "originalRef": "AnomalyCabletwistPO"
- },
- "anomalyStaticyawPO": {
- "description": "偏航角度检测器",
- "$ref": "#/definitions/AnomalyStaticyawPO",
- "originalRef": "AnomalyStaticyawPO"
- }
- },
- "title": "偏航模块"
- },
- "变桨模块": {
- "type": "object",
- "properties": {
- "anomalyMinpitchPO": {
- "description": "最小桨距角检测器",
- "$ref": "#/definitions/AnomalyMinpitchPO",
- "originalRef": "AnomalyMinpitchPO"
- },
- "anomalyPitchcoordPO": {
- "description": "变桨-转速-功率检测器",
- "$ref": "#/definitions/AnomalyPitchcoordPO",
- "originalRef": "AnomalyPitchcoordPO"
- },
- "anomalyPitchregulationPO": {
- "description": "变桨检测器",
- "$ref": "#/definitions/AnomalyPitchregulationPO",
- "originalRef": "AnomalyPitchregulationPO"
- }
- },
- "title": "变桨模块"
- },
- "异常检测曲线图异常占比": {
- "type": "object",
- "properties": {
- "createTime": {
- "type": "string",
- "format": "date-time",
- "description": "时间"
- },
- "model1WindpwrPowercurveRatio": {
- "type": "number",
- "description": "模块1(风速功率)功率曲线检测器--新增"
- },
- "model1WindpwrScatterRatio": {
- "type": "number",
- "description": "模块1(风速功率)功率散点检测器比例 -- 新增"
- },
- "model2YawCabletwistRatio": {
- "type": "number",
- "description": "模块2(偏航)扭缆角度检测器--新增"
- },
- "model2YawStaticyawRatio": {
- "type": "number",
- "description": "模块2(偏航)偏航角度检测器比例--新增"
- },
- "model3PitchPitchcoordRatio": {
- "type": "number",
- "description": "模块3(变桨)变桨-转速-功率检测器--新增"
- },
- "model3PitchPitchregulationRatio": {
- "type": "number",
- "description": "模块3(变桨)变桨检测器比例--新增"
- },
- "model4CtrlparamDeloadRatio": {
- "type": "number",
- "description": "模块4(运行状态)降载检测器比例--新增"
- },
- "model4CtrlparamOperationstateRatio": {
- "type": "number",
- "description": "模块4(运行状态)机械运行状态检测器比例 -- 新增"
- },
- "model4CtrlparamPowerqualityRatio": {
- "type": "number",
- "description": "模块4(运行状态)电气功率质量检测器比例新增"
- },
- "model5AerodynamicsCpRatio": {
- "type": "number",
- "description": "模块5(气动性能)Cp检测器异常比例--新增"
- },
- "model5AerodynamicsCpTsrRatio": {
- "type": "number",
- "description": "模块5(气动性能)Cp-TSR联合分布检测器异常比例--新增"
- },
- "model5AerodynamicsTsrRatio": {
- "type": "number",
- "description": "模块5(气动性能)TSR风速分箱检测器异常比例--新增"
- }
- },
- "title": "异常检测曲线图异常占比"
- },
- "异常检测概览页面柱状图": {
- "type": "object",
- "properties": {
- "ctrlparamCount": {
- "type": "integer",
- "format": "int32",
- "description": "运行模块"
- },
- "pitchCount": {
- "type": "integer",
- "format": "int32",
- "description": "变桨模块"
- },
- "windpwrCount": {
- "type": "integer",
- "format": "int32",
- "description": "风速功率模块"
- },
- "yawCount": {
- "type": "integer",
- "format": "int32",
- "description": "偏航模块"
- }
- },
- "title": "异常检测概览页面柱状图"
- },
- "异常检测风场下风机基础参数": {
- "type": "object",
- "properties": {
- "datatime": { "type": "string", "description": "查询日期" },
- "engineId": { "type": "string", "description": "风机" },
- "fieldId": { "type": "string", "description": "风场code" },
- "timeRange": {
- "type": "integer",
- "format": "int32",
- "description": "曲线图按天数查询7/30"
- }
- },
- "title": "异常检测风场下风机基础参数"
- },
- "异常检测风场参数": {
- "type": "object",
- "properties": {
- "datatime": { "type": "string", "description": "查询日期" },
- "fieldCode": { "type": "string", "description": "风场code" }
- },
- "title": "异常检测风场参数"
- },
- "检测器热力图": {
- "type": "object",
- "properties": {
- "engineName": { "type": "string", "description": "风机名称" },
- "ifAbnorma": {
- "type": "integer",
- "format": "int32",
- "description": "是否异常"
- },
- "ratio": { "type": "number", "description": "异常比例" }
- },
- "title": "检测器热力图"
- },
- "模块统计雷达图": {
- "type": "object",
- "properties": {
- "model1Count": {
- "type": "integer",
- "format": "int32",
- "description": "风速功率 任意检测器异常"
- },
- "model2Count": {
- "type": "integer",
- "format": "int32",
- "description": "偏航 任意检测器异常 "
- },
- "model3Count": {
- "type": "integer",
- "format": "int32",
- "description": "变桨 任意检测器异常"
- },
- "model4Count": {
- "type": "integer",
- "format": "int32",
- "description": "模块4:运行状态 任意检测器异常"
- },
- "model5Count": {
- "type": "integer",
- "format": "int32",
- "description": "模块5: 气动"
- }
- },
- "title": "模块统计雷达图"
- },
- "气动性能模块": {
- "type": "object",
- "properties": {
- "anomalyCpPO": {
- "description": "Cp检测器",
- "$ref": "#/definitions/AnomalyCpPO",
- "originalRef": "AnomalyCpPO"
- },
- "anomalyCpTsrPO": {
- "description": "Cp-TSR联合分布检测器",
- "$ref": "#/definitions/AnomalyCpTsrPO",
- "originalRef": "AnomalyCpTsrPO"
- },
- "anomalyTsrPO": {
- "description": "TSR风速分箱检测器",
- "$ref": "#/definitions/AnomalyTsrPO",
- "originalRef": "AnomalyTsrPO"
- }
- },
- "title": "气动性能模块"
- },
- "热力图": {
- "type": "object",
- "properties": {
- "anomalyChartMap": {
- "type": "object",
- "description": "异常检测器map热力图",
- "additionalProperties": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/检测器热力图",
- "originalRef": "检测器热力图"
- }
- }
- },
- "anomalySensorMap": {
- "type": "object",
- "description": "传感器热力图",
- "additionalProperties": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/检测器热力图",
- "originalRef": "检测器热力图"
- }
- }
- }
- },
- "title": "热力图"
- },
- "运行模块": {
- "type": "object",
- "properties": {
- "anomalyOperationPO": {
- "description": "机械运行状态检测器",
- "$ref": "#/definitions/AnomalyOperationPO",
- "originalRef": "AnomalyOperationPO"
- },
- "anomalyPowerqualityPO": {
- "description": "电气功率质量检测器",
- "$ref": "#/definitions/AnomalyPowerqualityPO",
- "originalRef": "AnomalyPowerqualityPO"
- }
- },
- "title": "运行模块"
- },
- "风机卡片返回数据": {
- "type": "object",
- "properties": {
- "createTime": {
- "type": "string",
- "format": "date-time",
- "description": "入库时间戳 (yyyy-mm-dd hh:mm:ss)"
- },
- "engineId": { "type": "string", "description": "机组id" },
- "engineName": { "type": "string", "description": "风机名称" },
- "fieldId": { "type": "string", "description": "风场id内部编号" },
- "id": {
- "type": "integer",
- "format": "int32",
- "description": "主键编号"
- },
- "model1WindpwrAnomalyCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块1(风速功率)异常总数"
- },
- "model1WindpwrAnomalyRate": {
- "type": "number",
- "description": "模块1(风速功率)异常占比"
- },
- "model1WindpwrIsAnomaly": {
- "type": "integer",
- "format": "int32",
- "description": "模块1(风速功率)是否异常(0或1)"
- },
- "model1WindpwrNormalCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块1(风速功率)正常总数"
- },
- "model1WindpwrPowercurve": {
- "type": "integer",
- "format": "int32",
- "description": " 模块1(风速功率)功率曲线检测器是否异常(0或1)"
- },
- "model1WindpwrPowercurveRatio": {
- "type": "number",
- "description": "模块1(风速功率)功率曲线检测器--新增"
- },
- "model1WindpwrScatter": {
- "type": "integer",
- "format": "int32",
- "description": "模块1(风速功率)功率散点检测器是否异常(0或1)"
- },
- "model1WindpwrScatterRatio": {
- "type": "number",
- "description": "模块1(风速功率)功率散点检测器比例 -- 新增"
- },
- "model1WindpwrSimulink": {
- "type": "integer",
- "format": "int32",
- "description": "模块1(风速功率)simulink检测器是否异常(0或1)-- 作废"
- },
- "model2YawAnomalyCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块2(偏航)异常总数"
- },
- "model2YawAnomalyRate": {
- "type": "number",
- "description": "模块2(偏航)异常占比"
- },
- "model2YawCabletwist": {
- "type": "integer",
- "format": "int32",
- "description": "模块2(偏航)扭缆角度检测器是否异常(0或1)"
- },
- "model2YawCabletwistRatio": {
- "type": "number",
- "description": "模块2(偏航)扭缆角度检测器--新增"
- },
- "model2YawIsAnomaly": {
- "type": "integer",
- "format": "int32",
- "description": "模块2(偏航)是否异常(0或1)"
- },
- "model2YawNormalCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块2(偏航)正常总数"
- },
- "model2YawStaticyaw": {
- "type": "integer",
- "format": "int32",
- "description": "模块2(偏航)偏航角度检测器是否异常(0或1)"
- },
- "model2YawStaticyawRatio": {
- "type": "number",
- "description": "模块2(偏航)偏航角度检测器比例--新增"
- },
- "model3PitchAnomalyCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块3(变桨)异常总数"
- },
- "model3PitchAnomalyRate": {
- "type": "number",
- "description": "模块3(变桨)异常占比"
- },
- "model3PitchIsAnomaly": {
- "type": "integer",
- "format": "int32",
- "description": "模块3(变桨)是否异常(0或1)"
- },
- "model3PitchMinpitch": {
- "type": "integer",
- "format": "int32",
- "description": "模块3(变桨)最小桨距角检测器是否异常(0或1) -- 作废"
- },
- "model3PitchNormalCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块3(变桨)正常总数"
- },
- "model3PitchPitchcoord": {
- "type": "integer",
- "format": "int32",
- "description": "模块3(变桨)变桨-转速-功率检测器是否异常(0或1)"
- },
- "model3PitchPitchcoordRatio": {
- "type": "number",
- "description": "模块3(变桨)变桨-转速-功率检测器--新增"
- },
- "model3PitchPitchregulation": {
- "type": "integer",
- "format": "int32",
- "description": " 模块3(变桨)变桨检测器是否异常(0或1)"
- },
- "model3PitchPitchregulationRatio": {
- "type": "number",
- "description": "模块3(变桨)变桨检测器比例--新增"
- },
- "model4CtrlparamAnomalyCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块4(运行状态)异常总数"
- },
- "model4CtrlparamAnomalyRate": {
- "type": "number",
- "description": "模块4(运行状态)异常占比"
- },
- "model4CtrlparamDeload": {
- "type": "integer",
- "format": "int32",
- "description": "模块4(运行状态)降载检测器是否异常(0或1)新增"
- },
- "model4CtrlparamDeloadRatio": {
- "type": "number",
- "description": "模块4(运行状态)降载检测器比例--新增"
- },
- "model4CtrlparamNormalCount": {
- "type": "integer",
- "format": "int32",
- "description": " 模块4(运行状态)正常总数"
- },
- "model4CtrlparamOperationstate": {
- "type": "integer",
- "format": "int32",
- "description": "模块4(运行状态)机械运行状态检测器是否异常(0或1)"
- },
- "model4CtrlparamOperationstateRatio": {
- "type": "number",
- "description": "模块4(运行状态)机械运行状态检测器比例 -- 新增"
- },
- "model4CtrlparamPowerquality": {
- "type": "integer",
- "format": "int32",
- "description": "模块4(运行状态)电气功率质量检测器是否异常(0或1)"
- },
- "model4CtrlparamPowerqualityRatio": {
- "type": "number",
- "description": "模块4(运行状态)电气功率质量检测器比例新增"
- },
- "model4IsAnomaly": {
- "type": "integer",
- "format": "int32",
- "description": "模块4(运行状态)是否异常(0或1)"
- },
- "model5AerodynamicsAnomalyCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块5(气动性能)异常总数"
- },
- "model5AerodynamicsAnomalyRatio": {
- "type": "number",
- "description": "模块5(气动性能)异常占比"
- },
- "model5AerodynamicsCp": {
- "type": "integer",
- "format": "int32",
- "description": "模块5(气动性能)Cp检测器是否异常(0或1)"
- },
- "model5AerodynamicsCpRatio": {
- "type": "number",
- "description": "模块5(气动性能)Cp检测器异常比例--新增"
- },
- "model5AerodynamicsCpTsr": {
- "type": "integer",
- "format": "int32",
- "description": "模块5(气动性能)Cp-TSR联合分布检测器是否异常(0或1)"
- },
- "model5AerodynamicsCpTsrRatio": {
- "type": "number",
- "description": "模块5(气动性能)Cp-TSR联合分布检测器异常比例--新增"
- },
- "model5AerodynamicsNormalCount": {
- "type": "integer",
- "format": "int32",
- "description": "模块5(气动性能)正常总数"
- },
- "model5AerodynamicsTsr": {
- "type": "integer",
- "format": "int32",
- "description": "模块5(气动性能)TSR风速分箱检测器是否异常(0或1)"
- },
- "model5AerodynamicsTsrRatio": {
- "type": "number",
- "description": "模块5(气动性能)TSR风速分箱检测器异常比例--新增"
- },
- "model5IsAnomaly": {
- "type": "integer",
- "format": "int32",
- "description": "模块5(气动性能)是否异常(0或1)"
- },
- "sensorAnomalyPitch": {
- "type": "integer",
- "format": "int32",
- "description": "变桨传感器是否异常"
- },
- "sensorAnomalyPitchRatio": {
- "type": "number",
- "description": "变桨传感器是否异常比例--新增"
- },
- "sensorAnomalyPower": {
- "type": "integer",
- "format": "int32",
- "description": "功率传感器是否异常"
- },
- "sensorAnomalyPowerRatio": {
- "type": "number",
- "description": "功率传感器是否异常比例--新增"
- },
- "sensorAnomalySpdTrq": {
- "type": "integer",
- "format": "int32",
- "description": "转速-扭矩逻辑是否异常"
- },
- "sensorAnomalySpdTrqRatio": {
- "type": "number",
- "description": "转速-扭矩逻辑是否异常比例--新增"
- },
- "sensorAnomalySpeed": {
- "type": "integer",
- "format": "int32",
- "description": "转速传感器是否异常"
- },
- "sensorAnomalySpeedRatio": {
- "type": "number",
- "description": "转速传感器是否异常比例--新增"
- },
- "sensorAnomalyTorque": {
- "type": "integer",
- "format": "int32",
- "description": "转矩传感器是否异常"
- },
- "sensorAnomalyTorqueRatio": {
- "type": "number",
- "description": "转矩传感器是否异常比例--新增"
- },
- "sensorAnomalyWind": {
- "type": "integer",
- "format": "int32",
- "description": "风速传感器是否异常"
- },
- "sensorAnomalyWindPwr": {
- "type": "integer",
- "format": "int32",
- "description": "风速-功率逻辑是否异常"
- },
- "sensorAnomalyWindPwrRatio": {
- "type": "number",
- "description": "风速-功率逻辑是否异常比例--新增"
- },
- "sensorAnomalyWindRatio": {
- "type": "number",
- "description": "风速传感器是否异常比例--新增"
- },
- "sourceDatetime": {
- "type": "string",
- "format": "date-time",
- "description": "数据来源时间,以天为单位"
- }
- },
- "title": "风机卡片返回数据"
- },
- "风机异常概览": {
- "type": "object",
- "properties": {
- "detectorAnomalyCount": {
- "type": "integer",
- "format": "int32",
- "description": "检测器异常数"
- },
- "fieldId": { "type": "string" },
- "fieldName": { "type": "string" },
- "sensorAnomalyCount": {
- "type": "integer",
- "format": "int32",
- "description": "传感器异常数"
- },
- "totalAnomalyCount": {
- "type": "integer",
- "format": "int32",
- "description": "风场总异常"
- }
- },
- "title": "风机异常概览"
- },
- "风速功率模块": {
- "type": "object",
- "properties": {
- "anomalyPowercurvePO": {
- "description": "功率曲线检测器",
- "$ref": "#/definitions/AnomalyPowercurvePO",
- "originalRef": "AnomalyPowercurvePO"
- },
- "anomalyScatterPO": {
- "description": "功率散点检测器",
- "$ref": "#/definitions/AnomalyScatterPO",
- "originalRef": "AnomalyScatterPO"
- },
- "anomalySimulinkPO": {
- "description": "simulink检测器",
- "$ref": "#/definitions/AnomalySimulinkPO",
- "originalRef": "AnomalySimulinkPO"
- }
- },
- "title": "风速功率模块"
- }
- }
- }
|