123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417 |
- swagger: "2.0"
- info:
- title: SCD检测工具API
- description: <a href='/static/pc/Demo.html' target='_self'>本地窗口功能集成说明文档</a><br><br><hr><br><br>SCD检测工具接口文档。本文档仅用于本项目的前端接口说明<br><span
- style='color:red;font-size:16px;'>*****实际使用接口时,均需要将用户登录token通过header进行提交*****</span>
- version: 1.0.0
- contact:
- email: 3116246@qq.com
- basePath: api
- paths:
- /area/children/list:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取指定获取的下级区域列表
- description: 获取指定获取的下级区域列表
- parameters:
- - in: query
- name: id
- description: 查询条件:区域ID
- required: true
- type: string
- - in: query
- name: all
- description: 查询条件:是否获取全部子区域。1表示是,反之表示否。默认为0
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /area/tree:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取区域列表
- description: 获取区域列表。以tree结构形式返回。
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/cfg/delete:
- post:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 删除指定的数据及附件自动清理配置
- description: 删除指定的数据及附件自动清理配置
- parameters:
- - in: formData
- name: id
- description: 配置记录id
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/cfg/list:
- get:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 获取数据及附件自动清理配置列表
- description: 获取数据及附件自动清理配置列表
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/cfg/one:
- get:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 获取指定的数据及附件自动清理配置
- description: 获取指定的数据及附件自动清理配置
- parameters:
- - in: query
- name: id
- description: 配置记录id。
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/cfg/save:
- post:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 保存数据及附件自动清理配置
- description: 保存数据及附件自动清理配置
- parameters:
- - in: formData
- name: id
- description: 配置记录id。不为0时表示编辑保存
- required: true
- type: integer
- format: int64
- - in: formData
- name: name
- description: 配置名称
- required: true
- type: string
- - in: formData
- name: skeepday
- description: 数据及附件保留的天数
- required: true
- type: integer
- format: int64
- - in: formData
- name: tablename
- description: 数据模型名称
- required: true
- type: string
- - in: formData
- name: colname
- description: 数据模型中的记录创建日期列名
- required: true
- type: string
- - in: formData
- name: filterwhere
- description: 数据过滤条件。支持SQL语法
- type: string
- - in: formData
- name: memo
- description: 配置说明
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/delete:
- post:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 删除附件
- description: 删除指定的附件
- parameters:
- - in: formData
- name: id
- description: 需要删除的附件id。
- required: true
- type: integer
- format: int64
- - in: formData
- name: ids
- description: 需要删除的附件id。多个附件id使用逗号分隔。
- required: true
- type: string
- - in: formData
- name: scd_id
- description: SCD文件ID。不为空时表示删除该SCD关联的文件
- type: integer
- format: int64
- - in: formData
- name: check_flag
- description: 是否是管控文件。1表示是,否则表示为否
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/download:
- post:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 下载附件
- description: 查询附件列表
- parameters:
- - in: formData
- name: ids
- description: 需要下载的附件id。多个附件id使用逗号分隔。
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/download/rec:
- post:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 查询指定附件下载历史记录
- description: 查询指定附件下载历史记录。(预留)
- parameters:
- - in: query
- name: id
- description: 附件id。
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/list:
- get:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 查询附件列表
- description: 查询附件列表
- parameters:
- - in: query
- name: pageindex
- description: 当前查询的分页页码,默认为1
- required: true
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示的数据条数,默认为20
- required: true
- type: integer
- format: int64
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: integer
- format: int64
- - in: query
- name: scd_id
- description: SCD文件ID
- type: integer
- format: int64
- - in: query
- name: is_checkin
- description: 是否管控文档。0 其他文件 1 管控文件 2 裁剪文件
- type: integer
- format: int64
- - in: query
- name: name
- description: 附件名称
- type: string
- - in: query
- name: ied_name
- description: 装置名称
- type: string
- - in: query
- name: type
- description: 文件类别ID
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/one:
- get:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 根据id获取附件信息
- description: 根据id获取附件信息
- parameters:
- - in: query
- name: id
- description: 附件ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/scdparse/start:
- post:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 重新解析指定的SCD文件
- description: 重新解析指定的SCD文件
- parameters:
- - in: formData
- name: station_id
- description: 变电站ID
- required: true
- type: integer
- format: int64
- - in: formData
- name: scd_name
- description: SCD文件名称
- required: true
- type: string
- - in: formData
- name: scd_path
- description: SCD附件路径
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /attachment/stat:
- get:
- tags:
- - scd_check_tools/controllersStatController
- summary: SCD文档分类统计
- description: SCD文档分类统计
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- type: integer
- format: int64
- responses:
- "200":
- description: 错误
- schema:
- $ref: '#/definitions/ResultError'
- "500":
- description: status 失败
- /basic_area/del:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 删除指定区域信息
- description: 删除指定区域信息
- parameters:
- - in: query
- name: id
- description: 区域ID。
- required: true
- type: integer
- format: int64
- - in: query
- name: isall
- description: 是否同时删除所有下级区域。1为是,反之为否。默认为否
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /basic_area/getchildrencount:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 查询指定区域的下级区域数量
- description: 查询指定区域的下级区域数量
- parameters:
- - in: query
- name: pid
- description: 查询条件:父级区域ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /basic_area/list:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 根据查询条件搜索区域列表
- description: 根据查询条件搜索区域列表
- parameters:
- - in: query
- name: pageindex
- description: 当前查询的分页页码,默认为1
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示的数据条数,默认为20
- type: integer
- format: int64
- - in: query
- name: name
- description: 查询条件:区域名称。模糊匹配
- type: string
- - in: query
- name: id
- description: 查询条件:区域ID
- type: integer
- format: int64
- - in: query
- name: pid
- description: 查询条件:父级区域ID
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /basic_area/save:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 保存区域信息
- description: 保存区域信息
- parameters:
- - in: query
- name: id
- description: 区域ID。编辑时必填。
- required: true
- type: integer
- format: int64
- - in: query
- name: pid
- description: 父级区域ID
- required: true
- type: integer
- format: int64
- - in: query
- name: area_type
- description: 区域类型
- required: true
- type: integer
- format: int64
- - in: query
- name: area_name
- description: 区域名称
- required: true
- type: string
- - in: query
- name: area_addr
- description: 区域地址
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /code/tree:
- get:
- tags:
- - scd_check_tools/controllersApiController
- /createuser:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 创建用户
- description: 查询用户信息
- parameters:
- - in: query
- name: userid
- description: 用户ID
- required: true
- type: integer
- format: int64
- - in: query
- name: role
- description: 角色ID
- required: true
- type: integer
- format: int64
- - in: query
- name: username
- description: 姓名
- required: true
- type: string
- - in: query
- name: account
- description: 登录帐号
- required: true
- type: string
- - in: query
- name: password
- description: 登录密码
- required: true
- type: string
- - in: query
- name: mobilephone
- description: 手机号
- type: string
- - in: query
- name: pwd_expire
- description: 密码过期日期
- type: string
- - in: query
- name: bind_ips
- description: 允许登录的IP
- type: string
- - in: query
- name: datelimit_start
- description: 帐号有效期开始日期
- type: string
- - in: query
- name: datelimit_end
- description: 帐号有效期结束日期
- type: string
- - in: query
- name: memo
- description: 其他说明
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /db/backup/del:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 删除指定的数据备份
- description: 删除指定的数据备份
- parameters:
- - in: query
- name: id
- description: 备份记录ID
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /db/backup/list:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取数据备份列表
- description: 获取数据备份列表
- parameters:
- - in: query
- name: pageindex
- description: 当前查询的分页页码,默认为1
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示的数据条数,默认为20
- type: integer
- format: int64
- - in: query
- name: enddate
- description: 备份结束日期
- type: string
- - in: query
- name: startdate
- description: 备份开始日期
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /db/backup/new:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 创建新数据备份
- description: 创建新数据备份
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /db/backup/recover:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 数据还原
- description: 还原指定的数据备份
- parameters:
- - in: query
- name: id
- description: 备份记录ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /deleteGlobalcode:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 删除指定系统字典定义
- description: 根据字典编码或ID删除指定系统字典定义
- parameters:
- - in: query
- name: code
- description: 系统字典编码
- type: string
- - in: query
- name: id
- description: 系统字典ID
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /doc/stat/1:
- get:
- tags:
- - scd_check_tools/controllersStatController
- summary: 资料完整度统计
- description: 资料完整度统计
- parameters:
- - in: query
- name: id
- description: 区域ID
- type: integer
- format: int64
- responses:
- "200":
- description: 错误
- schema:
- $ref: '#/definitions/ResultError'
- "500":
- description: status 失败
- /flow/cnf/deleteuser:
- post:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 删除指定流程的节点人员配置信息
- description: 删除指定流程的节点人员配置信息
- parameters:
- - in: formData
- name: user_id
- description: 节点已分配的人员ID
- required: true
- type: string
- - in: formData
- name: node_inst_id
- description: 节点与人员的分配记录ID
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /flow/cnf/getinfo:
- get:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 获取流程配置信息
- description: 获取流程配置信息
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: string
- - in: query
- name: flow_type
- description: 流程类型。值为:3(SCD签入)、4(SCD签出)之一
- type: string
- - in: query
- name: userfilter
- description: 是否需要根据当前登录人员进行节点过滤,为1表示需要,主要用于流转时获取节点列表;否则为获取全节点,主要用于后台配置
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /flow/getlastoutworkbook:
- get:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 获取指定站最新签出流程详细信息
- description: 获取指定站最新签出流程详细信息
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /flow/lock/list:
- get:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 获取指定站的锁定流程记录列表
- description: 获取指定站的锁定流程记录列表
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /flow/node/getdata:
- get:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 获取指节点的详细数据
- description: 获取指节点的详细数据
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: string
- - in: query
- name: node_code
- description: 节点编号。值为:checkinstart 编制,checkincheck 校验,checkinaudit 审核,checkinend
- 发布,checkoutstart 签出,checkoutcheck 校核,checkoutend 审核之一
- required: true
- type: string
- - in: query
- name: flow_run_id
- description: 流程ID
- required: true
- type: integer
- format: int64
- - in: query
- name: flow_type
- description: 流程类型,值为:3(SCD签入)、4(SCD签出)之一
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /flow/node/refuser:
- post:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 保存流程配置信息
- description: 保存流程配置信息
- parameters:
- - in: formData
- name: station_id
- description: 变电站ID
- required: true
- type: string
- - in: formData
- name: node_id
- description: 节点编号ID
- required: true
- type: string
- - in: formData
- name: user_ids
- description: 有该节点权限的人员ID列表,多个ID之间用逗号分隔
- required: true
- type: string
- - in: formData
- name: node_inst_id
- description: 节点与人员的分配记录ID
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /flow/run/list:
- get:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 获取指定站的签入签出流程记录列表
- description: 获取指定站的签入签出流程记录列表
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: string
- - in: query
- name: pageno
- description: 当前页码,默认为1
- required: true
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页记录条数,默认为20
- required: true
- type: integer
- format: int64
- - in: query
- name: dt1
- description: 查询条件:开始日期
- type: string
- - in: query
- name: dt2
- description: 查询条件:结束日期
- type: string
- - in: query
- name: name
- description: 查询条件:SCD名称。模糊匹配
- type: string
- - in: query
- name: flowtype
- description: 查询条件:流程类型,值为:3(SCD签入)、4(SCD签出)之一
- type: string
- - in: query
- name: flowstate
- description: 查询条件:流程状态,值为:0 处理中 1 结束 2 驳回之一
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /flow/run/nodedeal/save:
- post:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 保存指定站的签入签出节点信息
- description: 保存指定站的签入签出节点信息
- parameters:
- - in: formData
- name: station_id
- description: 变电站ID
- required: true
- type: string
- - in: formData
- name: node_code
- description: 节点编号。值为:checkinstart 编制,checkincheck 校验,checkinaudit 审核,checkinend
- 发布,checkoutstart 签出,checkoutcheck 校核,checkoutend 审核之一
- required: true
- type: string
- - in: formData
- name: content
- description: 节点填录的所有信息,为JSON对象序列化后的字符串。
- required: true
- type: string
- - in: formData
- name: flow_run_id
- description: 流程ID
- required: true
- type: integer
- format: int64
- - in: formData
- name: opt
- description: 操作类型。1 通过 0 驳回
- type: string
- - in: formData
- name: flow_type
- description: 流程类型,值为:3(SCD签入)、4(SCD签出)之一
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /flow/stat/list:
- get:
- tags:
- - scd_check_tools/controllersStatController
- summary: SCD签入签出统计
- description: SCD签入签出统计
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- type: integer
- format: int64
- responses:
- "200":
- description: 错误
- schema:
- $ref: '#/definitions/ResultError'
- "500":
- description: status 失败
- /get_menu_tree:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取角色的已分配资源ID列表
- description: 获取角色的已分配资源ID列表
- parameters:
- - in: query
- name: roleid
- description: 角色ID
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /getGlobalChildrenCode:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取指定系统字典的下级字典码定义
- description: 获取指定系统字典的下级字典码定义
- parameters:
- - in: query
- name: code
- description: 未指定code时,将返回根字典下的子字典定义列表。
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /getGlobalCode:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 查询系统字典列表
- description: 查询系统字典列表
- parameters:
- - in: query
- name: pageindex
- description: 当前查询的页码。默认为1
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示的数据记录数,默认为20
- type: integer
- format: int64
- - in: query
- name: pcode
- description: 查询条件:指定的父级字典码
- type: string
- - in: query
- name: code
- description: 查询条件:指定的字典码
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /getGlobalCode/byid:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 根据id获取字典定义
- description: 根据id获取字典定义
- parameters:
- - in: query
- name: id
- description: 系统字典码ID
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /getRoleFuncList:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取指定角色的功能点列表
- description: 获取指定角色的功能点列表
- parameters:
- - in: query
- name: roleid
- description: 角色ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /getSysParamList:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取全部或者指定的系统参数列表
- description: 获取全部或者指定的系统参数列表
- parameters:
- - in: query
- name: param_name
- description: 参数名
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /getSyslogList:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 查询操作日志列表
- description: 查询操作日志列表
- parameters:
- - in: query
- name: pageindex
- description: 当前查询页码。默认为1
- required: true
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示数据条数。默认20
- required: true
- type: integer
- format: int64
- - in: query
- name: enddate
- description: 查询条件:结束日期
- type: string
- - in: query
- name: startdate
- description: 查询条件:开始日期
- type: string
- - in: query
- name: description
- description: 查询条件:日志内容。模糊匹配
- type: string
- - in: query
- name: staff
- description: 查询条件:操作人姓名。模糊匹配
- type: string
- - in: query
- name: ip
- description: 查询条件:操作IP地址。模糊匹配
- type: string
- - in: query
- name: success
- description: '查询条件:操作结果。关联系统字典log_optresult。0: 失败 1:成功'
- type: integer
- format: int64
- - in: query
- name: opttype
- description: 查询条件:操作类型。关联系统字典log_opttype。
- type: integer
- format: int64
- - in: query
- name: audittype
- description: 查询条件:审计类型。关联系统字典log_audittype。
- type: integer
- format: int64
- - in: query
- name: eventtype
- description: 查询条件:事件类型。关联系统字典log_eventtype。
- type: integer
- format: int64
- - in: query
- name: eventlevel
- description: 查询条件:事件等级。关联系统字典log_eventlevel。
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /getUser:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 查询指定用户的详细信息
- description: 查询用户信息
- parameters:
- - in: query
- name: id
- description: 用户ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /getUserAreaList:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取指定用户所管理的区域列表
- description: 获取指定用户所管理的区域列表
- parameters:
- - in: query
- name: userid
- description: 用户ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /getUserPrivList:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 指定用户的功能列表
- description: 指定用户的功能列表。非RBAC模式下有效
- parameters:
- - in: query
- name: id
- description: 用户ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /getVersion:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取当前程序版本
- description: 获取当前程序版本
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /ied/stat:
- get:
- tags:
- - scd_check_tools/controllersStatController
- summary: SCD装置分类统计
- description: SCD装置分类统计
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- type: integer
- format: int64
- responses:
- "200":
- description: 错误
- schema:
- $ref: '#/definitions/ResultError'
- "500":
- description: status 失败
- /keep-alive:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 客户端心跳
- description: 客户端心跳保持,由浏览器或客户端发起请求,以表示其还处于使用中
- responses:
- "200":
- description: status 成功
- "500":
- description: status 失败
- /log/backup:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 操作日志备份
- description: 操作日志备份
- parameters:
- - in: query
- name: enddate
- description: 备份结束日期
- type: string
- - in: query
- name: startdate
- description: 备份开始日期
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /log/backup/del:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 操作日志备份删除
- description: 操作日志备份删除
- parameters:
- - in: query
- name: id
- description: 备份记录ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /log/backup/list:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取操作日志备份列表
- description: 获取操作日志备份列表
- parameters:
- - in: query
- name: pageindex
- description: 当前查询的分页页码,默认为1
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示的数据条数,默认为20
- type: integer
- format: int64
- - in: query
- name: enddate
- description: 备份结束日期
- type: string
- - in: query
- name: startdate
- description: 备份开始日期
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /log/chartstat:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 操作日志分类(图形)统计
- description: 操作日志分类(图形)统计
- parameters:
- - in: query
- name: enddate
- description: 统计条件:结束日期
- type: string
- - in: query
- name: startdate
- description: 统计条件:开始日期
- type: string
- - in: query
- name: description
- description: 统计条件:日志内容。模糊匹配
- type: string
- - in: query
- name: staff
- description: 统计条件:操作人姓名。模糊匹配
- type: string
- - in: query
- name: ip
- description: 统计条件:操作IP地址。模糊匹配
- type: string
- - in: query
- name: success
- description: '统计条件:操作结果。关联系统字典log_optresult。0: 失败 1:成功'
- type: integer
- format: int64
- - in: query
- name: opttype
- description: 统计条件:操作类型。关联系统字典log_opttype。
- type: integer
- format: int64
- - in: query
- name: audittype
- description: 统计条件:审计类型。关联系统字典log_audittype。
- type: integer
- format: int64
- - in: query
- name: eventtype
- description: 统计条件:事件类型。关联系统字典log_eventtype。
- type: integer
- format: int64
- - in: query
- name: eventlevel
- description: 统计条件:事件等级。关联系统字典log_eventlevel。
- type: integer
- format: int64
- - in: query
- name: cycletype
- description: 统计周期。值列表为:year,month,day,hour,week,默认为hour。
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /log/datastat:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 操作日志分类(数据列表)统计
- description: 操作日志分类(数据列表)统计
- parameters:
- - in: query
- name: enddate
- description: 统计条件:结束日期
- type: integer
- format: int64
- - in: query
- name: startdate
- description: 统计条件:开始日期
- type: integer
- format: int64
- - in: query
- name: description
- description: 统计条件:日志内容。模糊匹配
- type: integer
- format: int64
- - in: query
- name: staff
- description: 统计条件:操作人姓名。模糊匹配
- type: string
- - in: query
- name: ip
- description: 统计条件:操作IP地址。模糊匹配
- type: string
- - in: query
- name: success
- description: '统计条件:操作结果。关联系统字典log_optresult。0: 失败 1:成功'
- type: integer
- format: int64
- - in: query
- name: opttype
- description: 统计条件:操作类型。关联系统字典log_opttype。
- type: integer
- format: int64
- - in: query
- name: audittype
- description: 统计条件:审计类型。关联系统字典log_audittype。
- type: integer
- format: int64
- - in: query
- name: eventtype
- description: 统计条件:事件类型。关联系统字典log_eventtype。
- type: integer
- format: int64
- - in: query
- name: eventlevel
- description: 统计条件:事件等级。关联系统字典log_eventlevel。
- type: integer
- format: int64
- - in: query
- name: stattype
- description: 统计类型。值为:logtype或者空。
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /log/runtime_log:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取当前的服务器运行日志
- description: 获取当前的服务器运行日志。每次获取10Kb的日志内容,第一次获取时默认为0,继续获取时需要将上次的最大位置传给offset参数。
- parameters:
- - in: query
- name: offset
- description: 获取的日志起始字节位置。
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /login:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 登录
- description: 登录系统。系统会返回当前用户的相关信息,如基本信息、token等
- parameters:
- - in: query
- name: login_account
- description: 用户帐号
- required: true
- type: string
- - in: query
- name: pwd
- description: 用户密码
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /logout:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 登出
- description: 登出系统。系统会自动清理当前用户的相关信息,如缓存、token等
- parameters:
- - in: query
- name: sessionid
- description: 用户token码
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /net/video/play:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 视频播放
- /notice/info:
- get:
- tags:
- - scd_check_tools/controllersNoticeController
- summary: 获取指定通知提醒详细信息
- description: 获取指定通知提醒详细信息
- parameters:
- - in: query
- name: id
- description: 通知提醒记录ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /notice/list:
- get:
- tags:
- - scd_check_tools/controllersNoticeController
- summary: 获取指定站的通知提醒列表
- description: 获取指定站的通知提醒列表
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: string
- - in: query
- name: pageno
- description: 当前页码。默认为1
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示记录数。默认为20
- type: integer
- format: int64
- - in: query
- name: isread
- description: 是否已读。0 未读或1 已读
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /notice/read:
- post:
- tags:
- - scd_check_tools/controllersNoticeController
- summary: 设置指定通知提醒为已读
- description: 设置指定通知提醒为已读
- parameters:
- - in: formData
- name: id
- description: 通知提醒记录ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /playWav:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 语音播放
- description: 语音播放
- operationId: ApiController.语音播放
- parameters:
- - in: query
- name: filename
- description: 文件名称
- type: string
- responses:
- "200":
- description: status 成功
- "500":
- description: status 失败
- /record/delete:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 删除指定模型的某条数据记录
- description: 删除指定模型的某条数据记录
- parameters:
- - in: query
- name: tablename
- description: 数据模型名称
- required: true
- type: string
- - in: query
- name: id
- description: 数据记录ID
- required: true
- type: string
- - in: query
- name: primaryfield
- description: 数据记录ID列名。默认为id
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /record/get:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取指定模型的某条数据记录
- description: 获取指定模型的某条数据记录
- parameters:
- - in: query
- name: tablename
- description: 数据模型名称
- required: true
- type: string
- - in: query
- name: id
- description: 数据记录ID
- required: true
- type: string
- - in: query
- name: primaryfield
- description: 数据记录ID列名。默认为id
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /resetUserPwd:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 修改自己密码
- description: 修改密码。只能修改自己的密码
- parameters:
- - in: query
- name: newpwd
- description: 原密码
- required: true
- type: integer
- format: int64
- - in: query
- name: oldpwd
- description: 新密码
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /saveGlobalcode:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 保存系统字典
- description: 保存系统字典
- parameters:
- - in: query
- name: name
- description: 系统字典名称
- required: true
- type: string
- - in: query
- name: parentcode
- description: 上级系统字典编码
- required: true
- type: string
- - in: query
- name: code
- description: 系统字典编码
- required: true
- type: string
- - in: query
- name: id
- description: 系统字典ID
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /saveRoleFunc:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 保存指定角色的功能点列表
- description: 保存指定角色的功能点列表
- parameters:
- - in: query
- name: roleid
- description: 角色ID
- required: true
- type: integer
- format: int64
- - in: query
- name: areaid
- description: 区域列表。JSON串,格式如:[{id:区域ID,allchecked:all|空}]
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /saveSysParam:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 保存系统参数
- description: 保存系统参数
- parameters:
- - in: query
- name: param_name
- description: 参数缟编码
- type: string
- - in: query
- name: param_value
- description: 参数值
- type: string
- - in: query
- name: param_memo
- description: 参数描述
- type: string
- responses:
- "200":
- description: 错误
- schema:
- $ref: '#/definitions/ResultError'
- "500":
- description: status 失败
- /saveUser:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 保存用户信息(已废弃)
- /saveUserAreaList:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 保存指定用户所管理的区域列表
- description: 保存指定用户所管理的区域列表
- parameters:
- - in: query
- name: userid
- description: 用户ID
- required: true
- type: integer
- format: int64
- - in: query
- name: areaid
- description: 区域列表。JSON串,格式如:[{id:区域ID,allchecked:all|空}]
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /saveUserPrivList:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 保存指定用户的功能列表
- description: 保存指定用户的功能列表。非RBAC模式下有效
- parameters:
- - in: query
- name: id
- description: 用户ID
- required: true
- type: integer
- format: int64
- - in: query
- name: privids
- description: 功能ID列表,使用逗号分隔
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /scd/area/edit_voltage_level:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 修改指定间隔的所属电压等级
- description: 修改指定间隔的所属电压等级
- parameters:
- - in: query
- name: voltagelevel
- description: 电压等级ID
- required: true
- type: integer
- format: int64
- - in: query
- name: area_id
- description: 间隔ID
- required: true
- type: integer
- format: int64
- /scd/area/editname:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 修改指定间隔的名称信息
- description: 修改指定间隔的名称信息
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: area_id
- description: 间隔ID
- required: true
- type: integer
- format: int64
- - in: query
- name: name
- description: 间隔名称
- required: true
- type: string
- /scd/area/ied/list:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定间隔下的IED信息
- description: 获取指定间隔下的IED信息
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: voltage_level_id
- description: 电压等级ID
- type: integer
- format: int64
- - in: query
- name: area_id
- description: 间隔ID
- type: integer
- format: int64
- - in: query
- name: device_type_id
- description: 装置类型ID。关联系统字典:device_type
- type: string
- /scd/area/list:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定scd下的间隔信息
- description: 获取指定scd下的间隔信息
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: voltage_level_id
- description: 电压等级ID
- type: integer
- format: int64
- /scd/check/resultlist:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定SCD的校验结果
- description: 获取指定SCD的校验结果
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: pageno
- description: 当前页码。默认为1
- required: true
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页数据记录条数。默认为20
- required: true
- type: integer
- format: int64
- - in: query
- name: scd_name
- description: SCD文件名称
- type: string
- - in: query
- name: scd_path
- description: SCD文件名称
- type: string
- - in: query
- name: level
- description: 校验错误级别
- type: string
- - in: query
- name: ied_name
- description: IED装置名称
- type: string
- - in: query
- name: node_name
- description: 节点名称
- type: string
- - in: query
- name: node_id
- description: 节点ID
- type: string
- /scd/check/stat/level:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 按校验错误等级统计校验结果
- description: 按校验错误等级统计校验结果
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: scd_name
- description: SCD文件名称
- type: string
- - in: query
- name: scd_path
- description: SCD文件名称
- type: string
- - in: query
- name: ied_name
- description: IED装置名称
- type: string
- - in: query
- name: node_name
- description: 节点名称
- type: string
- - in: query
- name: node_id
- description: 节点ID
- type: string
- /scd/check/sum/result:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定SCD的汇总统计结果
- description: 获取指定SCD的汇总统计结果
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- /scd/ied/editarea:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 修改指定装置的所属间隔
- description: 修改指定装置的所属间隔
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- - in: query
- name: area_id
- description: 间隔ID
- required: true
- type: integer
- format: int64
- /scd/ied/typelist:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定SCD下的IED类型信息
- description: 获取指定SCD下的IED类型信息
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- /scd_check_tools/checkin/detail:
- get:
- tags:
- - scd_check_tools/controllersFlowController
- summary: 获取指定站的指定scd的签入详情
- description: 获取指定站的指定scd的签入详情
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: string
- - in: query
- name: scd_name
- description: SCD名称
- type: string
- - in: query
- name: scd_path
- description: SCD文件路径
- type: string
- - in: query
- name: scd_id
- description: SCD文件ID。为空时scd_name和scd_path必填
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /scd_check_tools/comp/iedstat/type:
- get:
- tags:
- - scd_check_tools/controllersScdCompController
- summary: 指定装置差异对比结果分类统计
- description: 指定装置差异对比结果分类统计
- parameters:
- - in: query
- name: comp_id
- description: 差异比对记录ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- type: string
- - in: query
- name: comptype
- description: 差异类别。值为:i|d|u之一
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/comp/list:
- get:
- tags:
- - scd_check_tools/controllersScdCompController
- summary: 获取指定变电站的差异对比记录列表
- description: 获取指定变电站的差异对比记录列表
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/comp/result:
- get:
- tags:
- - scd_check_tools/controllersScdCompController
- summary: 获取指定差异对比的详细结果列表
- description: 获取指定差异对比的详细结果列表
- parameters:
- - in: query
- name: comp_id
- description: 差异比对记录ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- type: string
- - in: query
- name: itemcode
- description: 差异对象类型代码
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/comp/start:
- post:
- tags:
- - scd_check_tools/controllersScdCompController
- summary: 开始scd差异对比
- description: 开始scd差异对比
- parameters:
- - in: query
- name: type
- description: 对比的文件类型。值为scd\ccd\cid\ccd_cid_scd\icd_scd之一。
- required: true
- type: string
- - in: query
- name: comp_id
- description: 差异比对记录ID。不为空或0时表示重新比对差异
- type: integer
- format: int64
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: integer
- format: int64
- - in: query
- name: source_scd_id
- description: 对比的基准SCD文件ID。type为scd时必填。
- type: integer
- format: int64
- - in: query
- name: target_scd_id
- description: 对比的参照SCD文件ID。type为scd时必填。
- type: integer
- format: int64
- - in: query
- name: ids
- description: 如果是2个非SCD对比文件时,需要对比的文件ID列表,使用逗号分隔。仅当type为ccd\cid\ccd_cid_scd\icd_scd时有效
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/comp/stat/result:
- get:
- tags:
- - scd_check_tools/controllersScdCompController
- summary: 获取scd差异对比结果概览统计
- description: 获取scd差异对比结果概览统计
- parameters:
- - in: query
- name: comp_id
- description: 差异比对记录ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/comp/tree:
- get:
- tags:
- - scd_check_tools/controllersScdCompController
- summary: 获取SCD校验对象树
- description: 获取SCD校验对象树
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: id
- description: 对象ID
- type: integer
- format: int64
- - in: query
- name: pid
- description: 上级对象ID
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/rule/list:
- get:
- tags:
- - scd_check_tools/controllersRuleController
- summary: 获取校验规则列表
- description: 获取校验规则列表
- parameters:
- - in: query
- name: pageindex
- description: 当前页码。默认为1
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示记录数。默认为20
- type: integer
- format: int64
- - in: query
- name: id
- description: 规则ID
- type: integer
- format: int64
- - in: query
- name: enable
- description: 是否启用。默认为全部
- type: integer
- format: int64
- - in: query
- name: object_name
- description: 规则的对象名称
- type: string
- - in: query
- name: object_type
- description: 规则的对象分类
- type: integer
- format: int64
- - in: query
- name: alert_level
- description: 规则的告警级别。值为error\alert\hint之一。
- type: string
- - in: query
- name: apply_standard
- description: 规则标准
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/rule/remove:
- post:
- tags:
- - scd_check_tools/controllersRuleController
- summary: 删除校验规则
- description: 删除校验规则
- parameters:
- - in: formData
- name: id
- description: 规则ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/rule/reset:
- post:
- tags:
- - scd_check_tools/controllersRuleController
- summary: 重新校验指定scd
- description: 重新校验指定scd
- parameters:
- - in: formData
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/rule/save:
- post:
- tags:
- - scd_check_tools/controllersRuleController
- summary: 保存校验规则
- description: 保存校验规则
- parameters:
- - in: formData
- name: id
- description: 规则ID。不为0时表示编辑
- type: integer
- format: int64
- - in: formData
- name: enable
- description: 是否启用。默认为全部
- type: integer
- format: int64
- - in: formData
- name: object_name
- description: 规则的对象名称
- type: string
- - in: formData
- name: object_type
- description: 规则的对象分类
- type: integer
- format: int64
- - in: formData
- name: alert_level
- description: 规则的告警级别。值为error\alert\hint之一。
- type: string
- - in: formData
- name: apply_standard
- description: 规则标准
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: status 失败
- /scd_check_tools/stat/right:
- get:
- tags:
- - scd_check_tools/controllersStatController
- summary: scd正确性分析
- description: scd正确性分析
- parameters:
- - in: query
- name: station_id
- description: 变电站ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 错误
- schema:
- $ref: '#/definitions/ResultError'
- "500":
- description: status 失败
- /screen/scd/agin_parse:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 重新解析指定scd
- description: 重新解析指定scd
- parameters:
- - in: formData
- name: scd_id
- description: SCD ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /screen/scd/checktools/tree:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定scd校验类型树
- description: 获取指定scd校验类型树
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: id
- description: 节点ID
- required: true
- type: integer
- format: int64
- - in: query
- name: pid
- description: 父节点ID
- required: true
- type: integer
- format: int64
- - in: query
- name: datatype
- description: 节点类型
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /screen/scd/crc:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定scd的crc校验结果
- description: 获取指定scd的crc校验结果
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- /screen/scd/delete:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 删除指定scd数据
- description: 删除指定scd数据
- parameters:
- - in: formData
- name: id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /screen/scd/ied/ctrlblock:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的控制块信息
- description: 获取指定IED的控制块信息
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- /screen/scd/ied/dingzhi:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的定值条目
- description: 获取指定IED的定值条目
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: IED装置名称
- required: true
- type: string
- /screen/scd/ied/goose_ctrlblock/receive:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的接收GOOSE控制块端子列表
- description: 获取指定IED的接收GOOSE控制块端子列表
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- /screen/scd/ied/goose_ctrlblock/sendfcdalist:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的指定GOOSE控制块端子列表
- description: 获取指定IED的指定GOOSE控制块端子列表
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- - in: query
- name: ctrlid
- description: GOOSE控制块ID
- required: true
- type: integer
- format: int64
- /screen/scd/ied/inputs:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取IED的虚端子关系
- description: 获取IED的虚端子关系
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 主装置名称
- required: true
- type: string
- - in: query
- name: m_ied_name
- description: 输出IED装置名称
- required: true
- type: string
- - in: query
- name: s_ied_name
- description: 输入IED装置名称
- required: true
- type: string
- - in: query
- name: m_ctrlid
- description: 输出控制块ID
- required: true
- type: string
- - in: query
- name: s_ctrlid
- description: 输入控制块ID
- required: true
- type: string
- /screen/scd/ied/netaddr:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取SCD中配置的所有设备网络地址
- description: 获取SCD中配置的所有设备网络地址
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- /screen/scd/ied/network/info:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取IED网络配置信息
- description: 获取IED网络配置信息
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- /screen/scd/ied/pointtable:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的信息点表
- description: 获取指定IED的定值条目
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: IED装置名称
- required: true
- type: string
- /screen/scd/ied/ref/ctrlblock:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的关联IED控制块信息
- description: 获取指定IED的关联IED控制块信息
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- /screen/scd/ied/relation:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取IED关联关系
- description: 获取IED关联关系
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- /screen/scd/ied/smv_ctrlblock/receive:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的接收SMV控制块端子列表
- description: 获取指定IED的接收SMV控制块端子列表
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- /screen/scd/ied/smv_ctrlblock/sendfcdalist:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的指定SMV控制块端子列表
- description: 获取指定IED的指定SMV控制块端子列表
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: 装置名称
- required: true
- type: string
- - in: query
- name: ctrlid
- description: SMV控制块ID
- required: true
- type: integer
- format: int64
- /screen/scd/ied/sourcexml:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定IED的源XML
- description: 获取指定IED的源XML
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: IED装置名称
- required: true
- type: string
- /screen/scd/info:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取scd详细信息
- description: 获取scd详细信息
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: scdname
- description: SCD名称
- type: string
- - in: query
- name: scdpath
- description: SCD路径
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /screen/scd/ldevice/list:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定accessPoint下的Ldevice节点列表
- description: 获取指定accessPoint下的Ldevice节点列表
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: accessPointId
- description: 访问点ID
- required: true
- type: integer
- format: int64
- /screen/scd/line/sourcexml:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取指定行号的源XML
- description: 获取指定行号的源XML,每次获取指定行的前后各100行源数据
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: lineno
- description: 行号
- required: true
- type: integer
- format: int64
- /screen/scd/list:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取scd列表
- description: 获取scd列表
- parameters:
- - in: query
- name: stationid
- description: 变电站ID
- required: true
- type: integer
- format: int64
- - in: query
- name: pageno
- description: 当前页码。默认为1
- required: true
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示数据数。默认为50
- required: true
- type: integer
- format: int64
- - in: query
- name: name
- description: SCD名称
- type: string
- - in: query
- name: enable
- description: 是否在运版SCD
- type: integer
- format: int64
- - in: query
- name: ischeckinscd
- description: 是否管控scd
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /screen/scd/node/attrs:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取scd节点属性
- description: 获取scd节点属性
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: node_id
- description: SCD节点ID
- required: true
- type: integer
- format: int64
- - in: query
- name: ied_name
- description: SCD装置名称
- type: string
- /screen/scd/node/children/stat:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 统计指定节点的下级节点类型及数量
- description: 统计指定节点的下级节点类型及数量
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: node_id
- description: SCD节点ID
- required: true
- type: integer
- format: int64
- /screen/scd/node/list:
- get:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 获取scd节点列表
- description: 获取scd节点列表
- parameters:
- - in: query
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: query
- name: pageno
- description: 当前页码。默认为1
- required: true
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页的数据条数。默认为20
- required: true
- type: integer
- format: int64
- - in: query
- name: parent_node_id
- description: 父节点ID
- type: integer
- format: int64
- - in: query
- name: name
- description: 节点Name
- type: string
- - in: query
- name: ied_name
- description: 装置Name
- type: string
- /screen/scd/parse/step1:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 解析指定scd的间隔及装置
- description: 解析指定scd的间隔及装置,该接口不会进行校验及其他分析
- parameters:
- - in: formData
- name: station_id
- description: 变电站ID
- required: true
- type: integer
- format: int64
- - in: formData
- name: scd_path
- description: SCD文件路径
- required: true
- type: string
- - in: formData
- name: scd_name
- description: SCD文件名称
- required: true
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /screen/scd/parse/step2:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 对指定scd进行校验及分析
- description: 对指定scd进行校验及分析
- parameters:
- - in: formData
- name: scd_id
- description: SCD ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /screen/scd/tmp_parse:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 临时scd解析
- description: 临时scd解析
- parameters:
- - in: formData
- name: station_id
- description: 变电站ID
- required: true
- type: integer
- format: int64
- - in: formData
- name: scdname
- description: SCD名称
- type: string
- - in: formData
- name: scdpath
- description: SCD路径
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /screen/scd/unlock:
- post:
- tags:
- - scd_check_tools/controllersScreenController
- summary: 强制解除scd文件锁定状态
- description: 强制解除scd文件锁定状态
- parameters:
- - in: formData
- name: scd_id
- description: SCD文件ID
- required: true
- type: integer
- format: int64
- - in: formData
- name: flow_run_id
- description: 签入流程ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /searchUserInfo:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 搜索查询用户
- description: 查询用户
- parameters:
- - in: query
- name: name
- description: 姓名
- type: integer
- format: int64
- - in: query
- name: pageindex
- description: 分页页码,默认为1
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页最大记录数,默认为20
- type: integer
- format: int64
- - in: query
- name: area_id
- description: 区域ID
- type: integer
- format: int64
- - in: query
- name: role_id
- description: 角色ID
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/WarpOK'
- "500":
- description: '{object} WarpError 失败'
- /sys/alarm/list:
- get:
- tags:
- - scd_check_tools/controllersApiController
- summary: 获取系统告警列表
- description: 获取系统告警列表
- parameters:
- - in: query
- name: pageindex
- description: 当前查询的分页页码,默认为1
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示的数据条数,默认为20
- type: integer
- format: int64
- - in: query
- name: enddate
- description: 查询条件:结束日期
- type: string
- - in: query
- name: startdate
- description: 查询条件:开始日期
- type: string
- - in: query
- name: eventtype
- description: 查询条件:事件类型。关联系统字典代码log_eventtype。
- type: integer
- format: int64
- - in: query
- name: alarmtype
- description: 查询条件:告警类型。值为disk|cpu|mem之一。
- type: string
- - in: query
- name: description
- description: 查询条件:告警内容。模糊查询
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /sys/init:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: 初始化系统数据
- /task/delete:
- post:
- tags:
- - scd_check_tools/controllersTaskController
- summary: 删除指定的检测任务
- description: 删除指定的检测任务
- parameters:
- - in: formData
- name: id
- description: 检测任务ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /task/list:
- get:
- tags:
- - scd_check_tools/controllersTaskController
- summary: 查询检测任务
- description: 查询检测任务。支持任务名称、检测状态等过滤条件
- parameters:
- - in: query
- name: pageno
- description: 当前页码。默认为1
- required: true
- type: integer
- format: int64
- - in: query
- name: pagesize
- description: 每页显示数据数。默认为20
- required: true
- type: integer
- format: int64
- - in: query
- name: id
- description: 任务ID
- type: integer
- format: int64
- - in: query
- name: station_id
- description: 变电站ID
- type: integer
- format: int64
- - in: query
- name: name
- description: 名称
- type: string
- - in: query
- name: start_time
- description: 检测开始日期。格式:yyyy-mm-dd
- type: string
- - in: query
- name: end_time
- description: 检测结束日期。格式:yyyy-mm-dd
- type: string
- - in: query
- name: state
- description: 检测状态。空:全部 0:未检查 1:检测中 2:检测结束 3:异常中断
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /task/save:
- post:
- tags:
- - scd_check_tools/controllersTaskController
- summary: 创建新的检测任务
- description: 创建新的检测任务
- parameters:
- - in: formData
- name: id
- description: 任务ID。指定id值大于0时为编辑操作;否则为新增操作
- type: integer
- format: int64
- - in: formData
- name: name
- description: 任务名称
- type: string
- - in: formData
- name: station_id
- description: 变电站ID
- type: integer
- format: int64
- - in: formData
- name: memo
- description: 任务说明
- type: string
- - in: formData
- name: report_id
- description: 报告模板ID
- type: integer
- format: int64
- - in: formData
- name: scd_id
- description: SCD文件ID
- type: integer
- format: int64
- - in: formData
- name: modelids
- description: 检测模型ID。多个模型id之间逗号分隔
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /task/start:
- post:
- tags:
- - scd_check_tools/controllersTaskController
- summary: 开始进行检测
- description: 开始进行检测
- parameters:
- - in: formData
- name: id
- description: 检测任务ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /task/stop:
- post:
- tags:
- - scd_check_tools/controllersTaskController
- summary: 取消或者终止检测
- description: 取消或者终止检测
- parameters:
- - in: formData
- name: id
- description: 检测任务ID
- required: true
- type: integer
- format: int64
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /test:
- get:
- tags:
- - scd_check_tools/controllersTestController
- summary: 这是一个测试接口
- description: 这是一个测试接口
- /uploadfile:
- post:
- tags:
- - scd_check_tools/controllersAttachmentController
- summary: 上传文件
- description: 上传文件
- parameters:
- - in: formData
- name: file
- description: 文件流
- required: true
- type: file
- - in: formData
- name: station_id
- description: 变电站ID
- required: true
- type: integer
- format: int64
- - in: formData
- name: is_checkin
- description: 是否是管控文档
- type: integer
- format: int64
- - in: formData
- name: data_type
- description: 业务类型。值为:a_scd|ccd|icd|cid|空。
- type: string
- - in: formData
- name: attachment_type
- description: 文件类别。值关联系统字典file_types或者为空。
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- /version/check_client:
- get:
- tags:
- - scd_check_tools/upgradeVersionController
- summary: 获取最新客户端版本下载地址
- /version/isnew:
- get:
- tags:
- - scd_check_tools/upgradeVersionController
- summary: 检查是否有新的客户端版本
- expTableData:
- post:
- tags:
- - scd_check_tools/controllersApiController
- summary: Excel数据导出
- description: Excel数据导出。导出成功时将返回导出文件的下载地址。
- parameters:
- - in: query
- name: code
- description: 业务类型。值为:scd-comp-result(差异对比结果)\scl-check-result(SCL校验结果)之一
- required: true
- type: string
- - in: query
- name: caption
- description: 数据标题
- type: string
- - in: query
- name: expcols
- description: 导出的数据列,与expcolnames一一对应。从个数据列之间使用逗号分隔。未设置时将导出业务对应的所有列
- type: string
- - in: query
- name: expcolnames
- description: 导出的数据列对应的名称,与expcols一一一对应。从个数据列名之间使用逗号分隔。未设置时将导出业务对应的所有列
- type: string
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/ResultOK'
- "500":
- description: '{object} ResultError 失败'
- definitions:
- ResultError:
- title: ResultError
- type: object
- ResultOK:
- title: ResultOK
- type: object
- WarpOK:
- title: WarpOK
- type: object
- tags:
- - name: scd_check_tools/controllersApiController
- description: |
- 基础功能服务
- - name: scd_check_tools/controllersTestController
- description: |
- 测试
- - name: scd_check_tools/controllersExcelController
- description: |
- 文件/附件服务
- - name: scd_check_tools/controllersScreenController
- description: |
- SCD服务
- - name: scd_check_tools/controllersFlowController
- description: |
- 签入签出流程服务
- - name: scd_check_tools/controllersAttachmentController
- description: |
- 文件/附件服务
- - name: scd_check_tools/controllersRuleController
- description: |
- 校验规则管理服务
- - name: scd_check_tools/controllersStatController
- description: |
- 统计分析服务
- - name: scd_check_tools/controllersScdCompController
- description: |
- 一致性校验服务
- - name: scd_check_tools/controllersNoticeController
- description: |
- 通知提醒服务
- - name: scd_check_tools/controllersTaskController
- description: |
- 检测任务服务
|