describe.json 265 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377
  1. {
  2. "jaxrs": [
  3. {
  4. "name": "ApplicationAction",
  5. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ApplicationAction",
  6. "description": "应用",
  7. "methods": [
  8. {
  9. "name": "delete",
  10. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionDelete",
  11. "description": "删除应用,将同时删除所有相关内容.",
  12. "type": "DELETE",
  13. "path": "jaxrs/application/{id}/{onlyRemoveNotCompleted}",
  14. "contentType": "application/json",
  15. "resultContentType": "application/json; charset\u003dUTF-8",
  16. "useJsonElementParameter": false,
  17. "pathParameters": [
  18. {
  19. "name": "id",
  20. "type": "String",
  21. "description": "应用标识"
  22. },
  23. {
  24. "name": "onlyRemoveNotCompleted",
  25. "type": "boolean",
  26. "description": "是否仅删除在流转中的Work"
  27. }
  28. ],
  29. "formParameters": [],
  30. "queryParameters": [],
  31. "ins": [],
  32. "outs": [
  33. {
  34. "name": "id",
  35. "type": "String",
  36. "isCollection": false,
  37. "description": "id"
  38. }
  39. ]
  40. },
  41. {
  42. "name": "edit",
  43. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionEdit",
  44. "description": "更新应用.",
  45. "type": "PUT",
  46. "path": "jaxrs/application/{id}",
  47. "contentType": "application/json",
  48. "resultContentType": "application/json; charset\u003dUTF-8",
  49. "useJsonElementParameter": false,
  50. "pathParameters": [
  51. {
  52. "name": "id",
  53. "type": "String",
  54. "description": "应用标识"
  55. }
  56. ],
  57. "formParameters": [],
  58. "queryParameters": [],
  59. "ins": [
  60. {
  61. "name": "id",
  62. "type": "String",
  63. "isCollection": false,
  64. "description": "数据库主键,自动生成.",
  65. "isBaseType": true
  66. },
  67. {
  68. "name": "name",
  69. "type": "String",
  70. "isCollection": false,
  71. "description": "名称.",
  72. "isBaseType": true
  73. },
  74. {
  75. "name": "alias",
  76. "type": "String",
  77. "isCollection": false,
  78. "description": "应用别名,如果有必须唯一.",
  79. "isBaseType": true
  80. },
  81. {
  82. "name": "description",
  83. "type": "String",
  84. "isCollection": false,
  85. "description": "描述.",
  86. "isBaseType": true
  87. },
  88. {
  89. "name": "availableIdentityList",
  90. "type": "List\u003cString\u003e",
  91. "isCollection": true,
  92. "description": "在指定启动时候,允许新建Work的用户.",
  93. "isBaseType": true
  94. },
  95. {
  96. "name": "availableUnitList",
  97. "type": "List\u003cString\u003e",
  98. "isCollection": true,
  99. "description": "在指定启动时候,允许新建Work的部门.",
  100. "isBaseType": true
  101. },
  102. {
  103. "name": "applicationCategory",
  104. "type": "String",
  105. "isCollection": false,
  106. "description": "应用分类.",
  107. "isBaseType": true
  108. },
  109. {
  110. "name": "icon",
  111. "type": "String",
  112. "isCollection": false,
  113. "description": "icon Base64编码后的文本.",
  114. "isBaseType": true
  115. },
  116. {
  117. "name": "iconHue",
  118. "type": "String",
  119. "isCollection": false,
  120. "description": "icon的主色调",
  121. "isBaseType": true
  122. },
  123. {
  124. "name": "controllerList",
  125. "type": "List\u003cString\u003e",
  126. "isCollection": true,
  127. "description": "应用管理者.",
  128. "isBaseType": true
  129. },
  130. {
  131. "name": "creatorPerson",
  132. "type": "String",
  133. "isCollection": false,
  134. "description": "应用的创建者。",
  135. "isBaseType": true
  136. },
  137. {
  138. "name": "lastUpdateTime",
  139. "type": "Date",
  140. "isCollection": false,
  141. "description": "应用的最后修改时间。",
  142. "isBaseType": true
  143. },
  144. {
  145. "name": "lastUpdatePerson",
  146. "type": "String",
  147. "isCollection": false,
  148. "description": "应用的最后修改者",
  149. "isBaseType": true
  150. }
  151. ],
  152. "outs": [
  153. {
  154. "name": "id",
  155. "type": "String",
  156. "isCollection": false,
  157. "description": "id"
  158. }
  159. ]
  160. },
  161. {
  162. "name": "get",
  163. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionGet",
  164. "description": "获取单个应用信息.",
  165. "type": "GET",
  166. "path": "jaxrs/application/{id}",
  167. "contentType": "application/json",
  168. "resultContentType": "application/json; charset\u003dUTF-8",
  169. "useJsonElementParameter": false,
  170. "pathParameters": [
  171. {
  172. "name": "id",
  173. "type": "String",
  174. "description": "应用标识"
  175. }
  176. ],
  177. "formParameters": [],
  178. "queryParameters": [],
  179. "ins": [],
  180. "outs": [
  181. {
  182. "name": "id",
  183. "type": "String",
  184. "isCollection": false,
  185. "description": "数据库主键,自动生成."
  186. },
  187. {
  188. "name": "name",
  189. "type": "String",
  190. "isCollection": false,
  191. "description": "名称."
  192. },
  193. {
  194. "name": "alias",
  195. "type": "String",
  196. "isCollection": false,
  197. "description": "应用别名,如果有必须唯一."
  198. },
  199. {
  200. "name": "description",
  201. "type": "String",
  202. "isCollection": false,
  203. "description": "描述."
  204. },
  205. {
  206. "name": "availableIdentityList",
  207. "type": "List\u003cString\u003e",
  208. "isCollection": true,
  209. "description": "在指定启动时候,允许新建Work的用户."
  210. },
  211. {
  212. "name": "availableUnitList",
  213. "type": "List\u003cString\u003e",
  214. "isCollection": true,
  215. "description": "在指定启动时候,允许新建Work的部门."
  216. },
  217. {
  218. "name": "applicationCategory",
  219. "type": "String",
  220. "isCollection": false,
  221. "description": "应用分类."
  222. },
  223. {
  224. "name": "icon",
  225. "type": "String",
  226. "isCollection": false,
  227. "description": "icon Base64编码后的文本."
  228. },
  229. {
  230. "name": "iconHue",
  231. "type": "String",
  232. "isCollection": false,
  233. "description": "icon的主色调"
  234. },
  235. {
  236. "name": "controllerList",
  237. "type": "List\u003cString\u003e",
  238. "isCollection": true,
  239. "description": "应用管理者."
  240. },
  241. {
  242. "name": "creatorPerson",
  243. "type": "String",
  244. "isCollection": false,
  245. "description": "应用的创建者。"
  246. },
  247. {
  248. "name": "lastUpdateTime",
  249. "type": "Date",
  250. "isCollection": false,
  251. "description": "应用的最后修改时间。"
  252. },
  253. {
  254. "name": "lastUpdatePerson",
  255. "type": "String",
  256. "isCollection": false,
  257. "description": "应用的最后修改者"
  258. },
  259. {
  260. "name": "createTime",
  261. "type": "Date",
  262. "isCollection": false,
  263. "description": "创建时间,自动生成,索引创建在约束中."
  264. },
  265. {
  266. "name": "updateTime",
  267. "type": "Date",
  268. "isCollection": false,
  269. "description": "修改时间,自动生成,索引创建在约束中."
  270. }
  271. ]
  272. },
  273. {
  274. "name": "list",
  275. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionList",
  276. "description": "列示所有应用",
  277. "type": "GET",
  278. "path": "jaxrs/application/list",
  279. "contentType": "application/json",
  280. "resultContentType": "application/json; charset\u003dUTF-8",
  281. "useJsonElementParameter": false,
  282. "pathParameters": [],
  283. "formParameters": [],
  284. "queryParameters": [],
  285. "ins": [],
  286. "outs": [
  287. {
  288. "name": "id",
  289. "type": "String",
  290. "isCollection": false,
  291. "description": "数据库主键,自动生成."
  292. },
  293. {
  294. "name": "name",
  295. "type": "String",
  296. "isCollection": false,
  297. "description": "名称."
  298. },
  299. {
  300. "name": "alias",
  301. "type": "String",
  302. "isCollection": false,
  303. "description": "应用别名,如果有必须唯一."
  304. },
  305. {
  306. "name": "description",
  307. "type": "String",
  308. "isCollection": false,
  309. "description": "描述."
  310. },
  311. {
  312. "name": "applicationCategory",
  313. "type": "String",
  314. "isCollection": false,
  315. "description": "应用分类."
  316. },
  317. {
  318. "name": "iconHue",
  319. "type": "String",
  320. "isCollection": false,
  321. "description": "icon的主色调"
  322. },
  323. {
  324. "name": "creatorPerson",
  325. "type": "String",
  326. "isCollection": false,
  327. "description": "应用的创建者。"
  328. },
  329. {
  330. "name": "lastUpdateTime",
  331. "type": "Date",
  332. "isCollection": false,
  333. "description": "应用的最后修改时间。"
  334. },
  335. {
  336. "name": "lastUpdatePerson",
  337. "type": "String",
  338. "isCollection": false,
  339. "description": "应用的最后修改者"
  340. },
  341. {
  342. "name": "createTime",
  343. "type": "Date",
  344. "isCollection": false,
  345. "description": "创建时间,自动生成,索引创建在约束中."
  346. },
  347. {
  348. "name": "updateTime",
  349. "type": "Date",
  350. "isCollection": false,
  351. "description": "修改时间,自动生成,索引创建在约束中."
  352. }
  353. ]
  354. },
  355. {
  356. "name": "listSummary",
  357. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionListSummary",
  358. "description": "列示所有应用,同时附带流程简要信息和表单简要信息.返回值按名称进行排序",
  359. "type": "GET",
  360. "path": "jaxrs/application/list/summary",
  361. "contentType": "application/json",
  362. "resultContentType": "application/json; charset\u003dUTF-8",
  363. "useJsonElementParameter": false,
  364. "pathParameters": [],
  365. "formParameters": [],
  366. "queryParameters": [],
  367. "ins": [],
  368. "outs": [
  369. {
  370. "name": "processList",
  371. "type": "List\u003cWoProcess\u003e",
  372. "isCollection": true,
  373. "description": "流程对象"
  374. },
  375. {
  376. "name": "formList",
  377. "type": "List\u003cWoForm\u003e",
  378. "isCollection": true,
  379. "description": "表单对象"
  380. },
  381. {
  382. "name": "id",
  383. "type": "String",
  384. "isCollection": false,
  385. "description": "数据库主键,自动生成."
  386. },
  387. {
  388. "name": "name",
  389. "type": "String",
  390. "isCollection": false,
  391. "description": "名称."
  392. },
  393. {
  394. "name": "alias",
  395. "type": "String",
  396. "isCollection": false,
  397. "description": "应用别名,如果有必须唯一."
  398. },
  399. {
  400. "name": "description",
  401. "type": "String",
  402. "isCollection": false,
  403. "description": "描述."
  404. },
  405. {
  406. "name": "availableIdentityList",
  407. "type": "List\u003cString\u003e",
  408. "isCollection": true,
  409. "description": "在指定启动时候,允许新建Work的用户."
  410. },
  411. {
  412. "name": "availableUnitList",
  413. "type": "List\u003cString\u003e",
  414. "isCollection": true,
  415. "description": "在指定启动时候,允许新建Work的部门."
  416. },
  417. {
  418. "name": "applicationCategory",
  419. "type": "String",
  420. "isCollection": false,
  421. "description": "应用分类."
  422. },
  423. {
  424. "name": "icon",
  425. "type": "String",
  426. "isCollection": false,
  427. "description": "icon Base64编码后的文本."
  428. },
  429. {
  430. "name": "iconHue",
  431. "type": "String",
  432. "isCollection": false,
  433. "description": "icon的主色调"
  434. },
  435. {
  436. "name": "controllerList",
  437. "type": "List\u003cString\u003e",
  438. "isCollection": true,
  439. "description": "应用管理者."
  440. },
  441. {
  442. "name": "creatorPerson",
  443. "type": "String",
  444. "isCollection": false,
  445. "description": "应用的创建者。"
  446. },
  447. {
  448. "name": "lastUpdateTime",
  449. "type": "Date",
  450. "isCollection": false,
  451. "description": "应用的最后修改时间。"
  452. },
  453. {
  454. "name": "lastUpdatePerson",
  455. "type": "String",
  456. "isCollection": false,
  457. "description": "应用的最后修改者"
  458. },
  459. {
  460. "name": "createTime",
  461. "type": "Date",
  462. "isCollection": false,
  463. "description": "创建时间,自动生成,索引创建在约束中."
  464. },
  465. {
  466. "name": "updateTime",
  467. "type": "Date",
  468. "isCollection": false,
  469. "description": "修改时间,自动生成,索引创建在约束中."
  470. }
  471. ]
  472. },
  473. {
  474. "name": "listSummaryWithApplicationCategory",
  475. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionListSummaryWithApplicationCategory",
  476. "description": "根据应用分类获取应用的简要信息,不包含流程表单,应用分类不为null.",
  477. "type": "GET",
  478. "path": "jaxrs/application/list/summary/applicationcategory/{applicationCategory}",
  479. "contentType": "application/json",
  480. "resultContentType": "application/json; charset\u003dUTF-8",
  481. "useJsonElementParameter": false,
  482. "pathParameters": [
  483. {
  484. "name": "applicationCategory",
  485. "type": "String",
  486. "description": "应用分类"
  487. }
  488. ],
  489. "formParameters": [],
  490. "queryParameters": [],
  491. "ins": [],
  492. "outs": [
  493. {
  494. "name": "processList",
  495. "type": "List\u003cWoProcess\u003e",
  496. "isCollection": true,
  497. "description": "流程对象"
  498. },
  499. {
  500. "name": "formList",
  501. "type": "List\u003cWoForm\u003e",
  502. "isCollection": true,
  503. "description": "表单对象"
  504. },
  505. {
  506. "name": "id",
  507. "type": "String",
  508. "isCollection": false,
  509. "description": "数据库主键,自动生成."
  510. },
  511. {
  512. "name": "name",
  513. "type": "String",
  514. "isCollection": false,
  515. "description": "名称."
  516. },
  517. {
  518. "name": "alias",
  519. "type": "String",
  520. "isCollection": false,
  521. "description": "应用别名,如果有必须唯一."
  522. },
  523. {
  524. "name": "description",
  525. "type": "String",
  526. "isCollection": false,
  527. "description": "描述."
  528. },
  529. {
  530. "name": "availableIdentityList",
  531. "type": "List\u003cString\u003e",
  532. "isCollection": true,
  533. "description": "在指定启动时候,允许新建Work的用户."
  534. },
  535. {
  536. "name": "availableUnitList",
  537. "type": "List\u003cString\u003e",
  538. "isCollection": true,
  539. "description": "在指定启动时候,允许新建Work的部门."
  540. },
  541. {
  542. "name": "applicationCategory",
  543. "type": "String",
  544. "isCollection": false,
  545. "description": "应用分类."
  546. },
  547. {
  548. "name": "icon",
  549. "type": "String",
  550. "isCollection": false,
  551. "description": "icon Base64编码后的文本."
  552. },
  553. {
  554. "name": "iconHue",
  555. "type": "String",
  556. "isCollection": false,
  557. "description": "icon的主色调"
  558. },
  559. {
  560. "name": "controllerList",
  561. "type": "List\u003cString\u003e",
  562. "isCollection": true,
  563. "description": "应用管理者."
  564. },
  565. {
  566. "name": "creatorPerson",
  567. "type": "String",
  568. "isCollection": false,
  569. "description": "应用的创建者。"
  570. },
  571. {
  572. "name": "lastUpdateTime",
  573. "type": "Date",
  574. "isCollection": false,
  575. "description": "应用的最后修改时间。"
  576. },
  577. {
  578. "name": "lastUpdatePerson",
  579. "type": "String",
  580. "isCollection": false,
  581. "description": "应用的最后修改者"
  582. },
  583. {
  584. "name": "createTime",
  585. "type": "Date",
  586. "isCollection": false,
  587. "description": "创建时间,自动生成,索引创建在约束中."
  588. },
  589. {
  590. "name": "updateTime",
  591. "type": "Date",
  592. "isCollection": false,
  593. "description": "修改时间,自动生成,索引创建在约束中."
  594. }
  595. ]
  596. },
  597. {
  598. "name": "listWithApplicationCategory",
  599. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionListWithApplicationCategory",
  600. "description": "根据应用分类获取应用,应用分类不为null.",
  601. "type": "GET",
  602. "path": "jaxrs/application/list/applicationcategory/{applicationCategory}",
  603. "contentType": "application/json",
  604. "resultContentType": "application/json; charset\u003dUTF-8",
  605. "useJsonElementParameter": false,
  606. "pathParameters": [
  607. {
  608. "name": "applicationCategory",
  609. "type": "String",
  610. "description": "应用分类"
  611. }
  612. ],
  613. "formParameters": [],
  614. "queryParameters": [],
  615. "ins": [],
  616. "outs": [
  617. {
  618. "name": "id",
  619. "type": "String",
  620. "isCollection": false,
  621. "description": "数据库主键,自动生成."
  622. },
  623. {
  624. "name": "name",
  625. "type": "String",
  626. "isCollection": false,
  627. "description": "名称."
  628. },
  629. {
  630. "name": "alias",
  631. "type": "String",
  632. "isCollection": false,
  633. "description": "应用别名,如果有必须唯一."
  634. },
  635. {
  636. "name": "description",
  637. "type": "String",
  638. "isCollection": false,
  639. "description": "描述."
  640. },
  641. {
  642. "name": "availableIdentityList",
  643. "type": "List\u003cString\u003e",
  644. "isCollection": true,
  645. "description": "在指定启动时候,允许新建Work的用户."
  646. },
  647. {
  648. "name": "availableUnitList",
  649. "type": "List\u003cString\u003e",
  650. "isCollection": true,
  651. "description": "在指定启动时候,允许新建Work的部门."
  652. },
  653. {
  654. "name": "applicationCategory",
  655. "type": "String",
  656. "isCollection": false,
  657. "description": "应用分类."
  658. },
  659. {
  660. "name": "icon",
  661. "type": "String",
  662. "isCollection": false,
  663. "description": "icon Base64编码后的文本."
  664. },
  665. {
  666. "name": "iconHue",
  667. "type": "String",
  668. "isCollection": false,
  669. "description": "icon的主色调"
  670. },
  671. {
  672. "name": "controllerList",
  673. "type": "List\u003cString\u003e",
  674. "isCollection": true,
  675. "description": "应用管理者."
  676. },
  677. {
  678. "name": "creatorPerson",
  679. "type": "String",
  680. "isCollection": false,
  681. "description": "应用的创建者。"
  682. },
  683. {
  684. "name": "lastUpdateTime",
  685. "type": "Date",
  686. "isCollection": false,
  687. "description": "应用的最后修改时间。"
  688. },
  689. {
  690. "name": "lastUpdatePerson",
  691. "type": "String",
  692. "isCollection": false,
  693. "description": "应用的最后修改者"
  694. },
  695. {
  696. "name": "createTime",
  697. "type": "Date",
  698. "isCollection": false,
  699. "description": "创建时间,自动生成,索引创建在约束中."
  700. },
  701. {
  702. "name": "updateTime",
  703. "type": "Date",
  704. "isCollection": false,
  705. "description": "修改时间,自动生成,索引创建在约束中."
  706. }
  707. ]
  708. },
  709. {
  710. "name": "post",
  711. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionCreate",
  712. "description": "创建应用.",
  713. "type": "POST",
  714. "path": "jaxrs/application",
  715. "contentType": "application/json",
  716. "resultContentType": "application/json; charset\u003dUTF-8",
  717. "useJsonElementParameter": false,
  718. "pathParameters": [],
  719. "formParameters": [],
  720. "queryParameters": [],
  721. "ins": [
  722. {
  723. "name": "id",
  724. "type": "String",
  725. "isCollection": false,
  726. "description": "数据库主键,自动生成.",
  727. "isBaseType": true
  728. },
  729. {
  730. "name": "name",
  731. "type": "String",
  732. "isCollection": false,
  733. "description": "名称.",
  734. "isBaseType": true
  735. },
  736. {
  737. "name": "alias",
  738. "type": "String",
  739. "isCollection": false,
  740. "description": "应用别名,如果有必须唯一.",
  741. "isBaseType": true
  742. },
  743. {
  744. "name": "description",
  745. "type": "String",
  746. "isCollection": false,
  747. "description": "描述.",
  748. "isBaseType": true
  749. },
  750. {
  751. "name": "availableIdentityList",
  752. "type": "List\u003cString\u003e",
  753. "isCollection": true,
  754. "description": "在指定启动时候,允许新建Work的用户.",
  755. "isBaseType": true
  756. },
  757. {
  758. "name": "availableUnitList",
  759. "type": "List\u003cString\u003e",
  760. "isCollection": true,
  761. "description": "在指定启动时候,允许新建Work的部门.",
  762. "isBaseType": true
  763. },
  764. {
  765. "name": "applicationCategory",
  766. "type": "String",
  767. "isCollection": false,
  768. "description": "应用分类.",
  769. "isBaseType": true
  770. },
  771. {
  772. "name": "icon",
  773. "type": "String",
  774. "isCollection": false,
  775. "description": "icon Base64编码后的文本.",
  776. "isBaseType": true
  777. },
  778. {
  779. "name": "iconHue",
  780. "type": "String",
  781. "isCollection": false,
  782. "description": "icon的主色调",
  783. "isBaseType": true
  784. },
  785. {
  786. "name": "controllerList",
  787. "type": "List\u003cString\u003e",
  788. "isCollection": true,
  789. "description": "应用管理者.",
  790. "isBaseType": true
  791. },
  792. {
  793. "name": "creatorPerson",
  794. "type": "String",
  795. "isCollection": false,
  796. "description": "应用的创建者。",
  797. "isBaseType": true
  798. },
  799. {
  800. "name": "lastUpdateTime",
  801. "type": "Date",
  802. "isCollection": false,
  803. "description": "应用的最后修改时间。",
  804. "isBaseType": true
  805. },
  806. {
  807. "name": "lastUpdatePerson",
  808. "type": "String",
  809. "isCollection": false,
  810. "description": "应用的最后修改者",
  811. "isBaseType": true
  812. }
  813. ],
  814. "outs": [
  815. {
  816. "name": "id",
  817. "type": "String",
  818. "isCollection": false,
  819. "description": "id"
  820. }
  821. ]
  822. },
  823. {
  824. "name": "setIcon",
  825. "className": "com.x.processplatform.assemble.designer.jaxrs.application.ActionSetIcon",
  826. "description": "更新应用图标.",
  827. "type": "PUT",
  828. "path": "jaxrs/application/{id}/icon",
  829. "contentType": "multipart/form-data",
  830. "resultContentType": "application/json; charset\u003dUTF-8",
  831. "useJsonElementParameter": false,
  832. "pathParameters": [
  833. {
  834. "name": "id",
  835. "type": "String",
  836. "description": "应用标识"
  837. }
  838. ],
  839. "formParameters": [
  840. {
  841. "name": "file",
  842. "type": "File",
  843. "description": "头像文件"
  844. }
  845. ],
  846. "queryParameters": [],
  847. "ins": [],
  848. "outs": [
  849. {
  850. "name": "id",
  851. "type": "String",
  852. "isCollection": false,
  853. "description": "id"
  854. }
  855. ]
  856. }
  857. ]
  858. },
  859. {
  860. "name": "ApplicationCategoryAction",
  861. "className": "com.x.processplatform.assemble.designer.jaxrs.applicationcategory.ApplicationCategoryAction",
  862. "description": "应用分类",
  863. "methods": [
  864. {
  865. "name": "list",
  866. "className": "com.x.processplatform.assemble.designer.jaxrs.applicationcategory.ActionList",
  867. "description": "获取应用分类信息并统计同一分类的数量.",
  868. "type": "GET",
  869. "path": "jaxrs/applicationcategory/list",
  870. "contentType": "application/json",
  871. "resultContentType": "application/json; charset\u003dUTF-8",
  872. "useJsonElementParameter": false,
  873. "pathParameters": [],
  874. "formParameters": [],
  875. "queryParameters": [],
  876. "ins": [],
  877. "outs": []
  878. }
  879. ]
  880. },
  881. {
  882. "name": "ApplicationDictAction",
  883. "className": "com.x.processplatform.assemble.designer.jaxrs.applicationdict.ApplicationDictAction",
  884. "description": "数据字典\t",
  885. "methods": [
  886. {
  887. "name": "delete",
  888. "className": "com.x.processplatform.assemble.designer.jaxrs.applicationdict.ActionDelete",
  889. "description": "删除指定的数据字典以及数据字典数据.",
  890. "type": "DELETE",
  891. "path": "jaxrs/applicationdict/{id}",
  892. "contentType": "application/json",
  893. "resultContentType": "application/json; charset\u003dUTF-8",
  894. "useJsonElementParameter": false,
  895. "pathParameters": [
  896. {
  897. "name": "id",
  898. "type": "String",
  899. "description": "标识"
  900. }
  901. ],
  902. "formParameters": [],
  903. "queryParameters": [],
  904. "ins": [],
  905. "outs": [
  906. {
  907. "name": "id",
  908. "type": "String",
  909. "isCollection": false,
  910. "description": "id"
  911. }
  912. ]
  913. },
  914. {
  915. "name": "get",
  916. "className": "com.x.processplatform.assemble.designer.jaxrs.applicationdict.ActionGet",
  917. "description": "获取单个数据字典以及数据字典数据.",
  918. "type": "GET",
  919. "path": "jaxrs/applicationdict/{id}",
  920. "contentType": "application/json",
  921. "resultContentType": "application/json; charset\u003dUTF-8",
  922. "useJsonElementParameter": false,
  923. "pathParameters": [
  924. {
  925. "name": "id",
  926. "type": "String",
  927. "description": "标识"
  928. }
  929. ],
  930. "formParameters": [],
  931. "queryParameters": [],
  932. "ins": [],
  933. "outs": [
  934. {
  935. "name": "id",
  936. "type": "String",
  937. "isCollection": false,
  938. "description": "数据库主键,自动生成."
  939. },
  940. {
  941. "name": "application",
  942. "type": "String",
  943. "isCollection": false,
  944. "description": "应用."
  945. },
  946. {
  947. "name": "name",
  948. "type": "String",
  949. "isCollection": false,
  950. "description": "字典名称."
  951. },
  952. {
  953. "name": "alias",
  954. "type": "String",
  955. "isCollection": false,
  956. "description": "别名."
  957. },
  958. {
  959. "name": "description",
  960. "type": "String",
  961. "isCollection": false,
  962. "description": "说明."
  963. },
  964. {
  965. "name": "createTime",
  966. "type": "Date",
  967. "isCollection": false,
  968. "description": "创建时间,自动生成,索引创建在约束中."
  969. },
  970. {
  971. "name": "updateTime",
  972. "type": "Date",
  973. "isCollection": false,
  974. "description": "修改时间,自动生成,索引创建在约束中."
  975. }
  976. ]
  977. },
  978. {
  979. "name": "listWithApplication",
  980. "className": "com.x.processplatform.assemble.designer.jaxrs.applicationdict.ActionListWithApplication",
  981. "description": "获取Application的数据字典列表.",
  982. "type": "GET",
  983. "path": "jaxrs/applicationdict/list/application/{applicationId}",
  984. "contentType": "application/json",
  985. "resultContentType": "application/json; charset\u003dUTF-8",
  986. "useJsonElementParameter": false,
  987. "pathParameters": [
  988. {
  989. "name": "applicationId",
  990. "type": "String",
  991. "description": "应用标识"
  992. }
  993. ],
  994. "formParameters": [],
  995. "queryParameters": [],
  996. "ins": [],
  997. "outs": [
  998. {
  999. "name": "id",
  1000. "type": "String",
  1001. "isCollection": false,
  1002. "description": "数据库主键,自动生成."
  1003. },
  1004. {
  1005. "name": "application",
  1006. "type": "String",
  1007. "isCollection": false,
  1008. "description": "应用."
  1009. },
  1010. {
  1011. "name": "name",
  1012. "type": "String",
  1013. "isCollection": false,
  1014. "description": "字典名称."
  1015. },
  1016. {
  1017. "name": "alias",
  1018. "type": "String",
  1019. "isCollection": false,
  1020. "description": "别名."
  1021. },
  1022. {
  1023. "name": "description",
  1024. "type": "String",
  1025. "isCollection": false,
  1026. "description": "说明."
  1027. },
  1028. {
  1029. "name": "createTime",
  1030. "type": "Date",
  1031. "isCollection": false,
  1032. "description": "创建时间,自动生成,索引创建在约束中."
  1033. },
  1034. {
  1035. "name": "updateTime",
  1036. "type": "Date",
  1037. "isCollection": false,
  1038. "description": "修改时间,自动生成,索引创建在约束中."
  1039. }
  1040. ]
  1041. },
  1042. {
  1043. "name": "post",
  1044. "className": "com.x.processplatform.assemble.designer.jaxrs.applicationdict.ActionCreate",
  1045. "description": "创建数据字典以及数据.",
  1046. "type": "POST",
  1047. "path": "jaxrs/applicationdict",
  1048. "contentType": "application/json",
  1049. "resultContentType": "application/json; charset\u003dUTF-8",
  1050. "useJsonElementParameter": false,
  1051. "pathParameters": [],
  1052. "formParameters": [],
  1053. "queryParameters": [],
  1054. "ins": [
  1055. {
  1056. "name": "id",
  1057. "type": "String",
  1058. "isCollection": false,
  1059. "description": "数据库主键,自动生成.",
  1060. "isBaseType": true
  1061. },
  1062. {
  1063. "name": "application",
  1064. "type": "String",
  1065. "isCollection": false,
  1066. "description": "应用.",
  1067. "isBaseType": true
  1068. },
  1069. {
  1070. "name": "name",
  1071. "type": "String",
  1072. "isCollection": false,
  1073. "description": "字典名称.",
  1074. "isBaseType": true
  1075. },
  1076. {
  1077. "name": "alias",
  1078. "type": "String",
  1079. "isCollection": false,
  1080. "description": "别名.",
  1081. "isBaseType": true
  1082. },
  1083. {
  1084. "name": "description",
  1085. "type": "String",
  1086. "isCollection": false,
  1087. "description": "说明.",
  1088. "isBaseType": true
  1089. }
  1090. ],
  1091. "outs": [
  1092. {
  1093. "name": "id",
  1094. "type": "String",
  1095. "isCollection": false,
  1096. "description": "id"
  1097. }
  1098. ]
  1099. },
  1100. {
  1101. "name": "put",
  1102. "className": "com.x.processplatform.assemble.designer.jaxrs.applicationdict.ActionEdit",
  1103. "description": "更新数据字典以及数据.",
  1104. "type": "PUT",
  1105. "path": "jaxrs/applicationdict/{id}",
  1106. "contentType": "application/json",
  1107. "resultContentType": "application/json; charset\u003dUTF-8",
  1108. "useJsonElementParameter": false,
  1109. "pathParameters": [
  1110. {
  1111. "name": "id",
  1112. "type": "String",
  1113. "description": "标识"
  1114. }
  1115. ],
  1116. "formParameters": [],
  1117. "queryParameters": [],
  1118. "ins": [
  1119. {
  1120. "name": "id",
  1121. "type": "String",
  1122. "isCollection": false,
  1123. "description": "数据库主键,自动生成.",
  1124. "isBaseType": true
  1125. },
  1126. {
  1127. "name": "application",
  1128. "type": "String",
  1129. "isCollection": false,
  1130. "description": "应用.",
  1131. "isBaseType": true
  1132. },
  1133. {
  1134. "name": "name",
  1135. "type": "String",
  1136. "isCollection": false,
  1137. "description": "字典名称.",
  1138. "isBaseType": true
  1139. },
  1140. {
  1141. "name": "alias",
  1142. "type": "String",
  1143. "isCollection": false,
  1144. "description": "别名.",
  1145. "isBaseType": true
  1146. },
  1147. {
  1148. "name": "description",
  1149. "type": "String",
  1150. "isCollection": false,
  1151. "description": "说明.",
  1152. "isBaseType": true
  1153. }
  1154. ],
  1155. "outs": [
  1156. {
  1157. "name": "id",
  1158. "type": "String",
  1159. "isCollection": false,
  1160. "description": "id"
  1161. }
  1162. ]
  1163. }
  1164. ]
  1165. },
  1166. {
  1167. "name": "CacheAction",
  1168. "className": "com.x.base.core.project.jaxrs.cache.CacheAction",
  1169. "description": "缓存操作",
  1170. "methods": [
  1171. {
  1172. "name": "configFlush",
  1173. "className": "com.x.base.core.project.jaxrs.cache.ActionConfigFlush",
  1174. "description": "接收config flush 信号.",
  1175. "type": "GET",
  1176. "path": "jaxrs/cache/config/flush",
  1177. "contentType": "application/json",
  1178. "resultContentType": "application/json; charset\u003dUTF-8",
  1179. "useJsonElementParameter": false,
  1180. "pathParameters": [],
  1181. "formParameters": [],
  1182. "queryParameters": [],
  1183. "ins": [],
  1184. "outs": [
  1185. {
  1186. "name": "value",
  1187. "type": "Boolean",
  1188. "isCollection": false,
  1189. "description": "布尔值."
  1190. }
  1191. ]
  1192. },
  1193. {
  1194. "name": "receive",
  1195. "className": "com.x.base.core.project.jaxrs.cache.ActionReceive",
  1196. "description": "接收Cache刷新信息.",
  1197. "type": "PUT",
  1198. "path": "jaxrs/cache",
  1199. "contentType": "application/json",
  1200. "resultContentType": "application/json; charset\u003dUTF-8",
  1201. "useJsonElementParameter": false,
  1202. "pathParameters": [],
  1203. "formParameters": [],
  1204. "queryParameters": [],
  1205. "ins": [
  1206. {
  1207. "name": "nodeName",
  1208. "type": "String",
  1209. "isCollection": false,
  1210. "description": "节点名",
  1211. "isBaseType": true
  1212. },
  1213. {
  1214. "name": "className",
  1215. "type": "String",
  1216. "isCollection": false,
  1217. "description": "类名",
  1218. "isBaseType": true
  1219. },
  1220. {
  1221. "name": "keys",
  1222. "type": "List\u003cObject\u003e",
  1223. "isCollection": true,
  1224. "description": "关键字",
  1225. "isBaseType": false
  1226. }
  1227. ],
  1228. "outs": [
  1229. {
  1230. "name": "value",
  1231. "type": "String",
  1232. "isCollection": false,
  1233. "description": "字符串值"
  1234. }
  1235. ]
  1236. }
  1237. ]
  1238. },
  1239. {
  1240. "name": "EchoAction",
  1241. "className": "com.x.base.core.project.jaxrs.echo.EchoAction",
  1242. "description": "响应",
  1243. "methods": [
  1244. {
  1245. "name": "get",
  1246. "className": "com.x.base.core.project.jaxrs.echo.ActionGet",
  1247. "description": "获取应答.",
  1248. "type": "GET",
  1249. "path": "jaxrs/echo",
  1250. "contentType": "application/json",
  1251. "useJsonElementParameter": false,
  1252. "pathParameters": [],
  1253. "formParameters": [],
  1254. "queryParameters": [],
  1255. "ins": [],
  1256. "outs": [
  1257. {
  1258. "name": "servletContextName",
  1259. "type": "String",
  1260. "isCollection": false,
  1261. "description": "上下文根"
  1262. },
  1263. {
  1264. "name": "serverTime",
  1265. "type": "Date",
  1266. "isCollection": false,
  1267. "description": "服务器时间"
  1268. }
  1269. ]
  1270. }
  1271. ]
  1272. },
  1273. {
  1274. "name": "ElementToolAction",
  1275. "className": "com.x.processplatform.assemble.designer.jaxrs.elementtool.ElementToolAction",
  1276. "description": "设计元素工具",
  1277. "methods": [
  1278. {
  1279. "name": "applicationDictOrphan",
  1280. "className": "com.x.processplatform.assemble.designer.jaxrs.elementtool.ActionApplicationDictOrphan",
  1281. "description": "ApplicationDict对象中的孤立对象,包括item对象",
  1282. "type": "GET",
  1283. "path": "jaxrs/elementtool/applicationdict/orphan",
  1284. "contentType": "application/json",
  1285. "resultContentType": "application/json; charset\u003dUTF-8",
  1286. "useJsonElementParameter": false,
  1287. "pathParameters": [],
  1288. "formParameters": [],
  1289. "queryParameters": [],
  1290. "ins": [],
  1291. "outs": []
  1292. },
  1293. {
  1294. "name": "formOrphan",
  1295. "className": "com.x.processplatform.assemble.designer.jaxrs.elementtool.ActionFormOrphan",
  1296. "description": "Form对象中的孤立对象,包括Form和FormField",
  1297. "type": "GET",
  1298. "path": "jaxrs/elementtool/form/orphan",
  1299. "contentType": "application/json",
  1300. "resultContentType": "application/json; charset\u003dUTF-8",
  1301. "useJsonElementParameter": false,
  1302. "pathParameters": [],
  1303. "formParameters": [],
  1304. "queryParameters": [],
  1305. "ins": [],
  1306. "outs": []
  1307. },
  1308. {
  1309. "name": "processOrphan",
  1310. "className": "com.x.processplatform.assemble.designer.jaxrs.elementtool.ActionProcessOrphan",
  1311. "description": "Process对象中的孤立对象,包括Process的子元素",
  1312. "type": "GET",
  1313. "path": "jaxrs/elementtool/process/orphan",
  1314. "contentType": "application/json",
  1315. "resultContentType": "application/json; charset\u003dUTF-8",
  1316. "useJsonElementParameter": false,
  1317. "pathParameters": [],
  1318. "formParameters": [],
  1319. "queryParameters": [],
  1320. "ins": [],
  1321. "outs": []
  1322. },
  1323. {
  1324. "name": "scriptOrphan",
  1325. "className": "com.x.processplatform.assemble.designer.jaxrs.elementtool.ActionScriptOrphan",
  1326. "description": "Script对象中的孤立对象.",
  1327. "type": "GET",
  1328. "path": "jaxrs/elementtool/script/orphan",
  1329. "contentType": "application/json",
  1330. "resultContentType": "application/json; charset\u003dUTF-8",
  1331. "useJsonElementParameter": false,
  1332. "pathParameters": [],
  1333. "formParameters": [],
  1334. "queryParameters": [],
  1335. "ins": [],
  1336. "outs": []
  1337. }
  1338. ]
  1339. },
  1340. {
  1341. "name": "FileAction",
  1342. "className": "com.x.processplatform.assemble.designer.jaxrs.file.FileAction",
  1343. "description": "文件",
  1344. "methods": [
  1345. {
  1346. "name": "content",
  1347. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionContent",
  1348. "description": "获取文件内容.",
  1349. "type": "GET",
  1350. "path": "jaxrs/file/{id}/content",
  1351. "contentType": "application/json",
  1352. "useJsonElementParameter": false,
  1353. "pathParameters": [
  1354. {
  1355. "name": "id",
  1356. "type": "String",
  1357. "description": "标识"
  1358. }
  1359. ],
  1360. "formParameters": [],
  1361. "queryParameters": [],
  1362. "ins": [],
  1363. "outs": [
  1364. {
  1365. "name": "contentDisposition",
  1366. "type": "String",
  1367. "isCollection": false,
  1368. "description": "说明"
  1369. },
  1370. {
  1371. "name": "contentType",
  1372. "type": "String",
  1373. "isCollection": false,
  1374. "description": "类型"
  1375. },
  1376. {
  1377. "name": "bytes",
  1378. "type": "byte[]",
  1379. "isCollection": false,
  1380. "description": "字节内容."
  1381. }
  1382. ]
  1383. },
  1384. {
  1385. "name": "create",
  1386. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionCreate",
  1387. "description": "创建文件.",
  1388. "type": "POST",
  1389. "path": "jaxrs/file",
  1390. "contentType": "application/json",
  1391. "resultContentType": "application/json; charset\u003dUTF-8",
  1392. "useJsonElementParameter": false,
  1393. "pathParameters": [],
  1394. "formParameters": [],
  1395. "queryParameters": [],
  1396. "ins": [
  1397. {
  1398. "name": "id",
  1399. "type": "String",
  1400. "isCollection": false,
  1401. "description": "数据库主键,自动生成.",
  1402. "isBaseType": true
  1403. },
  1404. {
  1405. "name": "name",
  1406. "type": "String",
  1407. "isCollection": false,
  1408. "description": "文件名称.",
  1409. "isBaseType": true
  1410. },
  1411. {
  1412. "name": "alias",
  1413. "type": "String",
  1414. "isCollection": false,
  1415. "description": "文件别名.",
  1416. "isBaseType": true
  1417. },
  1418. {
  1419. "name": "description",
  1420. "type": "String",
  1421. "isCollection": false,
  1422. "description": "描述.",
  1423. "isBaseType": true
  1424. },
  1425. {
  1426. "name": "application",
  1427. "type": "String",
  1428. "isCollection": false,
  1429. "description": "文件所属应用.",
  1430. "isBaseType": true
  1431. },
  1432. {
  1433. "name": "lastUpdatePerson",
  1434. "type": "String",
  1435. "isCollection": false,
  1436. "description": "最后的编辑者.",
  1437. "isBaseType": true
  1438. },
  1439. {
  1440. "name": "lastUpdateTime",
  1441. "type": "Date",
  1442. "isCollection": false,
  1443. "description": "最后的编辑时间.",
  1444. "isBaseType": true
  1445. },
  1446. {
  1447. "name": "data",
  1448. "type": "String",
  1449. "isCollection": false,
  1450. "description": "编码后文本内容.",
  1451. "isBaseType": true
  1452. },
  1453. {
  1454. "name": "fileName",
  1455. "type": "String",
  1456. "isCollection": false,
  1457. "description": "文件名称.",
  1458. "isBaseType": true
  1459. },
  1460. {
  1461. "name": "length",
  1462. "type": "Long",
  1463. "isCollection": false,
  1464. "description": "文件大小.",
  1465. "isBaseType": true
  1466. }
  1467. ],
  1468. "outs": [
  1469. {
  1470. "name": "id",
  1471. "type": "String",
  1472. "isCollection": false,
  1473. "description": "id"
  1474. }
  1475. ]
  1476. },
  1477. {
  1478. "name": "delete",
  1479. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionDelete",
  1480. "description": "删除文件.",
  1481. "type": "DELETE",
  1482. "path": "jaxrs/file/{flag}",
  1483. "contentType": "application/json",
  1484. "resultContentType": "application/json; charset\u003dUTF-8",
  1485. "useJsonElementParameter": false,
  1486. "pathParameters": [
  1487. {
  1488. "name": "flag",
  1489. "type": "String",
  1490. "description": "标识"
  1491. }
  1492. ],
  1493. "formParameters": [],
  1494. "queryParameters": [],
  1495. "ins": [],
  1496. "outs": [
  1497. {
  1498. "name": "id",
  1499. "type": "String",
  1500. "isCollection": false,
  1501. "description": "id"
  1502. }
  1503. ]
  1504. },
  1505. {
  1506. "name": "download",
  1507. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionDownload",
  1508. "description": "获取文件内容.以stream方式下载.",
  1509. "type": "GET",
  1510. "path": "jaxrs/file/{id}/download",
  1511. "contentType": "application/json",
  1512. "useJsonElementParameter": false,
  1513. "pathParameters": [
  1514. {
  1515. "name": "id",
  1516. "type": "String",
  1517. "description": "标识"
  1518. }
  1519. ],
  1520. "formParameters": [],
  1521. "queryParameters": [],
  1522. "ins": [],
  1523. "outs": [
  1524. {
  1525. "name": "contentDisposition",
  1526. "type": "String",
  1527. "isCollection": false,
  1528. "description": "说明"
  1529. },
  1530. {
  1531. "name": "contentType",
  1532. "type": "String",
  1533. "isCollection": false,
  1534. "description": "类型"
  1535. },
  1536. {
  1537. "name": "bytes",
  1538. "type": "byte[]",
  1539. "isCollection": false,
  1540. "description": "字节内容."
  1541. }
  1542. ]
  1543. },
  1544. {
  1545. "name": "get",
  1546. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionGet",
  1547. "description": "获取文件内容.",
  1548. "type": "GET",
  1549. "path": "jaxrs/file/{flag}",
  1550. "contentType": "application/json",
  1551. "resultContentType": "application/json; charset\u003dUTF-8",
  1552. "useJsonElementParameter": false,
  1553. "pathParameters": [
  1554. {
  1555. "name": "flag",
  1556. "type": "String",
  1557. "description": "标识"
  1558. }
  1559. ],
  1560. "formParameters": [],
  1561. "queryParameters": [],
  1562. "ins": [],
  1563. "outs": [
  1564. {
  1565. "name": "id",
  1566. "type": "String",
  1567. "isCollection": false,
  1568. "description": "数据库主键,自动生成."
  1569. },
  1570. {
  1571. "name": "name",
  1572. "type": "String",
  1573. "isCollection": false,
  1574. "description": "文件名称."
  1575. },
  1576. {
  1577. "name": "alias",
  1578. "type": "String",
  1579. "isCollection": false,
  1580. "description": "文件别名."
  1581. },
  1582. {
  1583. "name": "description",
  1584. "type": "String",
  1585. "isCollection": false,
  1586. "description": "描述."
  1587. },
  1588. {
  1589. "name": "application",
  1590. "type": "String",
  1591. "isCollection": false,
  1592. "description": "文件所属应用."
  1593. },
  1594. {
  1595. "name": "lastUpdatePerson",
  1596. "type": "String",
  1597. "isCollection": false,
  1598. "description": "最后的编辑者."
  1599. },
  1600. {
  1601. "name": "lastUpdateTime",
  1602. "type": "Date",
  1603. "isCollection": false,
  1604. "description": "最后的编辑时间."
  1605. },
  1606. {
  1607. "name": "fileName",
  1608. "type": "String",
  1609. "isCollection": false,
  1610. "description": "文件名称."
  1611. },
  1612. {
  1613. "name": "length",
  1614. "type": "Long",
  1615. "isCollection": false,
  1616. "description": "文件大小."
  1617. },
  1618. {
  1619. "name": "createTime",
  1620. "type": "Date",
  1621. "isCollection": false,
  1622. "description": "创建时间,自动生成,索引创建在约束中."
  1623. },
  1624. {
  1625. "name": "updateTime",
  1626. "type": "Date",
  1627. "isCollection": false,
  1628. "description": "修改时间,自动生成,索引创建在约束中."
  1629. }
  1630. ]
  1631. },
  1632. {
  1633. "name": "listNext",
  1634. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionListNext",
  1635. "description": "列示文件对象,下一页.",
  1636. "type": "GET",
  1637. "path": "jaxrs/file/list/{id}/next/{count}",
  1638. "contentType": "application/json",
  1639. "resultContentType": "application/json; charset\u003dUTF-8",
  1640. "useJsonElementParameter": false,
  1641. "pathParameters": [
  1642. {
  1643. "name": "count",
  1644. "type": "Integer",
  1645. "description": "数量"
  1646. },
  1647. {
  1648. "name": "id",
  1649. "type": "String",
  1650. "description": "标识"
  1651. }
  1652. ],
  1653. "formParameters": [],
  1654. "queryParameters": [],
  1655. "ins": [],
  1656. "outs": [
  1657. {
  1658. "name": "rank",
  1659. "type": "Long",
  1660. "isCollection": false,
  1661. "description": "排序号"
  1662. },
  1663. {
  1664. "name": "id",
  1665. "type": "String",
  1666. "isCollection": false,
  1667. "description": "数据库主键,自动生成."
  1668. },
  1669. {
  1670. "name": "name",
  1671. "type": "String",
  1672. "isCollection": false,
  1673. "description": "文件名称."
  1674. },
  1675. {
  1676. "name": "alias",
  1677. "type": "String",
  1678. "isCollection": false,
  1679. "description": "文件别名."
  1680. },
  1681. {
  1682. "name": "description",
  1683. "type": "String",
  1684. "isCollection": false,
  1685. "description": "描述."
  1686. },
  1687. {
  1688. "name": "application",
  1689. "type": "String",
  1690. "isCollection": false,
  1691. "description": "文件所属应用."
  1692. },
  1693. {
  1694. "name": "lastUpdatePerson",
  1695. "type": "String",
  1696. "isCollection": false,
  1697. "description": "最后的编辑者."
  1698. },
  1699. {
  1700. "name": "lastUpdateTime",
  1701. "type": "Date",
  1702. "isCollection": false,
  1703. "description": "最后的编辑时间."
  1704. },
  1705. {
  1706. "name": "fileName",
  1707. "type": "String",
  1708. "isCollection": false,
  1709. "description": "文件名称."
  1710. },
  1711. {
  1712. "name": "length",
  1713. "type": "Long",
  1714. "isCollection": false,
  1715. "description": "文件大小."
  1716. },
  1717. {
  1718. "name": "createTime",
  1719. "type": "Date",
  1720. "isCollection": false,
  1721. "description": "创建时间,自动生成,索引创建在约束中."
  1722. },
  1723. {
  1724. "name": "updateTime",
  1725. "type": "Date",
  1726. "isCollection": false,
  1727. "description": "修改时间,自动生成,索引创建在约束中."
  1728. }
  1729. ]
  1730. },
  1731. {
  1732. "name": "listPrev",
  1733. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionListPrev",
  1734. "description": "列示文件对象,上一页.",
  1735. "type": "GET",
  1736. "path": "jaxrs/file/list/{id}/prev/{count}",
  1737. "contentType": "application/json",
  1738. "resultContentType": "application/json; charset\u003dUTF-8",
  1739. "useJsonElementParameter": false,
  1740. "pathParameters": [
  1741. {
  1742. "name": "count",
  1743. "type": "Integer",
  1744. "description": "数量"
  1745. },
  1746. {
  1747. "name": "id",
  1748. "type": "String",
  1749. "description": "标识"
  1750. }
  1751. ],
  1752. "formParameters": [],
  1753. "queryParameters": [],
  1754. "ins": [],
  1755. "outs": [
  1756. {
  1757. "name": "rank",
  1758. "type": "Long",
  1759. "isCollection": false,
  1760. "description": "排序号"
  1761. },
  1762. {
  1763. "name": "id",
  1764. "type": "String",
  1765. "isCollection": false,
  1766. "description": "数据库主键,自动生成."
  1767. },
  1768. {
  1769. "name": "name",
  1770. "type": "String",
  1771. "isCollection": false,
  1772. "description": "文件名称."
  1773. },
  1774. {
  1775. "name": "alias",
  1776. "type": "String",
  1777. "isCollection": false,
  1778. "description": "文件别名."
  1779. },
  1780. {
  1781. "name": "description",
  1782. "type": "String",
  1783. "isCollection": false,
  1784. "description": "描述."
  1785. },
  1786. {
  1787. "name": "application",
  1788. "type": "String",
  1789. "isCollection": false,
  1790. "description": "文件所属应用."
  1791. },
  1792. {
  1793. "name": "lastUpdatePerson",
  1794. "type": "String",
  1795. "isCollection": false,
  1796. "description": "最后的编辑者."
  1797. },
  1798. {
  1799. "name": "lastUpdateTime",
  1800. "type": "Date",
  1801. "isCollection": false,
  1802. "description": "最后的编辑时间."
  1803. },
  1804. {
  1805. "name": "fileName",
  1806. "type": "String",
  1807. "isCollection": false,
  1808. "description": "文件名称."
  1809. },
  1810. {
  1811. "name": "length",
  1812. "type": "Long",
  1813. "isCollection": false,
  1814. "description": "文件大小."
  1815. },
  1816. {
  1817. "name": "createTime",
  1818. "type": "Date",
  1819. "isCollection": false,
  1820. "description": "创建时间,自动生成,索引创建在约束中."
  1821. },
  1822. {
  1823. "name": "updateTime",
  1824. "type": "Date",
  1825. "isCollection": false,
  1826. "description": "修改时间,自动生成,索引创建在约束中."
  1827. }
  1828. ]
  1829. },
  1830. {
  1831. "name": "listWithApplication",
  1832. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionListWithApplication",
  1833. "description": "根据应用列示文件.",
  1834. "type": "GET",
  1835. "path": "jaxrs/file/list/application/{applicationFlag}",
  1836. "contentType": "application/json",
  1837. "resultContentType": "application/json; charset\u003dUTF-8",
  1838. "useJsonElementParameter": false,
  1839. "pathParameters": [
  1840. {
  1841. "name": "applicationFlag",
  1842. "type": "String",
  1843. "description": "应用标识"
  1844. }
  1845. ],
  1846. "formParameters": [],
  1847. "queryParameters": [],
  1848. "ins": [],
  1849. "outs": [
  1850. {
  1851. "name": "id",
  1852. "type": "String",
  1853. "isCollection": false,
  1854. "description": "数据库主键,自动生成."
  1855. },
  1856. {
  1857. "name": "name",
  1858. "type": "String",
  1859. "isCollection": false,
  1860. "description": "文件名称."
  1861. },
  1862. {
  1863. "name": "alias",
  1864. "type": "String",
  1865. "isCollection": false,
  1866. "description": "文件别名."
  1867. },
  1868. {
  1869. "name": "description",
  1870. "type": "String",
  1871. "isCollection": false,
  1872. "description": "描述."
  1873. },
  1874. {
  1875. "name": "application",
  1876. "type": "String",
  1877. "isCollection": false,
  1878. "description": "文件所属应用."
  1879. },
  1880. {
  1881. "name": "lastUpdatePerson",
  1882. "type": "String",
  1883. "isCollection": false,
  1884. "description": "最后的编辑者."
  1885. },
  1886. {
  1887. "name": "lastUpdateTime",
  1888. "type": "Date",
  1889. "isCollection": false,
  1890. "description": "最后的编辑时间."
  1891. },
  1892. {
  1893. "name": "fileName",
  1894. "type": "String",
  1895. "isCollection": false,
  1896. "description": "文件名称."
  1897. },
  1898. {
  1899. "name": "length",
  1900. "type": "Long",
  1901. "isCollection": false,
  1902. "description": "文件大小."
  1903. },
  1904. {
  1905. "name": "createTime",
  1906. "type": "Date",
  1907. "isCollection": false,
  1908. "description": "创建时间,自动生成,索引创建在约束中."
  1909. },
  1910. {
  1911. "name": "updateTime",
  1912. "type": "Date",
  1913. "isCollection": false,
  1914. "description": "修改时间,自动生成,索引创建在约束中."
  1915. }
  1916. ]
  1917. },
  1918. {
  1919. "name": "update",
  1920. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionEdit",
  1921. "description": "更新文件.",
  1922. "type": "PUT",
  1923. "path": "jaxrs/file/{id}",
  1924. "contentType": "application/json",
  1925. "resultContentType": "application/json; charset\u003dUTF-8",
  1926. "useJsonElementParameter": false,
  1927. "pathParameters": [
  1928. {
  1929. "name": "id",
  1930. "type": "String",
  1931. "description": "标识"
  1932. }
  1933. ],
  1934. "formParameters": [],
  1935. "queryParameters": [],
  1936. "ins": [
  1937. {
  1938. "name": "name",
  1939. "type": "String",
  1940. "isCollection": false,
  1941. "description": "文件名称.",
  1942. "isBaseType": true
  1943. },
  1944. {
  1945. "name": "alias",
  1946. "type": "String",
  1947. "isCollection": false,
  1948. "description": "文件别名.",
  1949. "isBaseType": true
  1950. },
  1951. {
  1952. "name": "description",
  1953. "type": "String",
  1954. "isCollection": false,
  1955. "description": "描述.",
  1956. "isBaseType": true
  1957. },
  1958. {
  1959. "name": "application",
  1960. "type": "String",
  1961. "isCollection": false,
  1962. "description": "文件所属应用.",
  1963. "isBaseType": true
  1964. },
  1965. {
  1966. "name": "lastUpdatePerson",
  1967. "type": "String",
  1968. "isCollection": false,
  1969. "description": "最后的编辑者.",
  1970. "isBaseType": true
  1971. },
  1972. {
  1973. "name": "lastUpdateTime",
  1974. "type": "Date",
  1975. "isCollection": false,
  1976. "description": "最后的编辑时间.",
  1977. "isBaseType": true
  1978. },
  1979. {
  1980. "name": "data",
  1981. "type": "String",
  1982. "isCollection": false,
  1983. "description": "编码后文本内容.",
  1984. "isBaseType": true
  1985. },
  1986. {
  1987. "name": "fileName",
  1988. "type": "String",
  1989. "isCollection": false,
  1990. "description": "文件名称.",
  1991. "isBaseType": true
  1992. },
  1993. {
  1994. "name": "length",
  1995. "type": "Long",
  1996. "isCollection": false,
  1997. "description": "文件大小.",
  1998. "isBaseType": true
  1999. }
  2000. ],
  2001. "outs": [
  2002. {
  2003. "name": "id",
  2004. "type": "String",
  2005. "isCollection": false,
  2006. "description": "id"
  2007. }
  2008. ]
  2009. },
  2010. {
  2011. "name": "upload",
  2012. "className": "com.x.processplatform.assemble.designer.jaxrs.file.ActionUpload",
  2013. "description": "上传文件内容.",
  2014. "type": "POST",
  2015. "path": "jaxrs/file/{id}/upload",
  2016. "contentType": "multipart/form-data",
  2017. "resultContentType": "application/json; charset\u003dUTF-8",
  2018. "useJsonElementParameter": false,
  2019. "pathParameters": [
  2020. {
  2021. "name": "id",
  2022. "type": "String",
  2023. "description": "标识"
  2024. }
  2025. ],
  2026. "formParameters": [
  2027. {
  2028. "name": "file",
  2029. "type": "File",
  2030. "description": "文件内容"
  2031. },
  2032. {
  2033. "name": "fileName",
  2034. "type": "String",
  2035. "description": "附件名称"
  2036. }
  2037. ],
  2038. "queryParameters": [],
  2039. "ins": [],
  2040. "outs": [
  2041. {
  2042. "name": "value",
  2043. "type": "Boolean",
  2044. "isCollection": false,
  2045. "description": "布尔值."
  2046. }
  2047. ]
  2048. }
  2049. ]
  2050. },
  2051. {
  2052. "name": "FireScheduleAction",
  2053. "className": "com.x.base.core.project.jaxrs.fireschedule.FireScheduleAction",
  2054. "description": "触发任务",
  2055. "methods": [
  2056. {
  2057. "name": "execute",
  2058. "className": "com.x.base.core.project.jaxrs.fireschedule.ActionExecute",
  2059. "description": "接受x_program_center发送过来的运行schedule.",
  2060. "type": "GET",
  2061. "path": "jaxrs/fireschedule/classname/{className}",
  2062. "contentType": "application/json",
  2063. "useJsonElementParameter": false,
  2064. "pathParameters": [
  2065. {
  2066. "name": "className",
  2067. "type": "String",
  2068. "description": "运行类"
  2069. }
  2070. ],
  2071. "formParameters": [],
  2072. "queryParameters": [],
  2073. "ins": [],
  2074. "outs": [
  2075. {
  2076. "name": "value",
  2077. "type": "Boolean",
  2078. "isCollection": false,
  2079. "description": "布尔值."
  2080. }
  2081. ]
  2082. }
  2083. ]
  2084. },
  2085. {
  2086. "name": "FormAction",
  2087. "className": "com.x.processplatform.assemble.designer.jaxrs.form.FormAction",
  2088. "description": "表单",
  2089. "methods": [
  2090. {
  2091. "name": "create",
  2092. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionCreate",
  2093. "description": "创建表单.",
  2094. "type": "POST",
  2095. "path": "jaxrs/form",
  2096. "contentType": "application/json",
  2097. "resultContentType": "application/json; charset\u003dUTF-8",
  2098. "useJsonElementParameter": false,
  2099. "pathParameters": [],
  2100. "formParameters": [],
  2101. "queryParameters": [],
  2102. "ins": [
  2103. {
  2104. "name": "formFieldList",
  2105. "type": "List\u003cWiFormField\u003e",
  2106. "isCollection": true,
  2107. "description": "字段",
  2108. "isBaseType": false
  2109. },
  2110. {
  2111. "name": "name",
  2112. "type": "String",
  2113. "isCollection": false,
  2114. "description": "名称.",
  2115. "isBaseType": true
  2116. },
  2117. {
  2118. "name": "alias",
  2119. "type": "String",
  2120. "isCollection": false,
  2121. "description": "表单别名.",
  2122. "isBaseType": true
  2123. },
  2124. {
  2125. "name": "description",
  2126. "type": "String",
  2127. "isCollection": false,
  2128. "description": "描述.",
  2129. "isBaseType": true
  2130. },
  2131. {
  2132. "name": "application",
  2133. "type": "String",
  2134. "isCollection": false,
  2135. "description": "表单所属应用.",
  2136. "isBaseType": true
  2137. },
  2138. {
  2139. "name": "icon",
  2140. "type": "String",
  2141. "isCollection": false,
  2142. "description": "icon Base64编码后的文本.",
  2143. "isBaseType": true
  2144. },
  2145. {
  2146. "name": "data",
  2147. "type": "String",
  2148. "isCollection": false,
  2149. "description": "文本内容.",
  2150. "isBaseType": true
  2151. },
  2152. {
  2153. "name": "mobileData",
  2154. "type": "String",
  2155. "isCollection": false,
  2156. "description": "移动端文本内容.",
  2157. "isBaseType": true
  2158. },
  2159. {
  2160. "name": "hasMobile",
  2161. "type": "Boolean",
  2162. "isCollection": false,
  2163. "description": "是否有移动端内容.",
  2164. "isBaseType": true
  2165. }
  2166. ],
  2167. "outs": [
  2168. {
  2169. "name": "id",
  2170. "type": "String",
  2171. "isCollection": false,
  2172. "description": "id"
  2173. }
  2174. ]
  2175. },
  2176. {
  2177. "name": "delete",
  2178. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionDelete",
  2179. "description": "删除表单.",
  2180. "type": "DELETE",
  2181. "path": "jaxrs/form/{id}",
  2182. "contentType": "application/json",
  2183. "resultContentType": "application/json; charset\u003dUTF-8",
  2184. "useJsonElementParameter": false,
  2185. "pathParameters": [
  2186. {
  2187. "name": "id",
  2188. "type": "String",
  2189. "description": "标识"
  2190. }
  2191. ],
  2192. "formParameters": [],
  2193. "queryParameters": [],
  2194. "ins": [],
  2195. "outs": [
  2196. {
  2197. "name": "id",
  2198. "type": "String",
  2199. "isCollection": false,
  2200. "description": "id"
  2201. }
  2202. ]
  2203. },
  2204. {
  2205. "name": "get",
  2206. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionGet",
  2207. "description": "获取表单内容.",
  2208. "type": "GET",
  2209. "path": "jaxrs/form/{id}",
  2210. "contentType": "application/json",
  2211. "resultContentType": "application/json; charset\u003dUTF-8",
  2212. "useJsonElementParameter": false,
  2213. "pathParameters": [
  2214. {
  2215. "name": "id",
  2216. "type": "String",
  2217. "description": "标识"
  2218. }
  2219. ],
  2220. "formParameters": [],
  2221. "queryParameters": [],
  2222. "ins": [],
  2223. "outs": [
  2224. {
  2225. "name": "id",
  2226. "type": "String",
  2227. "isCollection": false,
  2228. "description": "数据库主键,自动生成."
  2229. },
  2230. {
  2231. "name": "name",
  2232. "type": "String",
  2233. "isCollection": false,
  2234. "description": "名称."
  2235. },
  2236. {
  2237. "name": "alias",
  2238. "type": "String",
  2239. "isCollection": false,
  2240. "description": "表单别名."
  2241. },
  2242. {
  2243. "name": "description",
  2244. "type": "String",
  2245. "isCollection": false,
  2246. "description": "描述."
  2247. },
  2248. {
  2249. "name": "application",
  2250. "type": "String",
  2251. "isCollection": false,
  2252. "description": "表单所属应用."
  2253. },
  2254. {
  2255. "name": "lastUpdatePerson",
  2256. "type": "String",
  2257. "isCollection": false,
  2258. "description": "最后的编辑者."
  2259. },
  2260. {
  2261. "name": "lastUpdateTime",
  2262. "type": "Date",
  2263. "isCollection": false,
  2264. "description": "最后的编辑时间."
  2265. },
  2266. {
  2267. "name": "icon",
  2268. "type": "String",
  2269. "isCollection": false,
  2270. "description": "icon Base64编码后的文本."
  2271. },
  2272. {
  2273. "name": "data",
  2274. "type": "String",
  2275. "isCollection": false,
  2276. "description": "文本内容."
  2277. },
  2278. {
  2279. "name": "mobileData",
  2280. "type": "String",
  2281. "isCollection": false,
  2282. "description": "移动端文本内容."
  2283. },
  2284. {
  2285. "name": "hasMobile",
  2286. "type": "Boolean",
  2287. "isCollection": false,
  2288. "description": "是否有移动端内容."
  2289. },
  2290. {
  2291. "name": "createTime",
  2292. "type": "Date",
  2293. "isCollection": false,
  2294. "description": "创建时间,自动生成,索引创建在约束中."
  2295. },
  2296. {
  2297. "name": "updateTime",
  2298. "type": "Date",
  2299. "isCollection": false,
  2300. "description": "修改时间,自动生成,索引创建在约束中."
  2301. }
  2302. ]
  2303. },
  2304. {
  2305. "name": "listFornFiledWithApplication",
  2306. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionListFormFieldWithApplication",
  2307. "description": "根据指定的应用获取应用下所有表单包含的字段字段信息.",
  2308. "type": "GET",
  2309. "path": "jaxrs/form/list/formfield/application/{applicationId}",
  2310. "contentType": "application/json",
  2311. "resultContentType": "application/json; charset\u003dUTF-8",
  2312. "useJsonElementParameter": false,
  2313. "pathParameters": [
  2314. {
  2315. "name": "applicationId",
  2316. "type": "String",
  2317. "description": "应用标识"
  2318. }
  2319. ],
  2320. "formParameters": [],
  2321. "queryParameters": [],
  2322. "ins": [],
  2323. "outs": []
  2324. },
  2325. {
  2326. "name": "listFornFiledWithForm",
  2327. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionListFormFieldWithForm",
  2328. "description": "根据指定的Form获取所有包含的字段信息.",
  2329. "type": "GET",
  2330. "path": "jaxrs/form/list/{id}/formfield",
  2331. "contentType": "application/json",
  2332. "resultContentType": "application/json; charset\u003dUTF-8",
  2333. "useJsonElementParameter": false,
  2334. "pathParameters": [
  2335. {
  2336. "name": "id",
  2337. "type": "String",
  2338. "description": "标识"
  2339. }
  2340. ],
  2341. "formParameters": [],
  2342. "queryParameters": [],
  2343. "ins": [],
  2344. "outs": []
  2345. },
  2346. {
  2347. "name": "listNext",
  2348. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionListNext",
  2349. "description": "列示Form对象,下一页.",
  2350. "type": "GET",
  2351. "path": "jaxrs/form/list/{id}/next/{count}",
  2352. "contentType": "application/json",
  2353. "resultContentType": "application/json; charset\u003dUTF-8",
  2354. "useJsonElementParameter": false,
  2355. "pathParameters": [
  2356. {
  2357. "name": "count",
  2358. "type": "Integer",
  2359. "description": "数量"
  2360. },
  2361. {
  2362. "name": "id",
  2363. "type": "String",
  2364. "description": "标识"
  2365. }
  2366. ],
  2367. "formParameters": [],
  2368. "queryParameters": [],
  2369. "ins": [],
  2370. "outs": [
  2371. {
  2372. "name": "rank",
  2373. "type": "Long",
  2374. "isCollection": false,
  2375. "description": "排序号"
  2376. },
  2377. {
  2378. "name": "id",
  2379. "type": "String",
  2380. "isCollection": false,
  2381. "description": "数据库主键,自动生成."
  2382. },
  2383. {
  2384. "name": "name",
  2385. "type": "String",
  2386. "isCollection": false,
  2387. "description": "名称."
  2388. },
  2389. {
  2390. "name": "alias",
  2391. "type": "String",
  2392. "isCollection": false,
  2393. "description": "表单别名."
  2394. },
  2395. {
  2396. "name": "description",
  2397. "type": "String",
  2398. "isCollection": false,
  2399. "description": "描述."
  2400. },
  2401. {
  2402. "name": "application",
  2403. "type": "String",
  2404. "isCollection": false,
  2405. "description": "表单所属应用."
  2406. },
  2407. {
  2408. "name": "lastUpdatePerson",
  2409. "type": "String",
  2410. "isCollection": false,
  2411. "description": "最后的编辑者."
  2412. },
  2413. {
  2414. "name": "lastUpdateTime",
  2415. "type": "Date",
  2416. "isCollection": false,
  2417. "description": "最后的编辑时间."
  2418. },
  2419. {
  2420. "name": "icon",
  2421. "type": "String",
  2422. "isCollection": false,
  2423. "description": "icon Base64编码后的文本."
  2424. },
  2425. {
  2426. "name": "hasMobile",
  2427. "type": "Boolean",
  2428. "isCollection": false,
  2429. "description": "是否有移动端内容."
  2430. },
  2431. {
  2432. "name": "createTime",
  2433. "type": "Date",
  2434. "isCollection": false,
  2435. "description": "创建时间,自动生成,索引创建在约束中."
  2436. },
  2437. {
  2438. "name": "updateTime",
  2439. "type": "Date",
  2440. "isCollection": false,
  2441. "description": "修改时间,自动生成,索引创建在约束中."
  2442. }
  2443. ]
  2444. },
  2445. {
  2446. "name": "listPrev",
  2447. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionListPrev",
  2448. "description": "列示Form对象,上一页.",
  2449. "type": "GET",
  2450. "path": "jaxrs/form/list/{id}/prev/{count}",
  2451. "contentType": "application/json",
  2452. "resultContentType": "application/json; charset\u003dUTF-8",
  2453. "useJsonElementParameter": false,
  2454. "pathParameters": [
  2455. {
  2456. "name": "count",
  2457. "type": "Integer",
  2458. "description": "数量"
  2459. },
  2460. {
  2461. "name": "id",
  2462. "type": "String",
  2463. "description": "标识"
  2464. }
  2465. ],
  2466. "formParameters": [],
  2467. "queryParameters": [],
  2468. "ins": [],
  2469. "outs": [
  2470. {
  2471. "name": "rank",
  2472. "type": "Long",
  2473. "isCollection": false,
  2474. "description": "排序号"
  2475. },
  2476. {
  2477. "name": "id",
  2478. "type": "String",
  2479. "isCollection": false,
  2480. "description": "数据库主键,自动生成."
  2481. },
  2482. {
  2483. "name": "name",
  2484. "type": "String",
  2485. "isCollection": false,
  2486. "description": "名称."
  2487. },
  2488. {
  2489. "name": "alias",
  2490. "type": "String",
  2491. "isCollection": false,
  2492. "description": "表单别名."
  2493. },
  2494. {
  2495. "name": "description",
  2496. "type": "String",
  2497. "isCollection": false,
  2498. "description": "描述."
  2499. },
  2500. {
  2501. "name": "application",
  2502. "type": "String",
  2503. "isCollection": false,
  2504. "description": "表单所属应用."
  2505. },
  2506. {
  2507. "name": "lastUpdatePerson",
  2508. "type": "String",
  2509. "isCollection": false,
  2510. "description": "最后的编辑者."
  2511. },
  2512. {
  2513. "name": "lastUpdateTime",
  2514. "type": "Date",
  2515. "isCollection": false,
  2516. "description": "最后的编辑时间."
  2517. },
  2518. {
  2519. "name": "icon",
  2520. "type": "String",
  2521. "isCollection": false,
  2522. "description": "icon Base64编码后的文本."
  2523. },
  2524. {
  2525. "name": "hasMobile",
  2526. "type": "Boolean",
  2527. "isCollection": false,
  2528. "description": "是否有移动端内容."
  2529. },
  2530. {
  2531. "name": "createTime",
  2532. "type": "Date",
  2533. "isCollection": false,
  2534. "description": "创建时间,自动生成,索引创建在约束中."
  2535. },
  2536. {
  2537. "name": "updateTime",
  2538. "type": "Date",
  2539. "isCollection": false,
  2540. "description": "修改时间,自动生成,索引创建在约束中."
  2541. }
  2542. ]
  2543. },
  2544. {
  2545. "name": "listWithApplication",
  2546. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionListWithApplication",
  2547. "description": "根据应用列示Form.",
  2548. "type": "GET",
  2549. "path": "jaxrs/form/list/application/{applicationId}",
  2550. "contentType": "application/json",
  2551. "resultContentType": "application/json; charset\u003dUTF-8",
  2552. "useJsonElementParameter": false,
  2553. "pathParameters": [
  2554. {
  2555. "name": "applicationId",
  2556. "type": "String",
  2557. "description": "应用标识"
  2558. }
  2559. ],
  2560. "formParameters": [],
  2561. "queryParameters": [],
  2562. "ins": [],
  2563. "outs": [
  2564. {
  2565. "name": "id",
  2566. "type": "String",
  2567. "isCollection": false,
  2568. "description": "数据库主键,自动生成."
  2569. },
  2570. {
  2571. "name": "name",
  2572. "type": "String",
  2573. "isCollection": false,
  2574. "description": "名称."
  2575. },
  2576. {
  2577. "name": "alias",
  2578. "type": "String",
  2579. "isCollection": false,
  2580. "description": "表单别名."
  2581. },
  2582. {
  2583. "name": "description",
  2584. "type": "String",
  2585. "isCollection": false,
  2586. "description": "描述."
  2587. },
  2588. {
  2589. "name": "application",
  2590. "type": "String",
  2591. "isCollection": false,
  2592. "description": "表单所属应用."
  2593. },
  2594. {
  2595. "name": "lastUpdatePerson",
  2596. "type": "String",
  2597. "isCollection": false,
  2598. "description": "最后的编辑者."
  2599. },
  2600. {
  2601. "name": "lastUpdateTime",
  2602. "type": "Date",
  2603. "isCollection": false,
  2604. "description": "最后的编辑时间."
  2605. },
  2606. {
  2607. "name": "icon",
  2608. "type": "String",
  2609. "isCollection": false,
  2610. "description": "icon Base64编码后的文本."
  2611. },
  2612. {
  2613. "name": "hasMobile",
  2614. "type": "Boolean",
  2615. "isCollection": false,
  2616. "description": "是否有移动端内容."
  2617. },
  2618. {
  2619. "name": "createTime",
  2620. "type": "Date",
  2621. "isCollection": false,
  2622. "description": "创建时间,自动生成,索引创建在约束中."
  2623. },
  2624. {
  2625. "name": "updateTime",
  2626. "type": "Date",
  2627. "isCollection": false,
  2628. "description": "修改时间,自动生成,索引创建在约束中."
  2629. }
  2630. ]
  2631. },
  2632. {
  2633. "name": "update",
  2634. "className": "com.x.processplatform.assemble.designer.jaxrs.form.ActionEdit",
  2635. "description": "更新表单.",
  2636. "type": "PUT",
  2637. "path": "jaxrs/form/{id}",
  2638. "contentType": "application/json",
  2639. "resultContentType": "application/json; charset\u003dUTF-8",
  2640. "useJsonElementParameter": false,
  2641. "pathParameters": [
  2642. {
  2643. "name": "id",
  2644. "type": "String",
  2645. "description": "标识"
  2646. }
  2647. ],
  2648. "formParameters": [],
  2649. "queryParameters": [],
  2650. "ins": [
  2651. {
  2652. "name": "formFieldList",
  2653. "type": "List\u003cWiFormField\u003e",
  2654. "isCollection": true,
  2655. "description": "字段",
  2656. "isBaseType": false
  2657. },
  2658. {
  2659. "name": "id",
  2660. "type": "String",
  2661. "isCollection": false,
  2662. "description": "数据库主键,自动生成.",
  2663. "isBaseType": true
  2664. },
  2665. {
  2666. "name": "name",
  2667. "type": "String",
  2668. "isCollection": false,
  2669. "description": "名称.",
  2670. "isBaseType": true
  2671. },
  2672. {
  2673. "name": "alias",
  2674. "type": "String",
  2675. "isCollection": false,
  2676. "description": "表单别名.",
  2677. "isBaseType": true
  2678. },
  2679. {
  2680. "name": "description",
  2681. "type": "String",
  2682. "isCollection": false,
  2683. "description": "描述.",
  2684. "isBaseType": true
  2685. },
  2686. {
  2687. "name": "application",
  2688. "type": "String",
  2689. "isCollection": false,
  2690. "description": "表单所属应用.",
  2691. "isBaseType": true
  2692. },
  2693. {
  2694. "name": "icon",
  2695. "type": "String",
  2696. "isCollection": false,
  2697. "description": "icon Base64编码后的文本.",
  2698. "isBaseType": true
  2699. },
  2700. {
  2701. "name": "data",
  2702. "type": "String",
  2703. "isCollection": false,
  2704. "description": "文本内容.",
  2705. "isBaseType": true
  2706. },
  2707. {
  2708. "name": "mobileData",
  2709. "type": "String",
  2710. "isCollection": false,
  2711. "description": "移动端文本内容.",
  2712. "isBaseType": true
  2713. },
  2714. {
  2715. "name": "hasMobile",
  2716. "type": "Boolean",
  2717. "isCollection": false,
  2718. "description": "是否有移动端内容.",
  2719. "isBaseType": true
  2720. }
  2721. ],
  2722. "outs": [
  2723. {
  2724. "name": "id",
  2725. "type": "String",
  2726. "isCollection": false,
  2727. "description": "id"
  2728. }
  2729. ]
  2730. }
  2731. ]
  2732. },
  2733. {
  2734. "name": "IdAction",
  2735. "className": "com.x.processplatform.assemble.designer.jaxrs.id.IdAction",
  2736. "description": "标识",
  2737. "methods": [
  2738. {
  2739. "name": "get",
  2740. "className": "com.x.processplatform.assemble.designer.jaxrs.id.ActionGet",
  2741. "description": "创建用于ID值的UUID",
  2742. "type": "GET",
  2743. "path": "jaxrs/id/{count}",
  2744. "contentType": "application/json",
  2745. "resultContentType": "application/json; charset\u003dUTF-8",
  2746. "useJsonElementParameter": false,
  2747. "pathParameters": [
  2748. {
  2749. "name": "count",
  2750. "type": "Integer",
  2751. "description": "数量"
  2752. }
  2753. ],
  2754. "formParameters": [],
  2755. "queryParameters": [],
  2756. "ins": [],
  2757. "outs": [
  2758. {
  2759. "name": "id",
  2760. "type": "String",
  2761. "isCollection": false,
  2762. "description": "id"
  2763. }
  2764. ]
  2765. }
  2766. ]
  2767. },
  2768. {
  2769. "name": "InputAction",
  2770. "className": "com.x.processplatform.assemble.designer.jaxrs.input.InputAction",
  2771. "description": "导入",
  2772. "methods": [
  2773. {
  2774. "name": "compare",
  2775. "className": "com.x.processplatform.assemble.designer.jaxrs.input.ActionCompare",
  2776. "description": "上传对比数据内容.",
  2777. "type": "PUT",
  2778. "path": "jaxrs/input/compare",
  2779. "contentType": "application/json",
  2780. "resultContentType": "application/json; charset\u003dUTF-8",
  2781. "useJsonElementParameter": false,
  2782. "pathParameters": [],
  2783. "formParameters": [],
  2784. "queryParameters": [],
  2785. "ins": [
  2786. {
  2787. "name": "processList",
  2788. "type": "List\u003cWrapProcess\u003e",
  2789. "isCollection": true,
  2790. "description": "导出的流程",
  2791. "isBaseType": false
  2792. },
  2793. {
  2794. "name": "formList",
  2795. "type": "List\u003cWrapForm\u003e",
  2796. "isCollection": true,
  2797. "description": "导出的表单",
  2798. "isBaseType": false
  2799. },
  2800. {
  2801. "name": "applicationDictList",
  2802. "type": "List\u003cWrapApplicationDict\u003e",
  2803. "isCollection": true,
  2804. "description": "导出的数据字典",
  2805. "isBaseType": false
  2806. },
  2807. {
  2808. "name": "scriptList",
  2809. "type": "List\u003cWrapScript\u003e",
  2810. "isCollection": true,
  2811. "description": "导出的脚本",
  2812. "isBaseType": false
  2813. },
  2814. {
  2815. "name": "fileList",
  2816. "type": "List\u003cWrapFile\u003e",
  2817. "isCollection": true,
  2818. "description": "导出的文件",
  2819. "isBaseType": false
  2820. },
  2821. {
  2822. "name": "id",
  2823. "type": "String",
  2824. "isCollection": false,
  2825. "description": "数据库主键,自动生成.",
  2826. "isBaseType": true
  2827. },
  2828. {
  2829. "name": "name",
  2830. "type": "String",
  2831. "isCollection": false,
  2832. "description": "名称.",
  2833. "isBaseType": true
  2834. },
  2835. {
  2836. "name": "alias",
  2837. "type": "String",
  2838. "isCollection": false,
  2839. "description": "应用别名,如果有必须唯一.",
  2840. "isBaseType": true
  2841. },
  2842. {
  2843. "name": "description",
  2844. "type": "String",
  2845. "isCollection": false,
  2846. "description": "描述.",
  2847. "isBaseType": true
  2848. },
  2849. {
  2850. "name": "availableIdentityList",
  2851. "type": "List\u003cString\u003e",
  2852. "isCollection": true,
  2853. "description": "在指定启动时候,允许新建Work的用户.",
  2854. "isBaseType": true
  2855. },
  2856. {
  2857. "name": "availableUnitList",
  2858. "type": "List\u003cString\u003e",
  2859. "isCollection": true,
  2860. "description": "在指定启动时候,允许新建Work的部门.",
  2861. "isBaseType": true
  2862. },
  2863. {
  2864. "name": "applicationCategory",
  2865. "type": "String",
  2866. "isCollection": false,
  2867. "description": "应用分类.",
  2868. "isBaseType": true
  2869. },
  2870. {
  2871. "name": "icon",
  2872. "type": "String",
  2873. "isCollection": false,
  2874. "description": "icon Base64编码后的文本.",
  2875. "isBaseType": true
  2876. },
  2877. {
  2878. "name": "iconHue",
  2879. "type": "String",
  2880. "isCollection": false,
  2881. "description": "icon的主色调",
  2882. "isBaseType": true
  2883. },
  2884. {
  2885. "name": "controllerList",
  2886. "type": "List\u003cString\u003e",
  2887. "isCollection": true,
  2888. "description": "应用管理者.",
  2889. "isBaseType": true
  2890. },
  2891. {
  2892. "name": "creatorPerson",
  2893. "type": "String",
  2894. "isCollection": false,
  2895. "description": "应用的创建者。",
  2896. "isBaseType": true
  2897. },
  2898. {
  2899. "name": "lastUpdateTime",
  2900. "type": "Date",
  2901. "isCollection": false,
  2902. "description": "应用的最后修改时间。",
  2903. "isBaseType": true
  2904. },
  2905. {
  2906. "name": "lastUpdatePerson",
  2907. "type": "String",
  2908. "isCollection": false,
  2909. "description": "应用的最后修改者",
  2910. "isBaseType": true
  2911. },
  2912. {
  2913. "name": "distributeFactor",
  2914. "type": "Integer",
  2915. "isCollection": false,
  2916. "description": "分布式存储标识位.",
  2917. "isBaseType": true
  2918. },
  2919. {
  2920. "name": "createTime",
  2921. "type": "Date",
  2922. "isCollection": false,
  2923. "description": "创建时间,自动生成,索引创建在约束中.",
  2924. "isBaseType": true
  2925. },
  2926. {
  2927. "name": "updateTime",
  2928. "type": "Date",
  2929. "isCollection": false,
  2930. "description": "修改时间,自动生成,索引创建在约束中.",
  2931. "isBaseType": true
  2932. },
  2933. {
  2934. "name": "sequence",
  2935. "type": "String",
  2936. "isCollection": false,
  2937. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中.",
  2938. "isBaseType": true
  2939. }
  2940. ],
  2941. "outs": [
  2942. {
  2943. "name": "name",
  2944. "type": "String",
  2945. "isCollection": false,
  2946. "description": "导入名称"
  2947. },
  2948. {
  2949. "name": "id",
  2950. "type": "String",
  2951. "isCollection": false,
  2952. "description": "导入id"
  2953. },
  2954. {
  2955. "name": "alias",
  2956. "type": "String",
  2957. "isCollection": false,
  2958. "description": "导入别名"
  2959. },
  2960. {
  2961. "name": "exist",
  2962. "type": "Boolean",
  2963. "isCollection": false,
  2964. "description": "是否已经存在"
  2965. },
  2966. {
  2967. "name": "existName",
  2968. "type": "String",
  2969. "isCollection": false,
  2970. "description": "已经存在名称"
  2971. },
  2972. {
  2973. "name": "existId",
  2974. "type": "String",
  2975. "isCollection": false,
  2976. "description": "已经存在id"
  2977. },
  2978. {
  2979. "name": "existAlias",
  2980. "type": "String",
  2981. "isCollection": false,
  2982. "description": "已经存在别名"
  2983. }
  2984. ]
  2985. },
  2986. {
  2987. "name": "cover",
  2988. "className": "com.x.processplatform.assemble.designer.jaxrs.input.ActionCover",
  2989. "description": "覆盖应用.",
  2990. "type": "PUT",
  2991. "path": "jaxrs/input/cover",
  2992. "contentType": "application/json",
  2993. "resultContentType": "application/json; charset\u003dUTF-8",
  2994. "useJsonElementParameter": false,
  2995. "pathParameters": [],
  2996. "formParameters": [],
  2997. "queryParameters": [],
  2998. "ins": [
  2999. {
  3000. "name": "processList",
  3001. "type": "List\u003cWrapProcess\u003e",
  3002. "isCollection": true,
  3003. "description": "导出的流程",
  3004. "isBaseType": false
  3005. },
  3006. {
  3007. "name": "formList",
  3008. "type": "List\u003cWrapForm\u003e",
  3009. "isCollection": true,
  3010. "description": "导出的表单",
  3011. "isBaseType": false
  3012. },
  3013. {
  3014. "name": "applicationDictList",
  3015. "type": "List\u003cWrapApplicationDict\u003e",
  3016. "isCollection": true,
  3017. "description": "导出的数据字典",
  3018. "isBaseType": false
  3019. },
  3020. {
  3021. "name": "scriptList",
  3022. "type": "List\u003cWrapScript\u003e",
  3023. "isCollection": true,
  3024. "description": "导出的脚本",
  3025. "isBaseType": false
  3026. },
  3027. {
  3028. "name": "fileList",
  3029. "type": "List\u003cWrapFile\u003e",
  3030. "isCollection": true,
  3031. "description": "导出的文件",
  3032. "isBaseType": false
  3033. },
  3034. {
  3035. "name": "id",
  3036. "type": "String",
  3037. "isCollection": false,
  3038. "description": "数据库主键,自动生成.",
  3039. "isBaseType": true
  3040. },
  3041. {
  3042. "name": "name",
  3043. "type": "String",
  3044. "isCollection": false,
  3045. "description": "名称.",
  3046. "isBaseType": true
  3047. },
  3048. {
  3049. "name": "alias",
  3050. "type": "String",
  3051. "isCollection": false,
  3052. "description": "应用别名,如果有必须唯一.",
  3053. "isBaseType": true
  3054. },
  3055. {
  3056. "name": "description",
  3057. "type": "String",
  3058. "isCollection": false,
  3059. "description": "描述.",
  3060. "isBaseType": true
  3061. },
  3062. {
  3063. "name": "availableIdentityList",
  3064. "type": "List\u003cString\u003e",
  3065. "isCollection": true,
  3066. "description": "在指定启动时候,允许新建Work的用户.",
  3067. "isBaseType": true
  3068. },
  3069. {
  3070. "name": "availableUnitList",
  3071. "type": "List\u003cString\u003e",
  3072. "isCollection": true,
  3073. "description": "在指定启动时候,允许新建Work的部门.",
  3074. "isBaseType": true
  3075. },
  3076. {
  3077. "name": "applicationCategory",
  3078. "type": "String",
  3079. "isCollection": false,
  3080. "description": "应用分类.",
  3081. "isBaseType": true
  3082. },
  3083. {
  3084. "name": "icon",
  3085. "type": "String",
  3086. "isCollection": false,
  3087. "description": "icon Base64编码后的文本.",
  3088. "isBaseType": true
  3089. },
  3090. {
  3091. "name": "iconHue",
  3092. "type": "String",
  3093. "isCollection": false,
  3094. "description": "icon的主色调",
  3095. "isBaseType": true
  3096. },
  3097. {
  3098. "name": "controllerList",
  3099. "type": "List\u003cString\u003e",
  3100. "isCollection": true,
  3101. "description": "应用管理者.",
  3102. "isBaseType": true
  3103. },
  3104. {
  3105. "name": "creatorPerson",
  3106. "type": "String",
  3107. "isCollection": false,
  3108. "description": "应用的创建者。",
  3109. "isBaseType": true
  3110. },
  3111. {
  3112. "name": "lastUpdateTime",
  3113. "type": "Date",
  3114. "isCollection": false,
  3115. "description": "应用的最后修改时间。",
  3116. "isBaseType": true
  3117. },
  3118. {
  3119. "name": "lastUpdatePerson",
  3120. "type": "String",
  3121. "isCollection": false,
  3122. "description": "应用的最后修改者",
  3123. "isBaseType": true
  3124. },
  3125. {
  3126. "name": "distributeFactor",
  3127. "type": "Integer",
  3128. "isCollection": false,
  3129. "description": "分布式存储标识位.",
  3130. "isBaseType": true
  3131. },
  3132. {
  3133. "name": "createTime",
  3134. "type": "Date",
  3135. "isCollection": false,
  3136. "description": "创建时间,自动生成,索引创建在约束中.",
  3137. "isBaseType": true
  3138. },
  3139. {
  3140. "name": "updateTime",
  3141. "type": "Date",
  3142. "isCollection": false,
  3143. "description": "修改时间,自动生成,索引创建在约束中.",
  3144. "isBaseType": true
  3145. },
  3146. {
  3147. "name": "sequence",
  3148. "type": "String",
  3149. "isCollection": false,
  3150. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中.",
  3151. "isBaseType": true
  3152. }
  3153. ],
  3154. "outs": [
  3155. {
  3156. "name": "id",
  3157. "type": "String",
  3158. "isCollection": false,
  3159. "description": "id"
  3160. }
  3161. ]
  3162. },
  3163. {
  3164. "name": "create",
  3165. "className": "com.x.processplatform.assemble.designer.jaxrs.input.ActionCreate",
  3166. "description": "创建应用.",
  3167. "type": "PUT",
  3168. "path": "jaxrs/input/create",
  3169. "contentType": "application/json",
  3170. "resultContentType": "application/json; charset\u003dUTF-8",
  3171. "useJsonElementParameter": false,
  3172. "pathParameters": [],
  3173. "formParameters": [],
  3174. "queryParameters": [],
  3175. "ins": [
  3176. {
  3177. "name": "processList",
  3178. "type": "List\u003cWrapProcess\u003e",
  3179. "isCollection": true,
  3180. "description": "导出的流程",
  3181. "isBaseType": false
  3182. },
  3183. {
  3184. "name": "formList",
  3185. "type": "List\u003cWrapForm\u003e",
  3186. "isCollection": true,
  3187. "description": "导出的表单",
  3188. "isBaseType": false
  3189. },
  3190. {
  3191. "name": "applicationDictList",
  3192. "type": "List\u003cWrapApplicationDict\u003e",
  3193. "isCollection": true,
  3194. "description": "导出的数据字典",
  3195. "isBaseType": false
  3196. },
  3197. {
  3198. "name": "scriptList",
  3199. "type": "List\u003cWrapScript\u003e",
  3200. "isCollection": true,
  3201. "description": "导出的脚本",
  3202. "isBaseType": false
  3203. },
  3204. {
  3205. "name": "fileList",
  3206. "type": "List\u003cWrapFile\u003e",
  3207. "isCollection": true,
  3208. "description": "导出的文件",
  3209. "isBaseType": false
  3210. },
  3211. {
  3212. "name": "id",
  3213. "type": "String",
  3214. "isCollection": false,
  3215. "description": "数据库主键,自动生成.",
  3216. "isBaseType": true
  3217. },
  3218. {
  3219. "name": "name",
  3220. "type": "String",
  3221. "isCollection": false,
  3222. "description": "名称.",
  3223. "isBaseType": true
  3224. },
  3225. {
  3226. "name": "alias",
  3227. "type": "String",
  3228. "isCollection": false,
  3229. "description": "应用别名,如果有必须唯一.",
  3230. "isBaseType": true
  3231. },
  3232. {
  3233. "name": "description",
  3234. "type": "String",
  3235. "isCollection": false,
  3236. "description": "描述.",
  3237. "isBaseType": true
  3238. },
  3239. {
  3240. "name": "availableIdentityList",
  3241. "type": "List\u003cString\u003e",
  3242. "isCollection": true,
  3243. "description": "在指定启动时候,允许新建Work的用户.",
  3244. "isBaseType": true
  3245. },
  3246. {
  3247. "name": "availableUnitList",
  3248. "type": "List\u003cString\u003e",
  3249. "isCollection": true,
  3250. "description": "在指定启动时候,允许新建Work的部门.",
  3251. "isBaseType": true
  3252. },
  3253. {
  3254. "name": "applicationCategory",
  3255. "type": "String",
  3256. "isCollection": false,
  3257. "description": "应用分类.",
  3258. "isBaseType": true
  3259. },
  3260. {
  3261. "name": "icon",
  3262. "type": "String",
  3263. "isCollection": false,
  3264. "description": "icon Base64编码后的文本.",
  3265. "isBaseType": true
  3266. },
  3267. {
  3268. "name": "iconHue",
  3269. "type": "String",
  3270. "isCollection": false,
  3271. "description": "icon的主色调",
  3272. "isBaseType": true
  3273. },
  3274. {
  3275. "name": "controllerList",
  3276. "type": "List\u003cString\u003e",
  3277. "isCollection": true,
  3278. "description": "应用管理者.",
  3279. "isBaseType": true
  3280. },
  3281. {
  3282. "name": "creatorPerson",
  3283. "type": "String",
  3284. "isCollection": false,
  3285. "description": "应用的创建者。",
  3286. "isBaseType": true
  3287. },
  3288. {
  3289. "name": "lastUpdateTime",
  3290. "type": "Date",
  3291. "isCollection": false,
  3292. "description": "应用的最后修改时间。",
  3293. "isBaseType": true
  3294. },
  3295. {
  3296. "name": "lastUpdatePerson",
  3297. "type": "String",
  3298. "isCollection": false,
  3299. "description": "应用的最后修改者",
  3300. "isBaseType": true
  3301. },
  3302. {
  3303. "name": "distributeFactor",
  3304. "type": "Integer",
  3305. "isCollection": false,
  3306. "description": "分布式存储标识位.",
  3307. "isBaseType": true
  3308. },
  3309. {
  3310. "name": "createTime",
  3311. "type": "Date",
  3312. "isCollection": false,
  3313. "description": "创建时间,自动生成,索引创建在约束中.",
  3314. "isBaseType": true
  3315. },
  3316. {
  3317. "name": "updateTime",
  3318. "type": "Date",
  3319. "isCollection": false,
  3320. "description": "修改时间,自动生成,索引创建在约束中.",
  3321. "isBaseType": true
  3322. },
  3323. {
  3324. "name": "sequence",
  3325. "type": "String",
  3326. "isCollection": false,
  3327. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中.",
  3328. "isBaseType": true
  3329. }
  3330. ],
  3331. "outs": [
  3332. {
  3333. "name": "id",
  3334. "type": "String",
  3335. "isCollection": false,
  3336. "description": "id"
  3337. }
  3338. ]
  3339. },
  3340. {
  3341. "name": "prepareCover",
  3342. "className": "com.x.processplatform.assemble.designer.jaxrs.input.ActionPrepareCover",
  3343. "description": "准备覆盖应用.",
  3344. "type": "PUT",
  3345. "path": "jaxrs/input/prepare/cover",
  3346. "contentType": "application/json",
  3347. "resultContentType": "application/json; charset\u003dUTF-8",
  3348. "useJsonElementParameter": false,
  3349. "pathParameters": [],
  3350. "formParameters": [],
  3351. "queryParameters": [],
  3352. "ins": [
  3353. {
  3354. "name": "processList",
  3355. "type": "List\u003cWrapProcess\u003e",
  3356. "isCollection": true,
  3357. "description": "导出的流程",
  3358. "isBaseType": false
  3359. },
  3360. {
  3361. "name": "formList",
  3362. "type": "List\u003cWrapForm\u003e",
  3363. "isCollection": true,
  3364. "description": "导出的表单",
  3365. "isBaseType": false
  3366. },
  3367. {
  3368. "name": "applicationDictList",
  3369. "type": "List\u003cWrapApplicationDict\u003e",
  3370. "isCollection": true,
  3371. "description": "导出的数据字典",
  3372. "isBaseType": false
  3373. },
  3374. {
  3375. "name": "scriptList",
  3376. "type": "List\u003cWrapScript\u003e",
  3377. "isCollection": true,
  3378. "description": "导出的脚本",
  3379. "isBaseType": false
  3380. },
  3381. {
  3382. "name": "fileList",
  3383. "type": "List\u003cWrapFile\u003e",
  3384. "isCollection": true,
  3385. "description": "导出的文件",
  3386. "isBaseType": false
  3387. },
  3388. {
  3389. "name": "id",
  3390. "type": "String",
  3391. "isCollection": false,
  3392. "description": "数据库主键,自动生成.",
  3393. "isBaseType": true
  3394. },
  3395. {
  3396. "name": "name",
  3397. "type": "String",
  3398. "isCollection": false,
  3399. "description": "名称.",
  3400. "isBaseType": true
  3401. },
  3402. {
  3403. "name": "alias",
  3404. "type": "String",
  3405. "isCollection": false,
  3406. "description": "应用别名,如果有必须唯一.",
  3407. "isBaseType": true
  3408. },
  3409. {
  3410. "name": "description",
  3411. "type": "String",
  3412. "isCollection": false,
  3413. "description": "描述.",
  3414. "isBaseType": true
  3415. },
  3416. {
  3417. "name": "availableIdentityList",
  3418. "type": "List\u003cString\u003e",
  3419. "isCollection": true,
  3420. "description": "在指定启动时候,允许新建Work的用户.",
  3421. "isBaseType": true
  3422. },
  3423. {
  3424. "name": "availableUnitList",
  3425. "type": "List\u003cString\u003e",
  3426. "isCollection": true,
  3427. "description": "在指定启动时候,允许新建Work的部门.",
  3428. "isBaseType": true
  3429. },
  3430. {
  3431. "name": "applicationCategory",
  3432. "type": "String",
  3433. "isCollection": false,
  3434. "description": "应用分类.",
  3435. "isBaseType": true
  3436. },
  3437. {
  3438. "name": "icon",
  3439. "type": "String",
  3440. "isCollection": false,
  3441. "description": "icon Base64编码后的文本.",
  3442. "isBaseType": true
  3443. },
  3444. {
  3445. "name": "iconHue",
  3446. "type": "String",
  3447. "isCollection": false,
  3448. "description": "icon的主色调",
  3449. "isBaseType": true
  3450. },
  3451. {
  3452. "name": "controllerList",
  3453. "type": "List\u003cString\u003e",
  3454. "isCollection": true,
  3455. "description": "应用管理者.",
  3456. "isBaseType": true
  3457. },
  3458. {
  3459. "name": "creatorPerson",
  3460. "type": "String",
  3461. "isCollection": false,
  3462. "description": "应用的创建者。",
  3463. "isBaseType": true
  3464. },
  3465. {
  3466. "name": "lastUpdateTime",
  3467. "type": "Date",
  3468. "isCollection": false,
  3469. "description": "应用的最后修改时间。",
  3470. "isBaseType": true
  3471. },
  3472. {
  3473. "name": "lastUpdatePerson",
  3474. "type": "String",
  3475. "isCollection": false,
  3476. "description": "应用的最后修改者",
  3477. "isBaseType": true
  3478. },
  3479. {
  3480. "name": "distributeFactor",
  3481. "type": "Integer",
  3482. "isCollection": false,
  3483. "description": "分布式存储标识位.",
  3484. "isBaseType": true
  3485. },
  3486. {
  3487. "name": "createTime",
  3488. "type": "Date",
  3489. "isCollection": false,
  3490. "description": "创建时间,自动生成,索引创建在约束中.",
  3491. "isBaseType": true
  3492. },
  3493. {
  3494. "name": "updateTime",
  3495. "type": "Date",
  3496. "isCollection": false,
  3497. "description": "修改时间,自动生成,索引创建在约束中.",
  3498. "isBaseType": true
  3499. },
  3500. {
  3501. "name": "sequence",
  3502. "type": "String",
  3503. "isCollection": false,
  3504. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中.",
  3505. "isBaseType": true
  3506. }
  3507. ],
  3508. "outs": []
  3509. },
  3510. {
  3511. "name": "prepareCreate",
  3512. "className": "com.x.processplatform.assemble.designer.jaxrs.input.ActionPrepareCreate",
  3513. "description": "准备创建应用.",
  3514. "type": "PUT",
  3515. "path": "jaxrs/input/prepare/create",
  3516. "contentType": "application/json",
  3517. "resultContentType": "application/json; charset\u003dUTF-8",
  3518. "useJsonElementParameter": false,
  3519. "pathParameters": [],
  3520. "formParameters": [],
  3521. "queryParameters": [],
  3522. "ins": [
  3523. {
  3524. "name": "processList",
  3525. "type": "List\u003cWrapProcess\u003e",
  3526. "isCollection": true,
  3527. "description": "导出的流程",
  3528. "isBaseType": false
  3529. },
  3530. {
  3531. "name": "formList",
  3532. "type": "List\u003cWrapForm\u003e",
  3533. "isCollection": true,
  3534. "description": "导出的表单",
  3535. "isBaseType": false
  3536. },
  3537. {
  3538. "name": "applicationDictList",
  3539. "type": "List\u003cWrapApplicationDict\u003e",
  3540. "isCollection": true,
  3541. "description": "导出的数据字典",
  3542. "isBaseType": false
  3543. },
  3544. {
  3545. "name": "scriptList",
  3546. "type": "List\u003cWrapScript\u003e",
  3547. "isCollection": true,
  3548. "description": "导出的脚本",
  3549. "isBaseType": false
  3550. },
  3551. {
  3552. "name": "fileList",
  3553. "type": "List\u003cWrapFile\u003e",
  3554. "isCollection": true,
  3555. "description": "导出的文件",
  3556. "isBaseType": false
  3557. },
  3558. {
  3559. "name": "id",
  3560. "type": "String",
  3561. "isCollection": false,
  3562. "description": "数据库主键,自动生成.",
  3563. "isBaseType": true
  3564. },
  3565. {
  3566. "name": "name",
  3567. "type": "String",
  3568. "isCollection": false,
  3569. "description": "名称.",
  3570. "isBaseType": true
  3571. },
  3572. {
  3573. "name": "alias",
  3574. "type": "String",
  3575. "isCollection": false,
  3576. "description": "应用别名,如果有必须唯一.",
  3577. "isBaseType": true
  3578. },
  3579. {
  3580. "name": "description",
  3581. "type": "String",
  3582. "isCollection": false,
  3583. "description": "描述.",
  3584. "isBaseType": true
  3585. },
  3586. {
  3587. "name": "availableIdentityList",
  3588. "type": "List\u003cString\u003e",
  3589. "isCollection": true,
  3590. "description": "在指定启动时候,允许新建Work的用户.",
  3591. "isBaseType": true
  3592. },
  3593. {
  3594. "name": "availableUnitList",
  3595. "type": "List\u003cString\u003e",
  3596. "isCollection": true,
  3597. "description": "在指定启动时候,允许新建Work的部门.",
  3598. "isBaseType": true
  3599. },
  3600. {
  3601. "name": "applicationCategory",
  3602. "type": "String",
  3603. "isCollection": false,
  3604. "description": "应用分类.",
  3605. "isBaseType": true
  3606. },
  3607. {
  3608. "name": "icon",
  3609. "type": "String",
  3610. "isCollection": false,
  3611. "description": "icon Base64编码后的文本.",
  3612. "isBaseType": true
  3613. },
  3614. {
  3615. "name": "iconHue",
  3616. "type": "String",
  3617. "isCollection": false,
  3618. "description": "icon的主色调",
  3619. "isBaseType": true
  3620. },
  3621. {
  3622. "name": "controllerList",
  3623. "type": "List\u003cString\u003e",
  3624. "isCollection": true,
  3625. "description": "应用管理者.",
  3626. "isBaseType": true
  3627. },
  3628. {
  3629. "name": "creatorPerson",
  3630. "type": "String",
  3631. "isCollection": false,
  3632. "description": "应用的创建者。",
  3633. "isBaseType": true
  3634. },
  3635. {
  3636. "name": "lastUpdateTime",
  3637. "type": "Date",
  3638. "isCollection": false,
  3639. "description": "应用的最后修改时间。",
  3640. "isBaseType": true
  3641. },
  3642. {
  3643. "name": "lastUpdatePerson",
  3644. "type": "String",
  3645. "isCollection": false,
  3646. "description": "应用的最后修改者",
  3647. "isBaseType": true
  3648. },
  3649. {
  3650. "name": "distributeFactor",
  3651. "type": "Integer",
  3652. "isCollection": false,
  3653. "description": "分布式存储标识位.",
  3654. "isBaseType": true
  3655. },
  3656. {
  3657. "name": "createTime",
  3658. "type": "Date",
  3659. "isCollection": false,
  3660. "description": "创建时间,自动生成,索引创建在约束中.",
  3661. "isBaseType": true
  3662. },
  3663. {
  3664. "name": "updateTime",
  3665. "type": "Date",
  3666. "isCollection": false,
  3667. "description": "修改时间,自动生成,索引创建在约束中.",
  3668. "isBaseType": true
  3669. },
  3670. {
  3671. "name": "sequence",
  3672. "type": "String",
  3673. "isCollection": false,
  3674. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中.",
  3675. "isBaseType": true
  3676. }
  3677. ],
  3678. "outs": []
  3679. }
  3680. ]
  3681. },
  3682. {
  3683. "name": "LoggerAction",
  3684. "className": "com.x.base.core.project.jaxrs.logger.LoggerAction",
  3685. "description": "日志操作",
  3686. "methods": [
  3687. {
  3688. "name": "debug",
  3689. "className": "com.x.base.core.project.jaxrs.logger.ActionDebug",
  3690. "description": "设置日志级别为DEBUG.",
  3691. "type": "GET",
  3692. "path": "jaxrs/logger/debug",
  3693. "contentType": "application/json",
  3694. "resultContentType": "application/json; charset\u003dUTF-8",
  3695. "useJsonElementParameter": false,
  3696. "pathParameters": [],
  3697. "formParameters": [],
  3698. "queryParameters": [],
  3699. "ins": [],
  3700. "outs": [
  3701. {
  3702. "name": "value",
  3703. "type": "Boolean",
  3704. "isCollection": false,
  3705. "description": "布尔值."
  3706. }
  3707. ]
  3708. },
  3709. {
  3710. "name": "get",
  3711. "className": "com.x.base.core.project.jaxrs.logger.ActionGet",
  3712. "description": "获取当前日志级别.",
  3713. "type": "GET",
  3714. "path": "jaxrs/logger",
  3715. "contentType": "application/json",
  3716. "resultContentType": "application/json; charset\u003dUTF-8",
  3717. "useJsonElementParameter": false,
  3718. "pathParameters": [],
  3719. "formParameters": [],
  3720. "queryParameters": [],
  3721. "ins": [],
  3722. "outs": [
  3723. {
  3724. "name": "value",
  3725. "type": "String",
  3726. "isCollection": false,
  3727. "description": "字符串值"
  3728. }
  3729. ]
  3730. },
  3731. {
  3732. "name": "info",
  3733. "className": "com.x.base.core.project.jaxrs.logger.ActionInfo",
  3734. "description": "设置日志级别为INFO",
  3735. "type": "GET",
  3736. "path": "jaxrs/logger/info",
  3737. "contentType": "application/json",
  3738. "resultContentType": "application/json; charset\u003dUTF-8",
  3739. "useJsonElementParameter": false,
  3740. "pathParameters": [],
  3741. "formParameters": [],
  3742. "queryParameters": [],
  3743. "ins": [],
  3744. "outs": [
  3745. {
  3746. "name": "value",
  3747. "type": "Boolean",
  3748. "isCollection": false,
  3749. "description": "布尔值."
  3750. }
  3751. ]
  3752. },
  3753. {
  3754. "name": "trace",
  3755. "className": "com.x.base.core.project.jaxrs.logger.ActionTrace",
  3756. "description": "设置日志级别为TRACE.",
  3757. "type": "GET",
  3758. "path": "jaxrs/logger/trace",
  3759. "contentType": "application/json",
  3760. "resultContentType": "application/json; charset\u003dUTF-8",
  3761. "useJsonElementParameter": false,
  3762. "pathParameters": [],
  3763. "formParameters": [],
  3764. "queryParameters": [],
  3765. "ins": [],
  3766. "outs": [
  3767. {
  3768. "name": "value",
  3769. "type": "Boolean",
  3770. "isCollection": false,
  3771. "description": "布尔值."
  3772. }
  3773. ]
  3774. },
  3775. {
  3776. "name": "warn",
  3777. "className": "com.x.base.core.project.jaxrs.logger.ActionWarn",
  3778. "description": "设置日志级别为WARN",
  3779. "type": "GET",
  3780. "path": "jaxrs/logger/warn",
  3781. "contentType": "application/json",
  3782. "resultContentType": "application/json; charset\u003dUTF-8",
  3783. "useJsonElementParameter": false,
  3784. "pathParameters": [],
  3785. "formParameters": [],
  3786. "queryParameters": [],
  3787. "ins": [],
  3788. "outs": [
  3789. {
  3790. "name": "value",
  3791. "type": "Boolean",
  3792. "isCollection": false,
  3793. "description": "布尔值."
  3794. }
  3795. ]
  3796. }
  3797. ]
  3798. },
  3799. {
  3800. "name": "OutputAction",
  3801. "className": "com.x.processplatform.assemble.designer.jaxrs.output.OutputAction",
  3802. "description": "导出",
  3803. "methods": [
  3804. {
  3805. "name": "list",
  3806. "className": "com.x.processplatform.assemble.designer.jaxrs.output.ActionList",
  3807. "description": "查看所有应用.",
  3808. "type": "GET",
  3809. "path": "jaxrs/output/list",
  3810. "contentType": "application/json",
  3811. "resultContentType": "application/json; charset\u003dUTF-8",
  3812. "useJsonElementParameter": false,
  3813. "pathParameters": [],
  3814. "formParameters": [],
  3815. "queryParameters": [],
  3816. "ins": [],
  3817. "outs": [
  3818. {
  3819. "name": "processList",
  3820. "type": "List\u003cWrapProcess\u003e",
  3821. "isCollection": true,
  3822. "description": "导出的流程"
  3823. },
  3824. {
  3825. "name": "formList",
  3826. "type": "List\u003cWrapForm\u003e",
  3827. "isCollection": true,
  3828. "description": "导出的表单"
  3829. },
  3830. {
  3831. "name": "applicationDictList",
  3832. "type": "List\u003cWrapApplicationDict\u003e",
  3833. "isCollection": true,
  3834. "description": "导出的数据字典"
  3835. },
  3836. {
  3837. "name": "scriptList",
  3838. "type": "List\u003cWrapScript\u003e",
  3839. "isCollection": true,
  3840. "description": "导出的脚本"
  3841. },
  3842. {
  3843. "name": "fileList",
  3844. "type": "List\u003cWrapFile\u003e",
  3845. "isCollection": true,
  3846. "description": "导出的文件"
  3847. },
  3848. {
  3849. "name": "id",
  3850. "type": "String",
  3851. "isCollection": false,
  3852. "description": "数据库主键,自动生成."
  3853. },
  3854. {
  3855. "name": "name",
  3856. "type": "String",
  3857. "isCollection": false,
  3858. "description": "名称."
  3859. },
  3860. {
  3861. "name": "alias",
  3862. "type": "String",
  3863. "isCollection": false,
  3864. "description": "应用别名,如果有必须唯一."
  3865. },
  3866. {
  3867. "name": "description",
  3868. "type": "String",
  3869. "isCollection": false,
  3870. "description": "描述."
  3871. },
  3872. {
  3873. "name": "applicationCategory",
  3874. "type": "String",
  3875. "isCollection": false,
  3876. "description": "应用分类."
  3877. },
  3878. {
  3879. "name": "iconHue",
  3880. "type": "String",
  3881. "isCollection": false,
  3882. "description": "icon的主色调"
  3883. },
  3884. {
  3885. "name": "creatorPerson",
  3886. "type": "String",
  3887. "isCollection": false,
  3888. "description": "应用的创建者。"
  3889. },
  3890. {
  3891. "name": "lastUpdateTime",
  3892. "type": "Date",
  3893. "isCollection": false,
  3894. "description": "应用的最后修改时间。"
  3895. },
  3896. {
  3897. "name": "lastUpdatePerson",
  3898. "type": "String",
  3899. "isCollection": false,
  3900. "description": "应用的最后修改者"
  3901. },
  3902. {
  3903. "name": "createTime",
  3904. "type": "Date",
  3905. "isCollection": false,
  3906. "description": "创建时间,自动生成,索引创建在约束中."
  3907. },
  3908. {
  3909. "name": "updateTime",
  3910. "type": "Date",
  3911. "isCollection": false,
  3912. "description": "修改时间,自动生成,索引创建在约束中."
  3913. }
  3914. ]
  3915. },
  3916. {
  3917. "name": "select",
  3918. "className": "com.x.processplatform.assemble.designer.jaxrs.output.ActionSelect",
  3919. "description": "选择应用结构.",
  3920. "type": "PUT",
  3921. "path": "jaxrs/output/{applicationFlag}/select",
  3922. "contentType": "application/json",
  3923. "resultContentType": "application/json; charset\u003dUTF-8",
  3924. "useJsonElementParameter": false,
  3925. "pathParameters": [
  3926. {
  3927. "name": "applicationFlag",
  3928. "type": "String",
  3929. "description": "应用标识"
  3930. }
  3931. ],
  3932. "formParameters": [],
  3933. "queryParameters": [],
  3934. "ins": [
  3935. {
  3936. "name": "processList",
  3937. "type": "List\u003cWrapProcess\u003e",
  3938. "isCollection": true,
  3939. "description": "导出的流程",
  3940. "isBaseType": false
  3941. },
  3942. {
  3943. "name": "formList",
  3944. "type": "List\u003cWrapForm\u003e",
  3945. "isCollection": true,
  3946. "description": "导出的表单",
  3947. "isBaseType": false
  3948. },
  3949. {
  3950. "name": "applicationDictList",
  3951. "type": "List\u003cWrapApplicationDict\u003e",
  3952. "isCollection": true,
  3953. "description": "导出的数据字典",
  3954. "isBaseType": false
  3955. },
  3956. {
  3957. "name": "scriptList",
  3958. "type": "List\u003cWrapScript\u003e",
  3959. "isCollection": true,
  3960. "description": "导出的脚本",
  3961. "isBaseType": false
  3962. },
  3963. {
  3964. "name": "fileList",
  3965. "type": "List\u003cWrapFile\u003e",
  3966. "isCollection": true,
  3967. "description": "导出的文件",
  3968. "isBaseType": false
  3969. },
  3970. {
  3971. "name": "id",
  3972. "type": "String",
  3973. "isCollection": false,
  3974. "description": "数据库主键,自动生成.",
  3975. "isBaseType": true
  3976. },
  3977. {
  3978. "name": "name",
  3979. "type": "String",
  3980. "isCollection": false,
  3981. "description": "名称.",
  3982. "isBaseType": true
  3983. },
  3984. {
  3985. "name": "alias",
  3986. "type": "String",
  3987. "isCollection": false,
  3988. "description": "应用别名,如果有必须唯一.",
  3989. "isBaseType": true
  3990. },
  3991. {
  3992. "name": "description",
  3993. "type": "String",
  3994. "isCollection": false,
  3995. "description": "描述.",
  3996. "isBaseType": true
  3997. },
  3998. {
  3999. "name": "availableIdentityList",
  4000. "type": "List\u003cString\u003e",
  4001. "isCollection": true,
  4002. "description": "在指定启动时候,允许新建Work的用户.",
  4003. "isBaseType": true
  4004. },
  4005. {
  4006. "name": "availableUnitList",
  4007. "type": "List\u003cString\u003e",
  4008. "isCollection": true,
  4009. "description": "在指定启动时候,允许新建Work的部门.",
  4010. "isBaseType": true
  4011. },
  4012. {
  4013. "name": "applicationCategory",
  4014. "type": "String",
  4015. "isCollection": false,
  4016. "description": "应用分类.",
  4017. "isBaseType": true
  4018. },
  4019. {
  4020. "name": "icon",
  4021. "type": "String",
  4022. "isCollection": false,
  4023. "description": "icon Base64编码后的文本.",
  4024. "isBaseType": true
  4025. },
  4026. {
  4027. "name": "iconHue",
  4028. "type": "String",
  4029. "isCollection": false,
  4030. "description": "icon的主色调",
  4031. "isBaseType": true
  4032. },
  4033. {
  4034. "name": "controllerList",
  4035. "type": "List\u003cString\u003e",
  4036. "isCollection": true,
  4037. "description": "应用管理者.",
  4038. "isBaseType": true
  4039. },
  4040. {
  4041. "name": "creatorPerson",
  4042. "type": "String",
  4043. "isCollection": false,
  4044. "description": "应用的创建者。",
  4045. "isBaseType": true
  4046. },
  4047. {
  4048. "name": "lastUpdateTime",
  4049. "type": "Date",
  4050. "isCollection": false,
  4051. "description": "应用的最后修改时间。",
  4052. "isBaseType": true
  4053. },
  4054. {
  4055. "name": "lastUpdatePerson",
  4056. "type": "String",
  4057. "isCollection": false,
  4058. "description": "应用的最后修改者",
  4059. "isBaseType": true
  4060. },
  4061. {
  4062. "name": "distributeFactor",
  4063. "type": "Integer",
  4064. "isCollection": false,
  4065. "description": "分布式存储标识位.",
  4066. "isBaseType": true
  4067. },
  4068. {
  4069. "name": "createTime",
  4070. "type": "Date",
  4071. "isCollection": false,
  4072. "description": "创建时间,自动生成,索引创建在约束中.",
  4073. "isBaseType": true
  4074. },
  4075. {
  4076. "name": "updateTime",
  4077. "type": "Date",
  4078. "isCollection": false,
  4079. "description": "修改时间,自动生成,索引创建在约束中.",
  4080. "isBaseType": true
  4081. },
  4082. {
  4083. "name": "sequence",
  4084. "type": "String",
  4085. "isCollection": false,
  4086. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中.",
  4087. "isBaseType": true
  4088. }
  4089. ],
  4090. "outs": [
  4091. {
  4092. "name": "flag",
  4093. "type": "String",
  4094. "isCollection": false,
  4095. "description": "返回标识"
  4096. },
  4097. {
  4098. "name": "processList",
  4099. "type": "List\u003cWrapProcess\u003e",
  4100. "isCollection": true,
  4101. "description": "导出的流程"
  4102. },
  4103. {
  4104. "name": "formList",
  4105. "type": "List\u003cWrapForm\u003e",
  4106. "isCollection": true,
  4107. "description": "导出的表单"
  4108. },
  4109. {
  4110. "name": "applicationDictList",
  4111. "type": "List\u003cWrapApplicationDict\u003e",
  4112. "isCollection": true,
  4113. "description": "导出的数据字典"
  4114. },
  4115. {
  4116. "name": "scriptList",
  4117. "type": "List\u003cWrapScript\u003e",
  4118. "isCollection": true,
  4119. "description": "导出的脚本"
  4120. },
  4121. {
  4122. "name": "fileList",
  4123. "type": "List\u003cWrapFile\u003e",
  4124. "isCollection": true,
  4125. "description": "导出的文件"
  4126. },
  4127. {
  4128. "name": "id",
  4129. "type": "String",
  4130. "isCollection": false,
  4131. "description": "数据库主键,自动生成."
  4132. },
  4133. {
  4134. "name": "name",
  4135. "type": "String",
  4136. "isCollection": false,
  4137. "description": "名称."
  4138. },
  4139. {
  4140. "name": "alias",
  4141. "type": "String",
  4142. "isCollection": false,
  4143. "description": "应用别名,如果有必须唯一."
  4144. },
  4145. {
  4146. "name": "description",
  4147. "type": "String",
  4148. "isCollection": false,
  4149. "description": "描述."
  4150. },
  4151. {
  4152. "name": "availableIdentityList",
  4153. "type": "List\u003cString\u003e",
  4154. "isCollection": true,
  4155. "description": "在指定启动时候,允许新建Work的用户."
  4156. },
  4157. {
  4158. "name": "availableUnitList",
  4159. "type": "List\u003cString\u003e",
  4160. "isCollection": true,
  4161. "description": "在指定启动时候,允许新建Work的部门."
  4162. },
  4163. {
  4164. "name": "applicationCategory",
  4165. "type": "String",
  4166. "isCollection": false,
  4167. "description": "应用分类."
  4168. },
  4169. {
  4170. "name": "icon",
  4171. "type": "String",
  4172. "isCollection": false,
  4173. "description": "icon Base64编码后的文本."
  4174. },
  4175. {
  4176. "name": "iconHue",
  4177. "type": "String",
  4178. "isCollection": false,
  4179. "description": "icon的主色调"
  4180. },
  4181. {
  4182. "name": "controllerList",
  4183. "type": "List\u003cString\u003e",
  4184. "isCollection": true,
  4185. "description": "应用管理者."
  4186. },
  4187. {
  4188. "name": "creatorPerson",
  4189. "type": "String",
  4190. "isCollection": false,
  4191. "description": "应用的创建者。"
  4192. },
  4193. {
  4194. "name": "lastUpdateTime",
  4195. "type": "Date",
  4196. "isCollection": false,
  4197. "description": "应用的最后修改时间。"
  4198. },
  4199. {
  4200. "name": "lastUpdatePerson",
  4201. "type": "String",
  4202. "isCollection": false,
  4203. "description": "应用的最后修改者"
  4204. },
  4205. {
  4206. "name": "distributeFactor",
  4207. "type": "Integer",
  4208. "isCollection": false,
  4209. "description": "分布式存储标识位."
  4210. },
  4211. {
  4212. "name": "createTime",
  4213. "type": "Date",
  4214. "isCollection": false,
  4215. "description": "创建时间,自动生成,索引创建在约束中."
  4216. },
  4217. {
  4218. "name": "updateTime",
  4219. "type": "Date",
  4220. "isCollection": false,
  4221. "description": "修改时间,自动生成,索引创建在约束中."
  4222. },
  4223. {
  4224. "name": "sequence",
  4225. "type": "String",
  4226. "isCollection": false,
  4227. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中."
  4228. }
  4229. ]
  4230. }
  4231. ]
  4232. },
  4233. {
  4234. "name": "ProcessAction",
  4235. "className": "com.x.processplatform.assemble.designer.jaxrs.process.ProcessAction",
  4236. "description": "流程",
  4237. "methods": [
  4238. {
  4239. "name": "delete",
  4240. "className": "com.x.processplatform.assemble.designer.jaxrs.process.ActionDelete",
  4241. "description": "删除流程.",
  4242. "type": "DELETE",
  4243. "path": "jaxrs/process/{id}/{onlyRemoveNotCompleted}",
  4244. "contentType": "application/json",
  4245. "resultContentType": "application/json; charset\u003dUTF-8",
  4246. "useJsonElementParameter": false,
  4247. "pathParameters": [
  4248. {
  4249. "name": "id",
  4250. "type": "String",
  4251. "description": "标识"
  4252. },
  4253. {
  4254. "name": "onlyRemoveNotCompleted",
  4255. "type": "boolean",
  4256. "description": "仅删除流转中Work"
  4257. }
  4258. ],
  4259. "formParameters": [],
  4260. "queryParameters": [],
  4261. "ins": [],
  4262. "outs": [
  4263. {
  4264. "name": "id",
  4265. "type": "String",
  4266. "isCollection": false,
  4267. "description": "id"
  4268. }
  4269. ]
  4270. },
  4271. {
  4272. "name": "get",
  4273. "className": "com.x.processplatform.assemble.designer.jaxrs.process.ActionGet",
  4274. "description": "获取流程内容.含所有节点和路由信息",
  4275. "type": "GET",
  4276. "path": "jaxrs/process/{id}",
  4277. "contentType": "application/json",
  4278. "resultContentType": "application/json; charset\u003dUTF-8",
  4279. "useJsonElementParameter": false,
  4280. "pathParameters": [
  4281. {
  4282. "name": "id",
  4283. "type": "String",
  4284. "description": "标识"
  4285. }
  4286. ],
  4287. "formParameters": [],
  4288. "queryParameters": [],
  4289. "ins": [],
  4290. "outs": [
  4291. {
  4292. "name": "id",
  4293. "type": "String",
  4294. "isCollection": false,
  4295. "description": "数据库主键,自动生成."
  4296. },
  4297. {
  4298. "name": "name",
  4299. "type": "String",
  4300. "isCollection": false,
  4301. "description": "名称."
  4302. },
  4303. {
  4304. "name": "alias",
  4305. "type": "String",
  4306. "isCollection": false,
  4307. "description": "别名."
  4308. },
  4309. {
  4310. "name": "description",
  4311. "type": "String",
  4312. "isCollection": false,
  4313. "description": "描述."
  4314. },
  4315. {
  4316. "name": "creatorPerson",
  4317. "type": "String",
  4318. "isCollection": false,
  4319. "description": "流程创建者."
  4320. },
  4321. {
  4322. "name": "lastUpdatePerson",
  4323. "type": "String",
  4324. "isCollection": false,
  4325. "description": "最后的编辑者."
  4326. },
  4327. {
  4328. "name": "lastUpdateTime",
  4329. "type": "Date",
  4330. "isCollection": false,
  4331. "description": "最后的编辑时间."
  4332. },
  4333. {
  4334. "name": "application",
  4335. "type": "String",
  4336. "isCollection": false,
  4337. "description": "流程所属应用."
  4338. },
  4339. {
  4340. "name": "controllerList",
  4341. "type": "List\u003cString\u003e",
  4342. "isCollection": true,
  4343. "description": "流程管理者."
  4344. },
  4345. {
  4346. "name": "icon",
  4347. "type": "String",
  4348. "isCollection": false,
  4349. "description": "icon Base64编码后的文本."
  4350. },
  4351. {
  4352. "name": "reviewIdentityList",
  4353. "type": "List\u003cString\u003e",
  4354. "isCollection": true,
  4355. "description": "Work的参阅人员."
  4356. },
  4357. {
  4358. "name": "beforeBeginScript",
  4359. "type": "String",
  4360. "isCollection": false,
  4361. "description": "流程启动前事件脚本."
  4362. },
  4363. {
  4364. "name": "beforeBeginScriptText",
  4365. "type": "String",
  4366. "isCollection": false,
  4367. "description": "流程启动前事件脚本文本."
  4368. },
  4369. {
  4370. "name": "afterBeginScript",
  4371. "type": "String",
  4372. "isCollection": false,
  4373. "description": "流程启动前事件脚本."
  4374. },
  4375. {
  4376. "name": "afterBeginScriptText",
  4377. "type": "String",
  4378. "isCollection": false,
  4379. "description": "流程启动前事件脚本文本."
  4380. },
  4381. {
  4382. "name": "beforeEndScript",
  4383. "type": "String",
  4384. "isCollection": false,
  4385. "description": "流程结束后事件脚本."
  4386. },
  4387. {
  4388. "name": "beforeEndScriptText",
  4389. "type": "String",
  4390. "isCollection": false,
  4391. "description": "流程结束后事件脚本文本."
  4392. },
  4393. {
  4394. "name": "afterEndScript",
  4395. "type": "String",
  4396. "isCollection": false,
  4397. "description": "流程结束后事件脚本."
  4398. },
  4399. {
  4400. "name": "afterEndScriptText",
  4401. "type": "String",
  4402. "isCollection": false,
  4403. "description": "流程结束后事件脚本文本."
  4404. },
  4405. {
  4406. "name": "startableIdentityList",
  4407. "type": "List\u003cString\u003e",
  4408. "isCollection": true,
  4409. "description": "在指定启动时候,允许新建Work的用户."
  4410. },
  4411. {
  4412. "name": "startableUnitList",
  4413. "type": "List\u003cString\u003e",
  4414. "isCollection": true,
  4415. "description": "在指定启动时候,允许新建Work的组织."
  4416. },
  4417. {
  4418. "name": "serialTexture",
  4419. "type": "String",
  4420. "isCollection": false,
  4421. "description": "编号定义."
  4422. },
  4423. {
  4424. "name": "serialActivity",
  4425. "type": "String",
  4426. "isCollection": false,
  4427. "description": "编号活动ID."
  4428. },
  4429. {
  4430. "name": "expireType",
  4431. "type": "ExpireType",
  4432. "isCollection": false,
  4433. "description": "过期方式.可选值never,appoint,script"
  4434. },
  4435. {
  4436. "name": "expireDay",
  4437. "type": "Integer",
  4438. "isCollection": false,
  4439. "description": "过期日期."
  4440. },
  4441. {
  4442. "name": "expireHour",
  4443. "type": "Integer",
  4444. "isCollection": false,
  4445. "description": "过期小时."
  4446. },
  4447. {
  4448. "name": "expireWorkTime",
  4449. "type": "Boolean",
  4450. "isCollection": false,
  4451. "description": "过期是否是工作时间."
  4452. },
  4453. {
  4454. "name": "expireScript",
  4455. "type": "String",
  4456. "isCollection": false,
  4457. "description": "过期时间设定脚本."
  4458. },
  4459. {
  4460. "name": "expireScriptText",
  4461. "type": "String",
  4462. "isCollection": false,
  4463. "description": "过期时间设定脚本文本."
  4464. },
  4465. {
  4466. "name": "distributeFactor",
  4467. "type": "Integer",
  4468. "isCollection": false,
  4469. "description": "分布式存储标识位."
  4470. },
  4471. {
  4472. "name": "createTime",
  4473. "type": "Date",
  4474. "isCollection": false,
  4475. "description": "创建时间,自动生成,索引创建在约束中."
  4476. },
  4477. {
  4478. "name": "updateTime",
  4479. "type": "Date",
  4480. "isCollection": false,
  4481. "description": "修改时间,自动生成,索引创建在约束中."
  4482. },
  4483. {
  4484. "name": "sequence",
  4485. "type": "String",
  4486. "isCollection": false,
  4487. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中."
  4488. }
  4489. ]
  4490. },
  4491. {
  4492. "name": "leadOut",
  4493. "className": "com.x.processplatform.assemble.designer.jaxrs.process.ActionLeadOut",
  4494. "description": "导出流程.",
  4495. "type": "GET",
  4496. "path": "jaxrs/process/{id}/lead/out",
  4497. "contentType": "application/json",
  4498. "resultContentType": "application/json; charset\u003dUTF-8",
  4499. "useJsonElementParameter": false,
  4500. "pathParameters": [
  4501. {
  4502. "name": "id",
  4503. "type": "String",
  4504. "description": "标识"
  4505. }
  4506. ],
  4507. "formParameters": [],
  4508. "queryParameters": [],
  4509. "ins": [],
  4510. "outs": [
  4511. {
  4512. "name": "id",
  4513. "type": "String",
  4514. "isCollection": false,
  4515. "description": "数据库主键,自动生成."
  4516. },
  4517. {
  4518. "name": "name",
  4519. "type": "String",
  4520. "isCollection": false,
  4521. "description": "名称."
  4522. },
  4523. {
  4524. "name": "alias",
  4525. "type": "String",
  4526. "isCollection": false,
  4527. "description": "别名."
  4528. },
  4529. {
  4530. "name": "description",
  4531. "type": "String",
  4532. "isCollection": false,
  4533. "description": "描述."
  4534. },
  4535. {
  4536. "name": "creatorPerson",
  4537. "type": "String",
  4538. "isCollection": false,
  4539. "description": "流程创建者."
  4540. },
  4541. {
  4542. "name": "lastUpdatePerson",
  4543. "type": "String",
  4544. "isCollection": false,
  4545. "description": "最后的编辑者."
  4546. },
  4547. {
  4548. "name": "lastUpdateTime",
  4549. "type": "Date",
  4550. "isCollection": false,
  4551. "description": "最后的编辑时间."
  4552. },
  4553. {
  4554. "name": "application",
  4555. "type": "String",
  4556. "isCollection": false,
  4557. "description": "流程所属应用."
  4558. },
  4559. {
  4560. "name": "controllerList",
  4561. "type": "List\u003cString\u003e",
  4562. "isCollection": true,
  4563. "description": "流程管理者."
  4564. },
  4565. {
  4566. "name": "icon",
  4567. "type": "String",
  4568. "isCollection": false,
  4569. "description": "icon Base64编码后的文本."
  4570. },
  4571. {
  4572. "name": "reviewIdentityList",
  4573. "type": "List\u003cString\u003e",
  4574. "isCollection": true,
  4575. "description": "Work的参阅人员."
  4576. },
  4577. {
  4578. "name": "beforeBeginScript",
  4579. "type": "String",
  4580. "isCollection": false,
  4581. "description": "流程启动前事件脚本."
  4582. },
  4583. {
  4584. "name": "beforeBeginScriptText",
  4585. "type": "String",
  4586. "isCollection": false,
  4587. "description": "流程启动前事件脚本文本."
  4588. },
  4589. {
  4590. "name": "afterBeginScript",
  4591. "type": "String",
  4592. "isCollection": false,
  4593. "description": "流程启动前事件脚本."
  4594. },
  4595. {
  4596. "name": "afterBeginScriptText",
  4597. "type": "String",
  4598. "isCollection": false,
  4599. "description": "流程启动前事件脚本文本."
  4600. },
  4601. {
  4602. "name": "beforeEndScript",
  4603. "type": "String",
  4604. "isCollection": false,
  4605. "description": "流程结束后事件脚本."
  4606. },
  4607. {
  4608. "name": "beforeEndScriptText",
  4609. "type": "String",
  4610. "isCollection": false,
  4611. "description": "流程结束后事件脚本文本."
  4612. },
  4613. {
  4614. "name": "afterEndScript",
  4615. "type": "String",
  4616. "isCollection": false,
  4617. "description": "流程结束后事件脚本."
  4618. },
  4619. {
  4620. "name": "afterEndScriptText",
  4621. "type": "String",
  4622. "isCollection": false,
  4623. "description": "流程结束后事件脚本文本."
  4624. },
  4625. {
  4626. "name": "startableIdentityList",
  4627. "type": "List\u003cString\u003e",
  4628. "isCollection": true,
  4629. "description": "在指定启动时候,允许新建Work的用户."
  4630. },
  4631. {
  4632. "name": "startableUnitList",
  4633. "type": "List\u003cString\u003e",
  4634. "isCollection": true,
  4635. "description": "在指定启动时候,允许新建Work的组织."
  4636. },
  4637. {
  4638. "name": "serialTexture",
  4639. "type": "String",
  4640. "isCollection": false,
  4641. "description": "编号定义."
  4642. },
  4643. {
  4644. "name": "serialActivity",
  4645. "type": "String",
  4646. "isCollection": false,
  4647. "description": "编号活动ID."
  4648. },
  4649. {
  4650. "name": "expireType",
  4651. "type": "ExpireType",
  4652. "isCollection": false,
  4653. "description": "过期方式.可选值never,appoint,script"
  4654. },
  4655. {
  4656. "name": "expireDay",
  4657. "type": "Integer",
  4658. "isCollection": false,
  4659. "description": "过期日期."
  4660. },
  4661. {
  4662. "name": "expireHour",
  4663. "type": "Integer",
  4664. "isCollection": false,
  4665. "description": "过期小时."
  4666. },
  4667. {
  4668. "name": "expireWorkTime",
  4669. "type": "Boolean",
  4670. "isCollection": false,
  4671. "description": "过期是否是工作时间."
  4672. },
  4673. {
  4674. "name": "expireScript",
  4675. "type": "String",
  4676. "isCollection": false,
  4677. "description": "过期时间设定脚本."
  4678. },
  4679. {
  4680. "name": "expireScriptText",
  4681. "type": "String",
  4682. "isCollection": false,
  4683. "description": "过期时间设定脚本文本."
  4684. },
  4685. {
  4686. "name": "distributeFactor",
  4687. "type": "Integer",
  4688. "isCollection": false,
  4689. "description": "分布式存储标识位."
  4690. },
  4691. {
  4692. "name": "createTime",
  4693. "type": "Date",
  4694. "isCollection": false,
  4695. "description": "创建时间,自动生成,索引创建在约束中."
  4696. },
  4697. {
  4698. "name": "updateTime",
  4699. "type": "Date",
  4700. "isCollection": false,
  4701. "description": "修改时间,自动生成,索引创建在约束中."
  4702. },
  4703. {
  4704. "name": "sequence",
  4705. "type": "String",
  4706. "isCollection": false,
  4707. "description": "列表序号,由创建时间以及ID组成.在保存时自动生成,索引创建在约束中."
  4708. }
  4709. ]
  4710. },
  4711. {
  4712. "name": "listWithApplication",
  4713. "className": "com.x.processplatform.assemble.designer.jaxrs.process.ActionListWithApplication",
  4714. "description": "列示某个应用的所有流程.",
  4715. "type": "GET",
  4716. "path": "jaxrs/process/application/{applicationId}",
  4717. "contentType": "application/json",
  4718. "resultContentType": "application/json; charset\u003dUTF-8",
  4719. "useJsonElementParameter": false,
  4720. "pathParameters": [
  4721. {
  4722. "name": "applicationId",
  4723. "type": "String",
  4724. "description": ""
  4725. }
  4726. ],
  4727. "formParameters": [],
  4728. "queryParameters": [],
  4729. "ins": [],
  4730. "outs": [
  4731. {
  4732. "name": "id",
  4733. "type": "String",
  4734. "isCollection": false,
  4735. "description": "数据库主键,自动生成."
  4736. },
  4737. {
  4738. "name": "name",
  4739. "type": "String",
  4740. "isCollection": false,
  4741. "description": "名称."
  4742. },
  4743. {
  4744. "name": "alias",
  4745. "type": "String",
  4746. "isCollection": false,
  4747. "description": "别名."
  4748. },
  4749. {
  4750. "name": "description",
  4751. "type": "String",
  4752. "isCollection": false,
  4753. "description": "描述."
  4754. },
  4755. {
  4756. "name": "creatorPerson",
  4757. "type": "String",
  4758. "isCollection": false,
  4759. "description": "流程创建者."
  4760. },
  4761. {
  4762. "name": "lastUpdatePerson",
  4763. "type": "String",
  4764. "isCollection": false,
  4765. "description": "最后的编辑者."
  4766. },
  4767. {
  4768. "name": "lastUpdateTime",
  4769. "type": "Date",
  4770. "isCollection": false,
  4771. "description": "最后的编辑时间."
  4772. },
  4773. {
  4774. "name": "application",
  4775. "type": "String",
  4776. "isCollection": false,
  4777. "description": "流程所属应用."
  4778. },
  4779. {
  4780. "name": "controllerList",
  4781. "type": "List\u003cString\u003e",
  4782. "isCollection": true,
  4783. "description": "流程管理者."
  4784. },
  4785. {
  4786. "name": "icon",
  4787. "type": "String",
  4788. "isCollection": false,
  4789. "description": "icon Base64编码后的文本."
  4790. },
  4791. {
  4792. "name": "reviewIdentityList",
  4793. "type": "List\u003cString\u003e",
  4794. "isCollection": true,
  4795. "description": "Work的参阅人员."
  4796. },
  4797. {
  4798. "name": "beforeBeginScript",
  4799. "type": "String",
  4800. "isCollection": false,
  4801. "description": "流程启动前事件脚本."
  4802. },
  4803. {
  4804. "name": "beforeBeginScriptText",
  4805. "type": "String",
  4806. "isCollection": false,
  4807. "description": "流程启动前事件脚本文本."
  4808. },
  4809. {
  4810. "name": "afterBeginScript",
  4811. "type": "String",
  4812. "isCollection": false,
  4813. "description": "流程启动前事件脚本."
  4814. },
  4815. {
  4816. "name": "afterBeginScriptText",
  4817. "type": "String",
  4818. "isCollection": false,
  4819. "description": "流程启动前事件脚本文本."
  4820. },
  4821. {
  4822. "name": "beforeEndScript",
  4823. "type": "String",
  4824. "isCollection": false,
  4825. "description": "流程结束后事件脚本."
  4826. },
  4827. {
  4828. "name": "beforeEndScriptText",
  4829. "type": "String",
  4830. "isCollection": false,
  4831. "description": "流程结束后事件脚本文本."
  4832. },
  4833. {
  4834. "name": "afterEndScript",
  4835. "type": "String",
  4836. "isCollection": false,
  4837. "description": "流程结束后事件脚本."
  4838. },
  4839. {
  4840. "name": "afterEndScriptText",
  4841. "type": "String",
  4842. "isCollection": false,
  4843. "description": "流程结束后事件脚本文本."
  4844. },
  4845. {
  4846. "name": "startableIdentityList",
  4847. "type": "List\u003cString\u003e",
  4848. "isCollection": true,
  4849. "description": "在指定启动时候,允许新建Work的用户."
  4850. },
  4851. {
  4852. "name": "startableUnitList",
  4853. "type": "List\u003cString\u003e",
  4854. "isCollection": true,
  4855. "description": "在指定启动时候,允许新建Work的组织."
  4856. },
  4857. {
  4858. "name": "serialTexture",
  4859. "type": "String",
  4860. "isCollection": false,
  4861. "description": "编号定义."
  4862. },
  4863. {
  4864. "name": "serialActivity",
  4865. "type": "String",
  4866. "isCollection": false,
  4867. "description": "编号活动ID."
  4868. },
  4869. {
  4870. "name": "expireType",
  4871. "type": "ExpireType",
  4872. "isCollection": false,
  4873. "description": "过期方式.可选值never,appoint,script"
  4874. },
  4875. {
  4876. "name": "expireDay",
  4877. "type": "Integer",
  4878. "isCollection": false,
  4879. "description": "过期日期."
  4880. },
  4881. {
  4882. "name": "expireHour",
  4883. "type": "Integer",
  4884. "isCollection": false,
  4885. "description": "过期小时."
  4886. },
  4887. {
  4888. "name": "expireWorkTime",
  4889. "type": "Boolean",
  4890. "isCollection": false,
  4891. "description": "过期是否是工作时间."
  4892. },
  4893. {
  4894. "name": "expireScript",
  4895. "type": "String",
  4896. "isCollection": false,
  4897. "description": "过期时间设定脚本."
  4898. },
  4899. {
  4900. "name": "expireScriptText",
  4901. "type": "String",
  4902. "isCollection": false,
  4903. "description": "过期时间设定脚本文本."
  4904. },
  4905. {
  4906. "name": "createTime",
  4907. "type": "Date",
  4908. "isCollection": false,
  4909. "description": "创建时间,自动生成,索引创建在约束中."
  4910. },
  4911. {
  4912. "name": "updateTime",
  4913. "type": "Date",
  4914. "isCollection": false,
  4915. "description": "修改时间,自动生成,索引创建在约束中."
  4916. }
  4917. ]
  4918. },
  4919. {
  4920. "name": "post",
  4921. "className": "com.x.processplatform.assemble.designer.jaxrs.process.ActionCreate",
  4922. "description": "创建流程.",
  4923. "type": "POST",
  4924. "path": "jaxrs/process",
  4925. "contentType": "application/json",
  4926. "resultContentType": "application/json; charset\u003dUTF-8",
  4927. "useJsonElementParameter": true,
  4928. "pathParameters": [],
  4929. "formParameters": [],
  4930. "queryParameters": [],
  4931. "ins": [],
  4932. "outs": [
  4933. {
  4934. "name": "id",
  4935. "type": "String",
  4936. "isCollection": false,
  4937. "description": "id"
  4938. }
  4939. ]
  4940. },
  4941. {
  4942. "name": "put",
  4943. "className": "com.x.processplatform.assemble.designer.jaxrs.process.ActionEdit",
  4944. "description": "更新流程.",
  4945. "type": "PUT",
  4946. "path": "jaxrs/process/{id}",
  4947. "contentType": "application/json",
  4948. "resultContentType": "application/json; charset\u003dUTF-8",
  4949. "useJsonElementParameter": true,
  4950. "pathParameters": [
  4951. {
  4952. "name": "id",
  4953. "type": "String",
  4954. "description": "标识"
  4955. }
  4956. ],
  4957. "formParameters": [],
  4958. "queryParameters": [],
  4959. "ins": [],
  4960. "outs": [
  4961. {
  4962. "name": "id",
  4963. "type": "String",
  4964. "isCollection": false,
  4965. "description": "id"
  4966. }
  4967. ]
  4968. }
  4969. ]
  4970. },
  4971. {
  4972. "name": "QueryStatAction",
  4973. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.QueryStatAction",
  4974. "description": "统计",
  4975. "methods": [
  4976. {
  4977. "name": "create",
  4978. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.ActionCreate",
  4979. "description": "创建QueryStat.",
  4980. "type": "POST",
  4981. "path": "jaxrs/querystat",
  4982. "contentType": "application/json",
  4983. "resultContentType": "application/json; charset\u003dUTF-8",
  4984. "useJsonElementParameter": false,
  4985. "pathParameters": [],
  4986. "formParameters": [],
  4987. "queryParameters": [],
  4988. "ins": [
  4989. {
  4990. "name": "id",
  4991. "type": "String",
  4992. "isCollection": false,
  4993. "description": "数据库主键,自动生成.",
  4994. "isBaseType": true
  4995. },
  4996. {
  4997. "name": "name",
  4998. "type": "String",
  4999. "isCollection": false,
  5000. "description": "名称.",
  5001. "isBaseType": true
  5002. },
  5003. {
  5004. "name": "alias",
  5005. "type": "String",
  5006. "isCollection": false,
  5007. "description": "别名.",
  5008. "isBaseType": true
  5009. },
  5010. {
  5011. "name": "description",
  5012. "type": "String",
  5013. "isCollection": false,
  5014. "description": "描述.",
  5015. "isBaseType": true
  5016. },
  5017. {
  5018. "name": "application",
  5019. "type": "String",
  5020. "isCollection": false,
  5021. "description": "所属应用.",
  5022. "isBaseType": true
  5023. },
  5024. {
  5025. "name": "queryView",
  5026. "type": "String",
  5027. "isCollection": false,
  5028. "description": "所关联的queryView.",
  5029. "isBaseType": true
  5030. },
  5031. {
  5032. "name": "queryViewName",
  5033. "type": "String",
  5034. "isCollection": false,
  5035. "description": "所关联的queryView的name.",
  5036. "isBaseType": true
  5037. },
  5038. {
  5039. "name": "queryViewAlias",
  5040. "type": "String",
  5041. "isCollection": false,
  5042. "description": "所关联的queryView的alias.",
  5043. "isBaseType": true
  5044. },
  5045. {
  5046. "name": "timingEnable",
  5047. "type": "Boolean",
  5048. "isCollection": false,
  5049. "description": "是否是定时任务.",
  5050. "isBaseType": true
  5051. },
  5052. {
  5053. "name": "timingInterval",
  5054. "type": "Integer",
  5055. "isCollection": false,
  5056. "description": "运行间隔,分钟.",
  5057. "isBaseType": true
  5058. },
  5059. {
  5060. "name": "availablePersonList",
  5061. "type": "List\u003cString\u003e",
  5062. "isCollection": true,
  5063. "description": "可使用的人.",
  5064. "isBaseType": true
  5065. },
  5066. {
  5067. "name": "availableIdentityList",
  5068. "type": "List\u003cString\u003e",
  5069. "isCollection": true,
  5070. "description": "可使用的身份.",
  5071. "isBaseType": true
  5072. },
  5073. {
  5074. "name": "availableUnitList",
  5075. "type": "List\u003cString\u003e",
  5076. "isCollection": true,
  5077. "description": "在指定启动时候,允许新建的组织.",
  5078. "isBaseType": true
  5079. },
  5080. {
  5081. "name": "icon",
  5082. "type": "String",
  5083. "isCollection": false,
  5084. "description": "icon Base64编码后的文本.",
  5085. "isBaseType": true
  5086. },
  5087. {
  5088. "name": "controllerList",
  5089. "type": "List\u003cString\u003e",
  5090. "isCollection": true,
  5091. "description": "应用管理者。",
  5092. "isBaseType": true
  5093. },
  5094. {
  5095. "name": "creatorPerson",
  5096. "type": "String",
  5097. "isCollection": false,
  5098. "description": "应用的创建者。",
  5099. "isBaseType": true
  5100. },
  5101. {
  5102. "name": "lastUpdateTime",
  5103. "type": "Date",
  5104. "isCollection": false,
  5105. "description": "应用的最后修改时间。",
  5106. "isBaseType": true
  5107. },
  5108. {
  5109. "name": "lastUpdatePerson",
  5110. "type": "String",
  5111. "isCollection": false,
  5112. "description": "应用的最后修改者",
  5113. "isBaseType": true
  5114. },
  5115. {
  5116. "name": "layout",
  5117. "type": "String",
  5118. "isCollection": false,
  5119. "description": "显示布局.",
  5120. "isBaseType": true
  5121. },
  5122. {
  5123. "name": "data",
  5124. "type": "String",
  5125. "isCollection": false,
  5126. "description": "方案文本.",
  5127. "isBaseType": true
  5128. },
  5129. {
  5130. "name": "result",
  5131. "type": "String",
  5132. "isCollection": false,
  5133. "description": "缓存结果.",
  5134. "isBaseType": true
  5135. }
  5136. ],
  5137. "outs": [
  5138. {
  5139. "name": "id",
  5140. "type": "String",
  5141. "isCollection": false,
  5142. "description": "id"
  5143. }
  5144. ]
  5145. },
  5146. {
  5147. "name": "delete",
  5148. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.ActionDelete",
  5149. "description": "删除QueryView.",
  5150. "type": "DELETE",
  5151. "path": "jaxrs/querystat/{id}",
  5152. "contentType": "application/json",
  5153. "resultContentType": "application/json; charset\u003dUTF-8",
  5154. "useJsonElementParameter": false,
  5155. "pathParameters": [
  5156. {
  5157. "name": "id",
  5158. "type": "String",
  5159. "description": "标识"
  5160. }
  5161. ],
  5162. "formParameters": [],
  5163. "queryParameters": [],
  5164. "ins": [],
  5165. "outs": [
  5166. {
  5167. "name": "id",
  5168. "type": "String",
  5169. "isCollection": false,
  5170. "description": "id"
  5171. }
  5172. ]
  5173. },
  5174. {
  5175. "name": "get",
  5176. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.ActionGet",
  5177. "description": "获取QueryStat内容.",
  5178. "type": "GET",
  5179. "path": "jaxrs/querystat/{id}",
  5180. "contentType": "application/json",
  5181. "resultContentType": "application/json; charset\u003dUTF-8",
  5182. "useJsonElementParameter": false,
  5183. "pathParameters": [
  5184. {
  5185. "name": "id",
  5186. "type": "String",
  5187. "description": "标识"
  5188. }
  5189. ],
  5190. "formParameters": [],
  5191. "queryParameters": [],
  5192. "ins": [],
  5193. "outs": [
  5194. {
  5195. "name": "id",
  5196. "type": "String",
  5197. "isCollection": false,
  5198. "description": "数据库主键,自动生成."
  5199. },
  5200. {
  5201. "name": "name",
  5202. "type": "String",
  5203. "isCollection": false,
  5204. "description": "名称."
  5205. },
  5206. {
  5207. "name": "alias",
  5208. "type": "String",
  5209. "isCollection": false,
  5210. "description": "别名."
  5211. },
  5212. {
  5213. "name": "description",
  5214. "type": "String",
  5215. "isCollection": false,
  5216. "description": "描述."
  5217. },
  5218. {
  5219. "name": "application",
  5220. "type": "String",
  5221. "isCollection": false,
  5222. "description": "所属应用."
  5223. },
  5224. {
  5225. "name": "queryView",
  5226. "type": "String",
  5227. "isCollection": false,
  5228. "description": "所关联的queryView."
  5229. },
  5230. {
  5231. "name": "queryViewName",
  5232. "type": "String",
  5233. "isCollection": false,
  5234. "description": "所关联的queryView的name."
  5235. },
  5236. {
  5237. "name": "queryViewAlias",
  5238. "type": "String",
  5239. "isCollection": false,
  5240. "description": "所关联的queryView的alias."
  5241. },
  5242. {
  5243. "name": "timingEnable",
  5244. "type": "Boolean",
  5245. "isCollection": false,
  5246. "description": "是否是定时任务."
  5247. },
  5248. {
  5249. "name": "timingInterval",
  5250. "type": "Integer",
  5251. "isCollection": false,
  5252. "description": "运行间隔,分钟."
  5253. },
  5254. {
  5255. "name": "availablePersonList",
  5256. "type": "List\u003cString\u003e",
  5257. "isCollection": true,
  5258. "description": "可使用的人."
  5259. },
  5260. {
  5261. "name": "availableIdentityList",
  5262. "type": "List\u003cString\u003e",
  5263. "isCollection": true,
  5264. "description": "可使用的身份."
  5265. },
  5266. {
  5267. "name": "availableUnitList",
  5268. "type": "List\u003cString\u003e",
  5269. "isCollection": true,
  5270. "description": "在指定启动时候,允许新建的组织."
  5271. },
  5272. {
  5273. "name": "icon",
  5274. "type": "String",
  5275. "isCollection": false,
  5276. "description": "icon Base64编码后的文本."
  5277. },
  5278. {
  5279. "name": "controllerList",
  5280. "type": "List\u003cString\u003e",
  5281. "isCollection": true,
  5282. "description": "应用管理者。"
  5283. },
  5284. {
  5285. "name": "creatorPerson",
  5286. "type": "String",
  5287. "isCollection": false,
  5288. "description": "应用的创建者。"
  5289. },
  5290. {
  5291. "name": "lastUpdateTime",
  5292. "type": "Date",
  5293. "isCollection": false,
  5294. "description": "应用的最后修改时间。"
  5295. },
  5296. {
  5297. "name": "lastUpdatePerson",
  5298. "type": "String",
  5299. "isCollection": false,
  5300. "description": "应用的最后修改者"
  5301. },
  5302. {
  5303. "name": "layout",
  5304. "type": "String",
  5305. "isCollection": false,
  5306. "description": "显示布局."
  5307. },
  5308. {
  5309. "name": "data",
  5310. "type": "String",
  5311. "isCollection": false,
  5312. "description": "方案文本."
  5313. },
  5314. {
  5315. "name": "result",
  5316. "type": "String",
  5317. "isCollection": false,
  5318. "description": "缓存结果."
  5319. },
  5320. {
  5321. "name": "createTime",
  5322. "type": "Date",
  5323. "isCollection": false,
  5324. "description": "创建时间,自动生成,索引创建在约束中."
  5325. },
  5326. {
  5327. "name": "updateTime",
  5328. "type": "Date",
  5329. "isCollection": false,
  5330. "description": "修改时间,自动生成,索引创建在约束中."
  5331. }
  5332. ]
  5333. },
  5334. {
  5335. "name": "listNext",
  5336. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.ActionListNext",
  5337. "description": "列示QueryStat对象,下一页.",
  5338. "type": "GET",
  5339. "path": "jaxrs/querystat/list/{id}/next/{count}",
  5340. "contentType": "application/json",
  5341. "resultContentType": "application/json; charset\u003dUTF-8",
  5342. "useJsonElementParameter": false,
  5343. "pathParameters": [
  5344. {
  5345. "name": "count",
  5346. "type": "Integer",
  5347. "description": "数量"
  5348. },
  5349. {
  5350. "name": "id",
  5351. "type": "String",
  5352. "description": "标识"
  5353. }
  5354. ],
  5355. "formParameters": [],
  5356. "queryParameters": [],
  5357. "ins": [],
  5358. "outs": [
  5359. {
  5360. "name": "rank",
  5361. "type": "Long",
  5362. "isCollection": false,
  5363. "description": "排序号"
  5364. },
  5365. {
  5366. "name": "id",
  5367. "type": "String",
  5368. "isCollection": false,
  5369. "description": "数据库主键,自动生成."
  5370. },
  5371. {
  5372. "name": "name",
  5373. "type": "String",
  5374. "isCollection": false,
  5375. "description": "名称."
  5376. },
  5377. {
  5378. "name": "alias",
  5379. "type": "String",
  5380. "isCollection": false,
  5381. "description": "别名."
  5382. },
  5383. {
  5384. "name": "description",
  5385. "type": "String",
  5386. "isCollection": false,
  5387. "description": "描述."
  5388. },
  5389. {
  5390. "name": "application",
  5391. "type": "String",
  5392. "isCollection": false,
  5393. "description": "所属应用."
  5394. },
  5395. {
  5396. "name": "queryView",
  5397. "type": "String",
  5398. "isCollection": false,
  5399. "description": "所关联的queryView."
  5400. },
  5401. {
  5402. "name": "queryViewName",
  5403. "type": "String",
  5404. "isCollection": false,
  5405. "description": "所关联的queryView的name."
  5406. },
  5407. {
  5408. "name": "queryViewAlias",
  5409. "type": "String",
  5410. "isCollection": false,
  5411. "description": "所关联的queryView的alias."
  5412. },
  5413. {
  5414. "name": "timingEnable",
  5415. "type": "Boolean",
  5416. "isCollection": false,
  5417. "description": "是否是定时任务."
  5418. },
  5419. {
  5420. "name": "timingInterval",
  5421. "type": "Integer",
  5422. "isCollection": false,
  5423. "description": "运行间隔,分钟."
  5424. },
  5425. {
  5426. "name": "availablePersonList",
  5427. "type": "List\u003cString\u003e",
  5428. "isCollection": true,
  5429. "description": "可使用的人."
  5430. },
  5431. {
  5432. "name": "availableIdentityList",
  5433. "type": "List\u003cString\u003e",
  5434. "isCollection": true,
  5435. "description": "可使用的身份."
  5436. },
  5437. {
  5438. "name": "availableUnitList",
  5439. "type": "List\u003cString\u003e",
  5440. "isCollection": true,
  5441. "description": "在指定启动时候,允许新建的组织."
  5442. },
  5443. {
  5444. "name": "icon",
  5445. "type": "String",
  5446. "isCollection": false,
  5447. "description": "icon Base64编码后的文本."
  5448. },
  5449. {
  5450. "name": "controllerList",
  5451. "type": "List\u003cString\u003e",
  5452. "isCollection": true,
  5453. "description": "应用管理者。"
  5454. },
  5455. {
  5456. "name": "creatorPerson",
  5457. "type": "String",
  5458. "isCollection": false,
  5459. "description": "应用的创建者。"
  5460. },
  5461. {
  5462. "name": "lastUpdateTime",
  5463. "type": "Date",
  5464. "isCollection": false,
  5465. "description": "应用的最后修改时间。"
  5466. },
  5467. {
  5468. "name": "lastUpdatePerson",
  5469. "type": "String",
  5470. "isCollection": false,
  5471. "description": "应用的最后修改者"
  5472. },
  5473. {
  5474. "name": "layout",
  5475. "type": "String",
  5476. "isCollection": false,
  5477. "description": "显示布局."
  5478. },
  5479. {
  5480. "name": "data",
  5481. "type": "String",
  5482. "isCollection": false,
  5483. "description": "方案文本."
  5484. },
  5485. {
  5486. "name": "result",
  5487. "type": "String",
  5488. "isCollection": false,
  5489. "description": "缓存结果."
  5490. },
  5491. {
  5492. "name": "createTime",
  5493. "type": "Date",
  5494. "isCollection": false,
  5495. "description": "创建时间,自动生成,索引创建在约束中."
  5496. },
  5497. {
  5498. "name": "updateTime",
  5499. "type": "Date",
  5500. "isCollection": false,
  5501. "description": "修改时间,自动生成,索引创建在约束中."
  5502. }
  5503. ]
  5504. },
  5505. {
  5506. "name": "listPrev",
  5507. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.ActionListPrev",
  5508. "description": "列示QueryStat对象,上一页.",
  5509. "type": "GET",
  5510. "path": "jaxrs/querystat/list/{id}/prev/{count}",
  5511. "contentType": "application/json",
  5512. "resultContentType": "application/json; charset\u003dUTF-8",
  5513. "useJsonElementParameter": false,
  5514. "pathParameters": [
  5515. {
  5516. "name": "count",
  5517. "type": "Integer",
  5518. "description": "数量"
  5519. },
  5520. {
  5521. "name": "id",
  5522. "type": "String",
  5523. "description": "标识"
  5524. }
  5525. ],
  5526. "formParameters": [],
  5527. "queryParameters": [],
  5528. "ins": [],
  5529. "outs": [
  5530. {
  5531. "name": "rank",
  5532. "type": "Long",
  5533. "isCollection": false,
  5534. "description": "排序号"
  5535. },
  5536. {
  5537. "name": "id",
  5538. "type": "String",
  5539. "isCollection": false,
  5540. "description": "数据库主键,自动生成."
  5541. },
  5542. {
  5543. "name": "name",
  5544. "type": "String",
  5545. "isCollection": false,
  5546. "description": "名称."
  5547. },
  5548. {
  5549. "name": "alias",
  5550. "type": "String",
  5551. "isCollection": false,
  5552. "description": "别名."
  5553. },
  5554. {
  5555. "name": "description",
  5556. "type": "String",
  5557. "isCollection": false,
  5558. "description": "描述."
  5559. },
  5560. {
  5561. "name": "application",
  5562. "type": "String",
  5563. "isCollection": false,
  5564. "description": "所属应用."
  5565. },
  5566. {
  5567. "name": "queryView",
  5568. "type": "String",
  5569. "isCollection": false,
  5570. "description": "所关联的queryView."
  5571. },
  5572. {
  5573. "name": "queryViewName",
  5574. "type": "String",
  5575. "isCollection": false,
  5576. "description": "所关联的queryView的name."
  5577. },
  5578. {
  5579. "name": "queryViewAlias",
  5580. "type": "String",
  5581. "isCollection": false,
  5582. "description": "所关联的queryView的alias."
  5583. },
  5584. {
  5585. "name": "timingEnable",
  5586. "type": "Boolean",
  5587. "isCollection": false,
  5588. "description": "是否是定时任务."
  5589. },
  5590. {
  5591. "name": "timingInterval",
  5592. "type": "Integer",
  5593. "isCollection": false,
  5594. "description": "运行间隔,分钟."
  5595. },
  5596. {
  5597. "name": "availablePersonList",
  5598. "type": "List\u003cString\u003e",
  5599. "isCollection": true,
  5600. "description": "可使用的人."
  5601. },
  5602. {
  5603. "name": "availableIdentityList",
  5604. "type": "List\u003cString\u003e",
  5605. "isCollection": true,
  5606. "description": "可使用的身份."
  5607. },
  5608. {
  5609. "name": "availableUnitList",
  5610. "type": "List\u003cString\u003e",
  5611. "isCollection": true,
  5612. "description": "在指定启动时候,允许新建的组织."
  5613. },
  5614. {
  5615. "name": "icon",
  5616. "type": "String",
  5617. "isCollection": false,
  5618. "description": "icon Base64编码后的文本."
  5619. },
  5620. {
  5621. "name": "controllerList",
  5622. "type": "List\u003cString\u003e",
  5623. "isCollection": true,
  5624. "description": "应用管理者。"
  5625. },
  5626. {
  5627. "name": "creatorPerson",
  5628. "type": "String",
  5629. "isCollection": false,
  5630. "description": "应用的创建者。"
  5631. },
  5632. {
  5633. "name": "lastUpdateTime",
  5634. "type": "Date",
  5635. "isCollection": false,
  5636. "description": "应用的最后修改时间。"
  5637. },
  5638. {
  5639. "name": "lastUpdatePerson",
  5640. "type": "String",
  5641. "isCollection": false,
  5642. "description": "应用的最后修改者"
  5643. },
  5644. {
  5645. "name": "layout",
  5646. "type": "String",
  5647. "isCollection": false,
  5648. "description": "显示布局."
  5649. },
  5650. {
  5651. "name": "data",
  5652. "type": "String",
  5653. "isCollection": false,
  5654. "description": "方案文本."
  5655. },
  5656. {
  5657. "name": "result",
  5658. "type": "String",
  5659. "isCollection": false,
  5660. "description": "缓存结果."
  5661. },
  5662. {
  5663. "name": "createTime",
  5664. "type": "Date",
  5665. "isCollection": false,
  5666. "description": "创建时间,自动生成,索引创建在约束中."
  5667. },
  5668. {
  5669. "name": "updateTime",
  5670. "type": "Date",
  5671. "isCollection": false,
  5672. "description": "修改时间,自动生成,索引创建在约束中."
  5673. }
  5674. ]
  5675. },
  5676. {
  5677. "name": "listWithApplication",
  5678. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.ActionListWithApplication",
  5679. "description": "根据应用列示视图.",
  5680. "type": "GET",
  5681. "path": "jaxrs/querystat/list/application/{applicationId}",
  5682. "contentType": "application/json",
  5683. "resultContentType": "application/json; charset\u003dUTF-8",
  5684. "useJsonElementParameter": false,
  5685. "pathParameters": [
  5686. {
  5687. "name": "applicationId",
  5688. "type": "String",
  5689. "description": "应用标识"
  5690. }
  5691. ],
  5692. "formParameters": [],
  5693. "queryParameters": [],
  5694. "ins": [],
  5695. "outs": [
  5696. {
  5697. "name": "id",
  5698. "type": "String",
  5699. "isCollection": false,
  5700. "description": "数据库主键,自动生成."
  5701. },
  5702. {
  5703. "name": "name",
  5704. "type": "String",
  5705. "isCollection": false,
  5706. "description": "名称."
  5707. },
  5708. {
  5709. "name": "alias",
  5710. "type": "String",
  5711. "isCollection": false,
  5712. "description": "别名."
  5713. },
  5714. {
  5715. "name": "description",
  5716. "type": "String",
  5717. "isCollection": false,
  5718. "description": "描述."
  5719. },
  5720. {
  5721. "name": "application",
  5722. "type": "String",
  5723. "isCollection": false,
  5724. "description": "所属应用."
  5725. },
  5726. {
  5727. "name": "queryView",
  5728. "type": "String",
  5729. "isCollection": false,
  5730. "description": "所关联的queryView."
  5731. },
  5732. {
  5733. "name": "queryViewName",
  5734. "type": "String",
  5735. "isCollection": false,
  5736. "description": "所关联的queryView的name."
  5737. },
  5738. {
  5739. "name": "queryViewAlias",
  5740. "type": "String",
  5741. "isCollection": false,
  5742. "description": "所关联的queryView的alias."
  5743. },
  5744. {
  5745. "name": "timingEnable",
  5746. "type": "Boolean",
  5747. "isCollection": false,
  5748. "description": "是否是定时任务."
  5749. },
  5750. {
  5751. "name": "timingInterval",
  5752. "type": "Integer",
  5753. "isCollection": false,
  5754. "description": "运行间隔,分钟."
  5755. },
  5756. {
  5757. "name": "availablePersonList",
  5758. "type": "List\u003cString\u003e",
  5759. "isCollection": true,
  5760. "description": "可使用的人."
  5761. },
  5762. {
  5763. "name": "availableIdentityList",
  5764. "type": "List\u003cString\u003e",
  5765. "isCollection": true,
  5766. "description": "可使用的身份."
  5767. },
  5768. {
  5769. "name": "availableUnitList",
  5770. "type": "List\u003cString\u003e",
  5771. "isCollection": true,
  5772. "description": "在指定启动时候,允许新建的组织."
  5773. },
  5774. {
  5775. "name": "icon",
  5776. "type": "String",
  5777. "isCollection": false,
  5778. "description": "icon Base64编码后的文本."
  5779. },
  5780. {
  5781. "name": "controllerList",
  5782. "type": "List\u003cString\u003e",
  5783. "isCollection": true,
  5784. "description": "应用管理者。"
  5785. },
  5786. {
  5787. "name": "creatorPerson",
  5788. "type": "String",
  5789. "isCollection": false,
  5790. "description": "应用的创建者。"
  5791. },
  5792. {
  5793. "name": "lastUpdateTime",
  5794. "type": "Date",
  5795. "isCollection": false,
  5796. "description": "应用的最后修改时间。"
  5797. },
  5798. {
  5799. "name": "lastUpdatePerson",
  5800. "type": "String",
  5801. "isCollection": false,
  5802. "description": "应用的最后修改者"
  5803. },
  5804. {
  5805. "name": "layout",
  5806. "type": "String",
  5807. "isCollection": false,
  5808. "description": "显示布局."
  5809. },
  5810. {
  5811. "name": "data",
  5812. "type": "String",
  5813. "isCollection": false,
  5814. "description": "方案文本."
  5815. },
  5816. {
  5817. "name": "result",
  5818. "type": "String",
  5819. "isCollection": false,
  5820. "description": "缓存结果."
  5821. },
  5822. {
  5823. "name": "createTime",
  5824. "type": "Date",
  5825. "isCollection": false,
  5826. "description": "创建时间,自动生成,索引创建在约束中."
  5827. },
  5828. {
  5829. "name": "updateTime",
  5830. "type": "Date",
  5831. "isCollection": false,
  5832. "description": "修改时间,自动生成,索引创建在约束中."
  5833. }
  5834. ]
  5835. },
  5836. {
  5837. "name": "simulate",
  5838. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.ActionSimulate",
  5839. "description": "模拟执行queryStat",
  5840. "type": "PUT",
  5841. "path": "jaxrs/querystat/{id}/simulate",
  5842. "contentType": "application/json",
  5843. "resultContentType": "application/json; charset\u003dUTF-8",
  5844. "useJsonElementParameter": false,
  5845. "pathParameters": [
  5846. {
  5847. "name": "id",
  5848. "type": "String",
  5849. "description": "标识"
  5850. }
  5851. ],
  5852. "formParameters": [],
  5853. "queryParameters": [],
  5854. "ins": [],
  5855. "outs": []
  5856. },
  5857. {
  5858. "name": "update",
  5859. "className": "com.x.processplatform.assemble.designer.jaxrs.querystat.ActionEdit",
  5860. "description": "更新QueryStat.",
  5861. "type": "PUT",
  5862. "path": "jaxrs/querystat/{id}",
  5863. "contentType": "application/json",
  5864. "resultContentType": "application/json; charset\u003dUTF-8",
  5865. "useJsonElementParameter": false,
  5866. "pathParameters": [
  5867. {
  5868. "name": "id",
  5869. "type": "String",
  5870. "description": "标识"
  5871. }
  5872. ],
  5873. "formParameters": [],
  5874. "queryParameters": [],
  5875. "ins": [
  5876. {
  5877. "name": "id",
  5878. "type": "String",
  5879. "isCollection": false,
  5880. "description": "数据库主键,自动生成.",
  5881. "isBaseType": true
  5882. },
  5883. {
  5884. "name": "name",
  5885. "type": "String",
  5886. "isCollection": false,
  5887. "description": "名称.",
  5888. "isBaseType": true
  5889. },
  5890. {
  5891. "name": "alias",
  5892. "type": "String",
  5893. "isCollection": false,
  5894. "description": "别名.",
  5895. "isBaseType": true
  5896. },
  5897. {
  5898. "name": "description",
  5899. "type": "String",
  5900. "isCollection": false,
  5901. "description": "描述.",
  5902. "isBaseType": true
  5903. },
  5904. {
  5905. "name": "application",
  5906. "type": "String",
  5907. "isCollection": false,
  5908. "description": "所属应用.",
  5909. "isBaseType": true
  5910. },
  5911. {
  5912. "name": "queryView",
  5913. "type": "String",
  5914. "isCollection": false,
  5915. "description": "所关联的queryView.",
  5916. "isBaseType": true
  5917. },
  5918. {
  5919. "name": "queryViewName",
  5920. "type": "String",
  5921. "isCollection": false,
  5922. "description": "所关联的queryView的name.",
  5923. "isBaseType": true
  5924. },
  5925. {
  5926. "name": "queryViewAlias",
  5927. "type": "String",
  5928. "isCollection": false,
  5929. "description": "所关联的queryView的alias.",
  5930. "isBaseType": true
  5931. },
  5932. {
  5933. "name": "timingEnable",
  5934. "type": "Boolean",
  5935. "isCollection": false,
  5936. "description": "是否是定时任务.",
  5937. "isBaseType": true
  5938. },
  5939. {
  5940. "name": "timingInterval",
  5941. "type": "Integer",
  5942. "isCollection": false,
  5943. "description": "运行间隔,分钟.",
  5944. "isBaseType": true
  5945. },
  5946. {
  5947. "name": "availablePersonList",
  5948. "type": "List\u003cString\u003e",
  5949. "isCollection": true,
  5950. "description": "可使用的人.",
  5951. "isBaseType": true
  5952. },
  5953. {
  5954. "name": "availableIdentityList",
  5955. "type": "List\u003cString\u003e",
  5956. "isCollection": true,
  5957. "description": "可使用的身份.",
  5958. "isBaseType": true
  5959. },
  5960. {
  5961. "name": "availableUnitList",
  5962. "type": "List\u003cString\u003e",
  5963. "isCollection": true,
  5964. "description": "在指定启动时候,允许新建的组织.",
  5965. "isBaseType": true
  5966. },
  5967. {
  5968. "name": "icon",
  5969. "type": "String",
  5970. "isCollection": false,
  5971. "description": "icon Base64编码后的文本.",
  5972. "isBaseType": true
  5973. },
  5974. {
  5975. "name": "controllerList",
  5976. "type": "List\u003cString\u003e",
  5977. "isCollection": true,
  5978. "description": "应用管理者。",
  5979. "isBaseType": true
  5980. },
  5981. {
  5982. "name": "creatorPerson",
  5983. "type": "String",
  5984. "isCollection": false,
  5985. "description": "应用的创建者。",
  5986. "isBaseType": true
  5987. },
  5988. {
  5989. "name": "lastUpdateTime",
  5990. "type": "Date",
  5991. "isCollection": false,
  5992. "description": "应用的最后修改时间。",
  5993. "isBaseType": true
  5994. },
  5995. {
  5996. "name": "lastUpdatePerson",
  5997. "type": "String",
  5998. "isCollection": false,
  5999. "description": "应用的最后修改者",
  6000. "isBaseType": true
  6001. },
  6002. {
  6003. "name": "layout",
  6004. "type": "String",
  6005. "isCollection": false,
  6006. "description": "显示布局.",
  6007. "isBaseType": true
  6008. },
  6009. {
  6010. "name": "data",
  6011. "type": "String",
  6012. "isCollection": false,
  6013. "description": "方案文本.",
  6014. "isBaseType": true
  6015. },
  6016. {
  6017. "name": "result",
  6018. "type": "String",
  6019. "isCollection": false,
  6020. "description": "缓存结果.",
  6021. "isBaseType": true
  6022. }
  6023. ],
  6024. "outs": [
  6025. {
  6026. "name": "id",
  6027. "type": "String",
  6028. "isCollection": false,
  6029. "description": "id"
  6030. }
  6031. ]
  6032. }
  6033. ]
  6034. },
  6035. {
  6036. "name": "QueryViewAction",
  6037. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.QueryViewAction",
  6038. "description": "视图",
  6039. "methods": [
  6040. {
  6041. "name": "create",
  6042. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionCreate",
  6043. "description": "创建QueryView.",
  6044. "type": "POST",
  6045. "path": "jaxrs/queryview",
  6046. "contentType": "application/json",
  6047. "resultContentType": "application/json; charset\u003dUTF-8",
  6048. "useJsonElementParameter": false,
  6049. "pathParameters": [],
  6050. "formParameters": [],
  6051. "queryParameters": [],
  6052. "ins": [
  6053. {
  6054. "name": "id",
  6055. "type": "String",
  6056. "isCollection": false,
  6057. "description": "数据库主键,自动生成.",
  6058. "isBaseType": true
  6059. },
  6060. {
  6061. "name": "name",
  6062. "type": "String",
  6063. "isCollection": false,
  6064. "description": "名称.",
  6065. "isBaseType": true
  6066. },
  6067. {
  6068. "name": "alias",
  6069. "type": "String",
  6070. "isCollection": false,
  6071. "description": "别名.",
  6072. "isBaseType": true
  6073. },
  6074. {
  6075. "name": "description",
  6076. "type": "String",
  6077. "isCollection": false,
  6078. "description": "描述.",
  6079. "isBaseType": true
  6080. },
  6081. {
  6082. "name": "application",
  6083. "type": "String",
  6084. "isCollection": false,
  6085. "description": "所属应用.",
  6086. "isBaseType": true
  6087. },
  6088. {
  6089. "name": "timingEnable",
  6090. "type": "Boolean",
  6091. "isCollection": false,
  6092. "description": "是否是定时任务.",
  6093. "isBaseType": true
  6094. },
  6095. {
  6096. "name": "timingTouch",
  6097. "type": "Integer",
  6098. "isCollection": false,
  6099. "description": "上次运行后触发器触发过的次数,用于判断是否要运行,如果需要运行那么重置为0,避免由于时间往后调导致的不运行.",
  6100. "isBaseType": true
  6101. },
  6102. {
  6103. "name": "timingInterval",
  6104. "type": "Integer",
  6105. "isCollection": false,
  6106. "description": "运行间隔,分钟.",
  6107. "isBaseType": true
  6108. },
  6109. {
  6110. "name": "availablePersonList",
  6111. "type": "List\u003cString\u003e",
  6112. "isCollection": true,
  6113. "description": "可使用的人.",
  6114. "isBaseType": true
  6115. },
  6116. {
  6117. "name": "availableIdentityList",
  6118. "type": "List\u003cString\u003e",
  6119. "isCollection": true,
  6120. "description": "可使用的身份.",
  6121. "isBaseType": true
  6122. },
  6123. {
  6124. "name": "availableUnitList",
  6125. "type": "List\u003cString\u003e",
  6126. "isCollection": true,
  6127. "description": "在指定启动时候,允许新建Work的组织.",
  6128. "isBaseType": true
  6129. },
  6130. {
  6131. "name": "icon",
  6132. "type": "String",
  6133. "isCollection": false,
  6134. "description": "icon Base64编码后的文本.",
  6135. "isBaseType": true
  6136. },
  6137. {
  6138. "name": "controllerList",
  6139. "type": "List\u003cString\u003e",
  6140. "isCollection": true,
  6141. "description": "应用管理者。",
  6142. "isBaseType": true
  6143. },
  6144. {
  6145. "name": "creatorPerson",
  6146. "type": "String",
  6147. "isCollection": false,
  6148. "description": "应用的创建者。",
  6149. "isBaseType": true
  6150. },
  6151. {
  6152. "name": "lastUpdateTime",
  6153. "type": "Date",
  6154. "isCollection": false,
  6155. "description": "应用的最后修改时间。",
  6156. "isBaseType": true
  6157. },
  6158. {
  6159. "name": "lastUpdatePerson",
  6160. "type": "String",
  6161. "isCollection": false,
  6162. "description": "应用的最后修改者",
  6163. "isBaseType": true
  6164. },
  6165. {
  6166. "name": "layout",
  6167. "type": "String",
  6168. "isCollection": false,
  6169. "description": "显示布局.",
  6170. "isBaseType": true
  6171. },
  6172. {
  6173. "name": "data",
  6174. "type": "String",
  6175. "isCollection": false,
  6176. "description": "方案文本.",
  6177. "isBaseType": true
  6178. },
  6179. {
  6180. "name": "afterGridScriptText",
  6181. "type": "String",
  6182. "isCollection": false,
  6183. "description": "gird生成后运行脚本.",
  6184. "isBaseType": true
  6185. },
  6186. {
  6187. "name": "afterGroupGridScriptText",
  6188. "type": "String",
  6189. "isCollection": false,
  6190. "description": "gropuGird生成后运行脚本.",
  6191. "isBaseType": true
  6192. },
  6193. {
  6194. "name": "afterCalculateGridScriptText",
  6195. "type": "String",
  6196. "isCollection": false,
  6197. "description": "calculateGrid生成后运行脚本.",
  6198. "isBaseType": true
  6199. },
  6200. {
  6201. "name": "code",
  6202. "type": "String",
  6203. "isCollection": false,
  6204. "description": "前台运行脚本.",
  6205. "isBaseType": true
  6206. },
  6207. {
  6208. "name": "display",
  6209. "type": "Boolean",
  6210. "isCollection": false,
  6211. "description": "是否前端可见.",
  6212. "isBaseType": true
  6213. }
  6214. ],
  6215. "outs": [
  6216. {
  6217. "name": "id",
  6218. "type": "String",
  6219. "isCollection": false,
  6220. "description": "id"
  6221. }
  6222. ]
  6223. },
  6224. {
  6225. "name": "delete",
  6226. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionDelete",
  6227. "description": "删除QueryView.",
  6228. "type": "DELETE",
  6229. "path": "jaxrs/queryview/{id}",
  6230. "contentType": "application/json",
  6231. "resultContentType": "application/json; charset\u003dUTF-8",
  6232. "useJsonElementParameter": false,
  6233. "pathParameters": [
  6234. {
  6235. "name": "id",
  6236. "type": "String",
  6237. "description": "视图标识"
  6238. }
  6239. ],
  6240. "formParameters": [],
  6241. "queryParameters": [],
  6242. "ins": [],
  6243. "outs": [
  6244. {
  6245. "name": "id",
  6246. "type": "String",
  6247. "isCollection": false,
  6248. "description": "id"
  6249. }
  6250. ]
  6251. },
  6252. {
  6253. "name": "get",
  6254. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionGet",
  6255. "description": "获取QueryView内容.",
  6256. "type": "GET",
  6257. "path": "jaxrs/queryview/{id}",
  6258. "contentType": "application/json",
  6259. "resultContentType": "application/json; charset\u003dUTF-8",
  6260. "useJsonElementParameter": false,
  6261. "pathParameters": [
  6262. {
  6263. "name": "id",
  6264. "type": "String",
  6265. "description": "视图标识"
  6266. }
  6267. ],
  6268. "formParameters": [],
  6269. "queryParameters": [],
  6270. "ins": [],
  6271. "outs": [
  6272. {
  6273. "name": "id",
  6274. "type": "String",
  6275. "isCollection": false,
  6276. "description": "数据库主键,自动生成."
  6277. },
  6278. {
  6279. "name": "name",
  6280. "type": "String",
  6281. "isCollection": false,
  6282. "description": "名称."
  6283. },
  6284. {
  6285. "name": "alias",
  6286. "type": "String",
  6287. "isCollection": false,
  6288. "description": "别名."
  6289. },
  6290. {
  6291. "name": "description",
  6292. "type": "String",
  6293. "isCollection": false,
  6294. "description": "描述."
  6295. },
  6296. {
  6297. "name": "application",
  6298. "type": "String",
  6299. "isCollection": false,
  6300. "description": "所属应用."
  6301. },
  6302. {
  6303. "name": "timingEnable",
  6304. "type": "Boolean",
  6305. "isCollection": false,
  6306. "description": "是否是定时任务."
  6307. },
  6308. {
  6309. "name": "timingTouch",
  6310. "type": "Integer",
  6311. "isCollection": false,
  6312. "description": "上次运行后触发器触发过的次数,用于判断是否要运行,如果需要运行那么重置为0,避免由于时间往后调导致的不运行."
  6313. },
  6314. {
  6315. "name": "timingInterval",
  6316. "type": "Integer",
  6317. "isCollection": false,
  6318. "description": "运行间隔,分钟."
  6319. },
  6320. {
  6321. "name": "availablePersonList",
  6322. "type": "List\u003cString\u003e",
  6323. "isCollection": true,
  6324. "description": "可使用的人."
  6325. },
  6326. {
  6327. "name": "availableIdentityList",
  6328. "type": "List\u003cString\u003e",
  6329. "isCollection": true,
  6330. "description": "可使用的身份."
  6331. },
  6332. {
  6333. "name": "availableUnitList",
  6334. "type": "List\u003cString\u003e",
  6335. "isCollection": true,
  6336. "description": "在指定启动时候,允许新建Work的组织."
  6337. },
  6338. {
  6339. "name": "icon",
  6340. "type": "String",
  6341. "isCollection": false,
  6342. "description": "icon Base64编码后的文本."
  6343. },
  6344. {
  6345. "name": "controllerList",
  6346. "type": "List\u003cString\u003e",
  6347. "isCollection": true,
  6348. "description": "应用管理者。"
  6349. },
  6350. {
  6351. "name": "creatorPerson",
  6352. "type": "String",
  6353. "isCollection": false,
  6354. "description": "应用的创建者。"
  6355. },
  6356. {
  6357. "name": "lastUpdateTime",
  6358. "type": "Date",
  6359. "isCollection": false,
  6360. "description": "应用的最后修改时间。"
  6361. },
  6362. {
  6363. "name": "lastUpdatePerson",
  6364. "type": "String",
  6365. "isCollection": false,
  6366. "description": "应用的最后修改者"
  6367. },
  6368. {
  6369. "name": "layout",
  6370. "type": "String",
  6371. "isCollection": false,
  6372. "description": "显示布局."
  6373. },
  6374. {
  6375. "name": "data",
  6376. "type": "String",
  6377. "isCollection": false,
  6378. "description": "方案文本."
  6379. },
  6380. {
  6381. "name": "afterGridScriptText",
  6382. "type": "String",
  6383. "isCollection": false,
  6384. "description": "gird生成后运行脚本."
  6385. },
  6386. {
  6387. "name": "afterGroupGridScriptText",
  6388. "type": "String",
  6389. "isCollection": false,
  6390. "description": "gropuGird生成后运行脚本."
  6391. },
  6392. {
  6393. "name": "afterCalculateGridScriptText",
  6394. "type": "String",
  6395. "isCollection": false,
  6396. "description": "calculateGrid生成后运行脚本."
  6397. },
  6398. {
  6399. "name": "code",
  6400. "type": "String",
  6401. "isCollection": false,
  6402. "description": "前台运行脚本."
  6403. },
  6404. {
  6405. "name": "display",
  6406. "type": "Boolean",
  6407. "isCollection": false,
  6408. "description": "是否前端可见."
  6409. },
  6410. {
  6411. "name": "createTime",
  6412. "type": "Date",
  6413. "isCollection": false,
  6414. "description": "创建时间,自动生成,索引创建在约束中."
  6415. },
  6416. {
  6417. "name": "updateTime",
  6418. "type": "Date",
  6419. "isCollection": false,
  6420. "description": "修改时间,自动生成,索引创建在约束中."
  6421. }
  6422. ]
  6423. },
  6424. {
  6425. "name": "list",
  6426. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionList",
  6427. "description": "列示QueryView按应用分类.",
  6428. "type": "GET",
  6429. "path": "jaxrs/queryview/list",
  6430. "contentType": "application/json",
  6431. "resultContentType": "application/json; charset\u003dUTF-8",
  6432. "useJsonElementParameter": false,
  6433. "pathParameters": [],
  6434. "formParameters": [],
  6435. "queryParameters": [],
  6436. "ins": [],
  6437. "outs": [
  6438. {
  6439. "name": "queryViewList",
  6440. "type": "List\u003cWoQueryView\u003e",
  6441. "isCollection": true,
  6442. "description": "视图"
  6443. },
  6444. {
  6445. "name": "id",
  6446. "type": "String",
  6447. "isCollection": false,
  6448. "description": "数据库主键,自动生成."
  6449. },
  6450. {
  6451. "name": "name",
  6452. "type": "String",
  6453. "isCollection": false,
  6454. "description": "名称."
  6455. },
  6456. {
  6457. "name": "alias",
  6458. "type": "String",
  6459. "isCollection": false,
  6460. "description": "应用别名,如果有必须唯一."
  6461. },
  6462. {
  6463. "name": "description",
  6464. "type": "String",
  6465. "isCollection": false,
  6466. "description": "描述."
  6467. },
  6468. {
  6469. "name": "availableIdentityList",
  6470. "type": "List\u003cString\u003e",
  6471. "isCollection": true,
  6472. "description": "在指定启动时候,允许新建Work的用户."
  6473. },
  6474. {
  6475. "name": "availableUnitList",
  6476. "type": "List\u003cString\u003e",
  6477. "isCollection": true,
  6478. "description": "在指定启动时候,允许新建Work的部门."
  6479. },
  6480. {
  6481. "name": "applicationCategory",
  6482. "type": "String",
  6483. "isCollection": false,
  6484. "description": "应用分类."
  6485. },
  6486. {
  6487. "name": "icon",
  6488. "type": "String",
  6489. "isCollection": false,
  6490. "description": "icon Base64编码后的文本."
  6491. },
  6492. {
  6493. "name": "iconHue",
  6494. "type": "String",
  6495. "isCollection": false,
  6496. "description": "icon的主色调"
  6497. },
  6498. {
  6499. "name": "controllerList",
  6500. "type": "List\u003cString\u003e",
  6501. "isCollection": true,
  6502. "description": "应用管理者."
  6503. },
  6504. {
  6505. "name": "creatorPerson",
  6506. "type": "String",
  6507. "isCollection": false,
  6508. "description": "应用的创建者。"
  6509. },
  6510. {
  6511. "name": "lastUpdateTime",
  6512. "type": "Date",
  6513. "isCollection": false,
  6514. "description": "应用的最后修改时间。"
  6515. },
  6516. {
  6517. "name": "lastUpdatePerson",
  6518. "type": "String",
  6519. "isCollection": false,
  6520. "description": "应用的最后修改者"
  6521. },
  6522. {
  6523. "name": "createTime",
  6524. "type": "Date",
  6525. "isCollection": false,
  6526. "description": "创建时间,自动生成,索引创建在约束中."
  6527. },
  6528. {
  6529. "name": "updateTime",
  6530. "type": "Date",
  6531. "isCollection": false,
  6532. "description": "修改时间,自动生成,索引创建在约束中."
  6533. }
  6534. ]
  6535. },
  6536. {
  6537. "name": "listNext",
  6538. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionListNext",
  6539. "description": "列示QueryView对象,下一页.",
  6540. "type": "GET",
  6541. "path": "jaxrs/queryview/list/{id}/next/{count}",
  6542. "contentType": "application/json",
  6543. "resultContentType": "application/json; charset\u003dUTF-8",
  6544. "useJsonElementParameter": false,
  6545. "pathParameters": [
  6546. {
  6547. "name": "count",
  6548. "type": "Integer",
  6549. "description": "数量"
  6550. },
  6551. {
  6552. "name": "id",
  6553. "type": "String",
  6554. "description": "视图标识"
  6555. }
  6556. ],
  6557. "formParameters": [],
  6558. "queryParameters": [],
  6559. "ins": [],
  6560. "outs": [
  6561. {
  6562. "name": "rank",
  6563. "type": "Long",
  6564. "isCollection": false,
  6565. "description": "排序号"
  6566. },
  6567. {
  6568. "name": "id",
  6569. "type": "String",
  6570. "isCollection": false,
  6571. "description": "数据库主键,自动生成."
  6572. },
  6573. {
  6574. "name": "name",
  6575. "type": "String",
  6576. "isCollection": false,
  6577. "description": "名称."
  6578. },
  6579. {
  6580. "name": "alias",
  6581. "type": "String",
  6582. "isCollection": false,
  6583. "description": "别名."
  6584. },
  6585. {
  6586. "name": "description",
  6587. "type": "String",
  6588. "isCollection": false,
  6589. "description": "描述."
  6590. },
  6591. {
  6592. "name": "application",
  6593. "type": "String",
  6594. "isCollection": false,
  6595. "description": "所属应用."
  6596. },
  6597. {
  6598. "name": "timingEnable",
  6599. "type": "Boolean",
  6600. "isCollection": false,
  6601. "description": "是否是定时任务."
  6602. },
  6603. {
  6604. "name": "timingTouch",
  6605. "type": "Integer",
  6606. "isCollection": false,
  6607. "description": "上次运行后触发器触发过的次数,用于判断是否要运行,如果需要运行那么重置为0,避免由于时间往后调导致的不运行."
  6608. },
  6609. {
  6610. "name": "timingInterval",
  6611. "type": "Integer",
  6612. "isCollection": false,
  6613. "description": "运行间隔,分钟."
  6614. },
  6615. {
  6616. "name": "availablePersonList",
  6617. "type": "List\u003cString\u003e",
  6618. "isCollection": true,
  6619. "description": "可使用的人."
  6620. },
  6621. {
  6622. "name": "availableIdentityList",
  6623. "type": "List\u003cString\u003e",
  6624. "isCollection": true,
  6625. "description": "可使用的身份."
  6626. },
  6627. {
  6628. "name": "availableUnitList",
  6629. "type": "List\u003cString\u003e",
  6630. "isCollection": true,
  6631. "description": "在指定启动时候,允许新建Work的组织."
  6632. },
  6633. {
  6634. "name": "icon",
  6635. "type": "String",
  6636. "isCollection": false,
  6637. "description": "icon Base64编码后的文本."
  6638. },
  6639. {
  6640. "name": "controllerList",
  6641. "type": "List\u003cString\u003e",
  6642. "isCollection": true,
  6643. "description": "应用管理者。"
  6644. },
  6645. {
  6646. "name": "creatorPerson",
  6647. "type": "String",
  6648. "isCollection": false,
  6649. "description": "应用的创建者。"
  6650. },
  6651. {
  6652. "name": "lastUpdateTime",
  6653. "type": "Date",
  6654. "isCollection": false,
  6655. "description": "应用的最后修改时间。"
  6656. },
  6657. {
  6658. "name": "lastUpdatePerson",
  6659. "type": "String",
  6660. "isCollection": false,
  6661. "description": "应用的最后修改者"
  6662. },
  6663. {
  6664. "name": "layout",
  6665. "type": "String",
  6666. "isCollection": false,
  6667. "description": "显示布局."
  6668. },
  6669. {
  6670. "name": "data",
  6671. "type": "String",
  6672. "isCollection": false,
  6673. "description": "方案文本."
  6674. },
  6675. {
  6676. "name": "afterGridScriptText",
  6677. "type": "String",
  6678. "isCollection": false,
  6679. "description": "gird生成后运行脚本."
  6680. },
  6681. {
  6682. "name": "afterGroupGridScriptText",
  6683. "type": "String",
  6684. "isCollection": false,
  6685. "description": "gropuGird生成后运行脚本."
  6686. },
  6687. {
  6688. "name": "afterCalculateGridScriptText",
  6689. "type": "String",
  6690. "isCollection": false,
  6691. "description": "calculateGrid生成后运行脚本."
  6692. },
  6693. {
  6694. "name": "code",
  6695. "type": "String",
  6696. "isCollection": false,
  6697. "description": "前台运行脚本."
  6698. },
  6699. {
  6700. "name": "display",
  6701. "type": "Boolean",
  6702. "isCollection": false,
  6703. "description": "是否前端可见."
  6704. },
  6705. {
  6706. "name": "createTime",
  6707. "type": "Date",
  6708. "isCollection": false,
  6709. "description": "创建时间,自动生成,索引创建在约束中."
  6710. },
  6711. {
  6712. "name": "updateTime",
  6713. "type": "Date",
  6714. "isCollection": false,
  6715. "description": "修改时间,自动生成,索引创建在约束中."
  6716. }
  6717. ]
  6718. },
  6719. {
  6720. "name": "listPrev",
  6721. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionListPrev",
  6722. "description": "列示QueryView对象,上一页.",
  6723. "type": "GET",
  6724. "path": "jaxrs/queryview/list/{id}/prev/{count}",
  6725. "contentType": "application/json",
  6726. "resultContentType": "application/json; charset\u003dUTF-8",
  6727. "useJsonElementParameter": false,
  6728. "pathParameters": [
  6729. {
  6730. "name": "count",
  6731. "type": "Integer",
  6732. "description": "数量"
  6733. },
  6734. {
  6735. "name": "id",
  6736. "type": "String",
  6737. "description": "视图标识"
  6738. }
  6739. ],
  6740. "formParameters": [],
  6741. "queryParameters": [],
  6742. "ins": [],
  6743. "outs": [
  6744. {
  6745. "name": "rank",
  6746. "type": "Long",
  6747. "isCollection": false,
  6748. "description": "排序号"
  6749. },
  6750. {
  6751. "name": "id",
  6752. "type": "String",
  6753. "isCollection": false,
  6754. "description": "数据库主键,自动生成."
  6755. },
  6756. {
  6757. "name": "name",
  6758. "type": "String",
  6759. "isCollection": false,
  6760. "description": "名称."
  6761. },
  6762. {
  6763. "name": "alias",
  6764. "type": "String",
  6765. "isCollection": false,
  6766. "description": "别名."
  6767. },
  6768. {
  6769. "name": "description",
  6770. "type": "String",
  6771. "isCollection": false,
  6772. "description": "描述."
  6773. },
  6774. {
  6775. "name": "application",
  6776. "type": "String",
  6777. "isCollection": false,
  6778. "description": "所属应用."
  6779. },
  6780. {
  6781. "name": "timingEnable",
  6782. "type": "Boolean",
  6783. "isCollection": false,
  6784. "description": "是否是定时任务."
  6785. },
  6786. {
  6787. "name": "timingTouch",
  6788. "type": "Integer",
  6789. "isCollection": false,
  6790. "description": "上次运行后触发器触发过的次数,用于判断是否要运行,如果需要运行那么重置为0,避免由于时间往后调导致的不运行."
  6791. },
  6792. {
  6793. "name": "timingInterval",
  6794. "type": "Integer",
  6795. "isCollection": false,
  6796. "description": "运行间隔,分钟."
  6797. },
  6798. {
  6799. "name": "availablePersonList",
  6800. "type": "List\u003cString\u003e",
  6801. "isCollection": true,
  6802. "description": "可使用的人."
  6803. },
  6804. {
  6805. "name": "availableIdentityList",
  6806. "type": "List\u003cString\u003e",
  6807. "isCollection": true,
  6808. "description": "可使用的身份."
  6809. },
  6810. {
  6811. "name": "availableUnitList",
  6812. "type": "List\u003cString\u003e",
  6813. "isCollection": true,
  6814. "description": "在指定启动时候,允许新建Work的组织."
  6815. },
  6816. {
  6817. "name": "icon",
  6818. "type": "String",
  6819. "isCollection": false,
  6820. "description": "icon Base64编码后的文本."
  6821. },
  6822. {
  6823. "name": "controllerList",
  6824. "type": "List\u003cString\u003e",
  6825. "isCollection": true,
  6826. "description": "应用管理者。"
  6827. },
  6828. {
  6829. "name": "creatorPerson",
  6830. "type": "String",
  6831. "isCollection": false,
  6832. "description": "应用的创建者。"
  6833. },
  6834. {
  6835. "name": "lastUpdateTime",
  6836. "type": "Date",
  6837. "isCollection": false,
  6838. "description": "应用的最后修改时间。"
  6839. },
  6840. {
  6841. "name": "lastUpdatePerson",
  6842. "type": "String",
  6843. "isCollection": false,
  6844. "description": "应用的最后修改者"
  6845. },
  6846. {
  6847. "name": "layout",
  6848. "type": "String",
  6849. "isCollection": false,
  6850. "description": "显示布局."
  6851. },
  6852. {
  6853. "name": "data",
  6854. "type": "String",
  6855. "isCollection": false,
  6856. "description": "方案文本."
  6857. },
  6858. {
  6859. "name": "afterGridScriptText",
  6860. "type": "String",
  6861. "isCollection": false,
  6862. "description": "gird生成后运行脚本."
  6863. },
  6864. {
  6865. "name": "afterGroupGridScriptText",
  6866. "type": "String",
  6867. "isCollection": false,
  6868. "description": "gropuGird生成后运行脚本."
  6869. },
  6870. {
  6871. "name": "afterCalculateGridScriptText",
  6872. "type": "String",
  6873. "isCollection": false,
  6874. "description": "calculateGrid生成后运行脚本."
  6875. },
  6876. {
  6877. "name": "code",
  6878. "type": "String",
  6879. "isCollection": false,
  6880. "description": "前台运行脚本."
  6881. },
  6882. {
  6883. "name": "display",
  6884. "type": "Boolean",
  6885. "isCollection": false,
  6886. "description": "是否前端可见."
  6887. },
  6888. {
  6889. "name": "createTime",
  6890. "type": "Date",
  6891. "isCollection": false,
  6892. "description": "创建时间,自动生成,索引创建在约束中."
  6893. },
  6894. {
  6895. "name": "updateTime",
  6896. "type": "Date",
  6897. "isCollection": false,
  6898. "description": "修改时间,自动生成,索引创建在约束中."
  6899. }
  6900. ]
  6901. },
  6902. {
  6903. "name": "listWithApplication",
  6904. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionListWithApplication",
  6905. "description": "根据应用列示视图.",
  6906. "type": "GET",
  6907. "path": "jaxrs/queryview/list/application/{applicationId}",
  6908. "contentType": "application/json",
  6909. "resultContentType": "application/json; charset\u003dUTF-8",
  6910. "useJsonElementParameter": false,
  6911. "pathParameters": [
  6912. {
  6913. "name": "applicationId",
  6914. "type": "String",
  6915. "description": "应用标识"
  6916. }
  6917. ],
  6918. "formParameters": [],
  6919. "queryParameters": [],
  6920. "ins": [],
  6921. "outs": [
  6922. {
  6923. "name": "rank",
  6924. "type": "Long",
  6925. "isCollection": false,
  6926. "description": "排序号"
  6927. },
  6928. {
  6929. "name": "id",
  6930. "type": "String",
  6931. "isCollection": false,
  6932. "description": "数据库主键,自动生成."
  6933. },
  6934. {
  6935. "name": "name",
  6936. "type": "String",
  6937. "isCollection": false,
  6938. "description": "名称."
  6939. },
  6940. {
  6941. "name": "alias",
  6942. "type": "String",
  6943. "isCollection": false,
  6944. "description": "别名."
  6945. },
  6946. {
  6947. "name": "description",
  6948. "type": "String",
  6949. "isCollection": false,
  6950. "description": "描述."
  6951. },
  6952. {
  6953. "name": "application",
  6954. "type": "String",
  6955. "isCollection": false,
  6956. "description": "所属应用."
  6957. },
  6958. {
  6959. "name": "timingEnable",
  6960. "type": "Boolean",
  6961. "isCollection": false,
  6962. "description": "是否是定时任务."
  6963. },
  6964. {
  6965. "name": "timingTouch",
  6966. "type": "Integer",
  6967. "isCollection": false,
  6968. "description": "上次运行后触发器触发过的次数,用于判断是否要运行,如果需要运行那么重置为0,避免由于时间往后调导致的不运行."
  6969. },
  6970. {
  6971. "name": "timingInterval",
  6972. "type": "Integer",
  6973. "isCollection": false,
  6974. "description": "运行间隔,分钟."
  6975. },
  6976. {
  6977. "name": "availablePersonList",
  6978. "type": "List\u003cString\u003e",
  6979. "isCollection": true,
  6980. "description": "可使用的人."
  6981. },
  6982. {
  6983. "name": "availableIdentityList",
  6984. "type": "List\u003cString\u003e",
  6985. "isCollection": true,
  6986. "description": "可使用的身份."
  6987. },
  6988. {
  6989. "name": "availableUnitList",
  6990. "type": "List\u003cString\u003e",
  6991. "isCollection": true,
  6992. "description": "在指定启动时候,允许新建Work的组织."
  6993. },
  6994. {
  6995. "name": "icon",
  6996. "type": "String",
  6997. "isCollection": false,
  6998. "description": "icon Base64编码后的文本."
  6999. },
  7000. {
  7001. "name": "controllerList",
  7002. "type": "List\u003cString\u003e",
  7003. "isCollection": true,
  7004. "description": "应用管理者。"
  7005. },
  7006. {
  7007. "name": "creatorPerson",
  7008. "type": "String",
  7009. "isCollection": false,
  7010. "description": "应用的创建者。"
  7011. },
  7012. {
  7013. "name": "lastUpdateTime",
  7014. "type": "Date",
  7015. "isCollection": false,
  7016. "description": "应用的最后修改时间。"
  7017. },
  7018. {
  7019. "name": "lastUpdatePerson",
  7020. "type": "String",
  7021. "isCollection": false,
  7022. "description": "应用的最后修改者"
  7023. },
  7024. {
  7025. "name": "layout",
  7026. "type": "String",
  7027. "isCollection": false,
  7028. "description": "显示布局."
  7029. },
  7030. {
  7031. "name": "data",
  7032. "type": "String",
  7033. "isCollection": false,
  7034. "description": "方案文本."
  7035. },
  7036. {
  7037. "name": "afterGridScriptText",
  7038. "type": "String",
  7039. "isCollection": false,
  7040. "description": "gird生成后运行脚本."
  7041. },
  7042. {
  7043. "name": "afterGroupGridScriptText",
  7044. "type": "String",
  7045. "isCollection": false,
  7046. "description": "gropuGird生成后运行脚本."
  7047. },
  7048. {
  7049. "name": "afterCalculateGridScriptText",
  7050. "type": "String",
  7051. "isCollection": false,
  7052. "description": "calculateGrid生成后运行脚本."
  7053. },
  7054. {
  7055. "name": "code",
  7056. "type": "String",
  7057. "isCollection": false,
  7058. "description": "前台运行脚本."
  7059. },
  7060. {
  7061. "name": "display",
  7062. "type": "Boolean",
  7063. "isCollection": false,
  7064. "description": "是否前端可见."
  7065. },
  7066. {
  7067. "name": "createTime",
  7068. "type": "Date",
  7069. "isCollection": false,
  7070. "description": "创建时间,自动生成,索引创建在约束中."
  7071. },
  7072. {
  7073. "name": "updateTime",
  7074. "type": "Date",
  7075. "isCollection": false,
  7076. "description": "修改时间,自动生成,索引创建在约束中."
  7077. }
  7078. ]
  7079. },
  7080. {
  7081. "name": "simulate",
  7082. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionSimulate",
  7083. "description": "模拟执行queryView",
  7084. "type": "PUT",
  7085. "path": "jaxrs/queryview/{id}/simulate",
  7086. "contentType": "application/json",
  7087. "resultContentType": "application/json; charset\u003dUTF-8",
  7088. "useJsonElementParameter": false,
  7089. "pathParameters": [
  7090. {
  7091. "name": "id",
  7092. "type": "String",
  7093. "description": "视图标识"
  7094. }
  7095. ],
  7096. "formParameters": [],
  7097. "queryParameters": [],
  7098. "ins": [],
  7099. "outs": []
  7100. },
  7101. {
  7102. "name": "update",
  7103. "className": "com.x.processplatform.assemble.designer.jaxrs.queryview.ActionEdit",
  7104. "description": "更新QueryView.",
  7105. "type": "PUT",
  7106. "path": "jaxrs/queryview/{id}",
  7107. "contentType": "application/json",
  7108. "resultContentType": "application/json; charset\u003dUTF-8",
  7109. "useJsonElementParameter": false,
  7110. "pathParameters": [
  7111. {
  7112. "name": "id",
  7113. "type": "String",
  7114. "description": "视图标识"
  7115. }
  7116. ],
  7117. "formParameters": [],
  7118. "queryParameters": [],
  7119. "ins": [
  7120. {
  7121. "name": "id",
  7122. "type": "String",
  7123. "isCollection": false,
  7124. "description": "数据库主键,自动生成.",
  7125. "isBaseType": true
  7126. },
  7127. {
  7128. "name": "name",
  7129. "type": "String",
  7130. "isCollection": false,
  7131. "description": "名称.",
  7132. "isBaseType": true
  7133. },
  7134. {
  7135. "name": "alias",
  7136. "type": "String",
  7137. "isCollection": false,
  7138. "description": "别名.",
  7139. "isBaseType": true
  7140. },
  7141. {
  7142. "name": "description",
  7143. "type": "String",
  7144. "isCollection": false,
  7145. "description": "描述.",
  7146. "isBaseType": true
  7147. },
  7148. {
  7149. "name": "application",
  7150. "type": "String",
  7151. "isCollection": false,
  7152. "description": "所属应用.",
  7153. "isBaseType": true
  7154. },
  7155. {
  7156. "name": "timingEnable",
  7157. "type": "Boolean",
  7158. "isCollection": false,
  7159. "description": "是否是定时任务.",
  7160. "isBaseType": true
  7161. },
  7162. {
  7163. "name": "timingTouch",
  7164. "type": "Integer",
  7165. "isCollection": false,
  7166. "description": "上次运行后触发器触发过的次数,用于判断是否要运行,如果需要运行那么重置为0,避免由于时间往后调导致的不运行.",
  7167. "isBaseType": true
  7168. },
  7169. {
  7170. "name": "timingInterval",
  7171. "type": "Integer",
  7172. "isCollection": false,
  7173. "description": "运行间隔,分钟.",
  7174. "isBaseType": true
  7175. },
  7176. {
  7177. "name": "availablePersonList",
  7178. "type": "List\u003cString\u003e",
  7179. "isCollection": true,
  7180. "description": "可使用的人.",
  7181. "isBaseType": true
  7182. },
  7183. {
  7184. "name": "availableIdentityList",
  7185. "type": "List\u003cString\u003e",
  7186. "isCollection": true,
  7187. "description": "可使用的身份.",
  7188. "isBaseType": true
  7189. },
  7190. {
  7191. "name": "availableUnitList",
  7192. "type": "List\u003cString\u003e",
  7193. "isCollection": true,
  7194. "description": "在指定启动时候,允许新建Work的组织.",
  7195. "isBaseType": true
  7196. },
  7197. {
  7198. "name": "icon",
  7199. "type": "String",
  7200. "isCollection": false,
  7201. "description": "icon Base64编码后的文本.",
  7202. "isBaseType": true
  7203. },
  7204. {
  7205. "name": "controllerList",
  7206. "type": "List\u003cString\u003e",
  7207. "isCollection": true,
  7208. "description": "应用管理者。",
  7209. "isBaseType": true
  7210. },
  7211. {
  7212. "name": "creatorPerson",
  7213. "type": "String",
  7214. "isCollection": false,
  7215. "description": "应用的创建者。",
  7216. "isBaseType": true
  7217. },
  7218. {
  7219. "name": "lastUpdateTime",
  7220. "type": "Date",
  7221. "isCollection": false,
  7222. "description": "应用的最后修改时间。",
  7223. "isBaseType": true
  7224. },
  7225. {
  7226. "name": "lastUpdatePerson",
  7227. "type": "String",
  7228. "isCollection": false,
  7229. "description": "应用的最后修改者",
  7230. "isBaseType": true
  7231. },
  7232. {
  7233. "name": "layout",
  7234. "type": "String",
  7235. "isCollection": false,
  7236. "description": "显示布局.",
  7237. "isBaseType": true
  7238. },
  7239. {
  7240. "name": "data",
  7241. "type": "String",
  7242. "isCollection": false,
  7243. "description": "方案文本.",
  7244. "isBaseType": true
  7245. },
  7246. {
  7247. "name": "afterGridScriptText",
  7248. "type": "String",
  7249. "isCollection": false,
  7250. "description": "gird生成后运行脚本.",
  7251. "isBaseType": true
  7252. },
  7253. {
  7254. "name": "afterGroupGridScriptText",
  7255. "type": "String",
  7256. "isCollection": false,
  7257. "description": "gropuGird生成后运行脚本.",
  7258. "isBaseType": true
  7259. },
  7260. {
  7261. "name": "afterCalculateGridScriptText",
  7262. "type": "String",
  7263. "isCollection": false,
  7264. "description": "calculateGrid生成后运行脚本.",
  7265. "isBaseType": true
  7266. },
  7267. {
  7268. "name": "code",
  7269. "type": "String",
  7270. "isCollection": false,
  7271. "description": "前台运行脚本.",
  7272. "isBaseType": true
  7273. },
  7274. {
  7275. "name": "display",
  7276. "type": "Boolean",
  7277. "isCollection": false,
  7278. "description": "是否前端可见.",
  7279. "isBaseType": true
  7280. }
  7281. ],
  7282. "outs": [
  7283. {
  7284. "name": "id",
  7285. "type": "String",
  7286. "isCollection": false,
  7287. "description": "id"
  7288. }
  7289. ]
  7290. }
  7291. ]
  7292. },
  7293. {
  7294. "name": "ScriptAction",
  7295. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ScriptAction",
  7296. "description": "脚本",
  7297. "methods": [
  7298. {
  7299. "name": "delete",
  7300. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ActionDelete",
  7301. "description": "删除脚本.",
  7302. "type": "DELETE",
  7303. "path": "jaxrs/script/{id}",
  7304. "contentType": "application/json",
  7305. "resultContentType": "application/json; charset\u003dUTF-8",
  7306. "useJsonElementParameter": false,
  7307. "pathParameters": [
  7308. {
  7309. "name": "id",
  7310. "type": "String",
  7311. "description": "标识"
  7312. }
  7313. ],
  7314. "formParameters": [],
  7315. "queryParameters": [],
  7316. "ins": [],
  7317. "outs": [
  7318. {
  7319. "name": "id",
  7320. "type": "String",
  7321. "isCollection": false,
  7322. "description": "id"
  7323. }
  7324. ]
  7325. },
  7326. {
  7327. "name": "get",
  7328. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ActionGet",
  7329. "description": "获取指定的脚本信息.",
  7330. "type": "GET",
  7331. "path": "jaxrs/script/{id}",
  7332. "contentType": "application/json",
  7333. "resultContentType": "application/json; charset\u003dUTF-8",
  7334. "useJsonElementParameter": false,
  7335. "pathParameters": [
  7336. {
  7337. "name": "id",
  7338. "type": "String",
  7339. "description": "标识"
  7340. }
  7341. ],
  7342. "formParameters": [],
  7343. "queryParameters": [],
  7344. "ins": [],
  7345. "outs": [
  7346. {
  7347. "name": "id",
  7348. "type": "String",
  7349. "isCollection": false,
  7350. "description": "数据库主键,自动生成."
  7351. },
  7352. {
  7353. "name": "name",
  7354. "type": "String",
  7355. "isCollection": false,
  7356. "description": "名称."
  7357. },
  7358. {
  7359. "name": "alias",
  7360. "type": "String",
  7361. "isCollection": false,
  7362. "description": "别名."
  7363. },
  7364. {
  7365. "name": "description",
  7366. "type": "String",
  7367. "isCollection": false,
  7368. "description": "描述."
  7369. },
  7370. {
  7371. "name": "validated",
  7372. "type": "Boolean",
  7373. "isCollection": false,
  7374. "description": "代码格式是否正确."
  7375. },
  7376. {
  7377. "name": "application",
  7378. "type": "String",
  7379. "isCollection": false,
  7380. "description": "脚本所属应用."
  7381. },
  7382. {
  7383. "name": "text",
  7384. "type": "String",
  7385. "isCollection": false,
  7386. "description": "脚本内容."
  7387. },
  7388. {
  7389. "name": "dependScriptList",
  7390. "type": "List\u003cString\u003e",
  7391. "isCollection": true,
  7392. "description": "依赖的函数列表."
  7393. },
  7394. {
  7395. "name": "creatorPerson",
  7396. "type": "String",
  7397. "isCollection": false,
  7398. "description": "流程创建者."
  7399. },
  7400. {
  7401. "name": "lastUpdatePerson",
  7402. "type": "String",
  7403. "isCollection": false,
  7404. "description": "最后的编辑者."
  7405. },
  7406. {
  7407. "name": "lastUpdateTime",
  7408. "type": "Date",
  7409. "isCollection": false,
  7410. "description": "最后的编辑时间."
  7411. },
  7412. {
  7413. "name": "createTime",
  7414. "type": "Date",
  7415. "isCollection": false,
  7416. "description": "创建时间,自动生成,索引创建在约束中."
  7417. },
  7418. {
  7419. "name": "updateTime",
  7420. "type": "Date",
  7421. "isCollection": false,
  7422. "description": "修改时间,自动生成,索引创建在约束中."
  7423. }
  7424. ]
  7425. },
  7426. {
  7427. "name": "getWithApplicationWithName",
  7428. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ActionGetWithApplicationWithName",
  7429. "description": "根据应用ID和脚本名称获取脚本.",
  7430. "type": "GET",
  7431. "path": "jaxrs/script/application/{applicationId}/name/{name}",
  7432. "contentType": "application/json",
  7433. "resultContentType": "application/json; charset\u003dUTF-8",
  7434. "useJsonElementParameter": false,
  7435. "pathParameters": [
  7436. {
  7437. "name": "applicationId",
  7438. "type": "String",
  7439. "description": "应用标识"
  7440. },
  7441. {
  7442. "name": "name",
  7443. "type": "String",
  7444. "description": "名称"
  7445. }
  7446. ],
  7447. "formParameters": [],
  7448. "queryParameters": [],
  7449. "ins": [],
  7450. "outs": [
  7451. {
  7452. "name": "id",
  7453. "type": "String",
  7454. "isCollection": false,
  7455. "description": "数据库主键,自动生成."
  7456. },
  7457. {
  7458. "name": "name",
  7459. "type": "String",
  7460. "isCollection": false,
  7461. "description": "名称."
  7462. },
  7463. {
  7464. "name": "alias",
  7465. "type": "String",
  7466. "isCollection": false,
  7467. "description": "别名."
  7468. },
  7469. {
  7470. "name": "description",
  7471. "type": "String",
  7472. "isCollection": false,
  7473. "description": "描述."
  7474. },
  7475. {
  7476. "name": "validated",
  7477. "type": "Boolean",
  7478. "isCollection": false,
  7479. "description": "代码格式是否正确."
  7480. },
  7481. {
  7482. "name": "application",
  7483. "type": "String",
  7484. "isCollection": false,
  7485. "description": "脚本所属应用."
  7486. },
  7487. {
  7488. "name": "text",
  7489. "type": "String",
  7490. "isCollection": false,
  7491. "description": "脚本内容."
  7492. },
  7493. {
  7494. "name": "dependScriptList",
  7495. "type": "List\u003cString\u003e",
  7496. "isCollection": true,
  7497. "description": "依赖的函数列表."
  7498. },
  7499. {
  7500. "name": "creatorPerson",
  7501. "type": "String",
  7502. "isCollection": false,
  7503. "description": "流程创建者."
  7504. },
  7505. {
  7506. "name": "lastUpdatePerson",
  7507. "type": "String",
  7508. "isCollection": false,
  7509. "description": "最后的编辑者."
  7510. },
  7511. {
  7512. "name": "lastUpdateTime",
  7513. "type": "Date",
  7514. "isCollection": false,
  7515. "description": "最后的编辑时间."
  7516. },
  7517. {
  7518. "name": "createTime",
  7519. "type": "Date",
  7520. "isCollection": false,
  7521. "description": "创建时间,自动生成,索引创建在约束中."
  7522. },
  7523. {
  7524. "name": "updateTime",
  7525. "type": "Date",
  7526. "isCollection": false,
  7527. "description": "修改时间,自动生成,索引创建在约束中."
  7528. }
  7529. ]
  7530. },
  7531. {
  7532. "name": "listNext",
  7533. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ActionListNext",
  7534. "description": "列示Script对象,下一页.",
  7535. "type": "GET",
  7536. "path": "jaxrs/script/list/{id}/next/{count}",
  7537. "contentType": "application/json",
  7538. "resultContentType": "application/json; charset\u003dUTF-8",
  7539. "useJsonElementParameter": false,
  7540. "pathParameters": [
  7541. {
  7542. "name": "count",
  7543. "type": "Integer",
  7544. "description": "数量"
  7545. },
  7546. {
  7547. "name": "id",
  7548. "type": "String",
  7549. "description": "标识"
  7550. }
  7551. ],
  7552. "formParameters": [],
  7553. "queryParameters": [],
  7554. "ins": [],
  7555. "outs": [
  7556. {
  7557. "name": "rank",
  7558. "type": "Long",
  7559. "isCollection": false,
  7560. "description": "排序号"
  7561. },
  7562. {
  7563. "name": "id",
  7564. "type": "String",
  7565. "isCollection": false,
  7566. "description": "数据库主键,自动生成."
  7567. },
  7568. {
  7569. "name": "name",
  7570. "type": "String",
  7571. "isCollection": false,
  7572. "description": "名称."
  7573. },
  7574. {
  7575. "name": "alias",
  7576. "type": "String",
  7577. "isCollection": false,
  7578. "description": "别名."
  7579. },
  7580. {
  7581. "name": "description",
  7582. "type": "String",
  7583. "isCollection": false,
  7584. "description": "描述."
  7585. },
  7586. {
  7587. "name": "validated",
  7588. "type": "Boolean",
  7589. "isCollection": false,
  7590. "description": "代码格式是否正确."
  7591. },
  7592. {
  7593. "name": "application",
  7594. "type": "String",
  7595. "isCollection": false,
  7596. "description": "脚本所属应用."
  7597. },
  7598. {
  7599. "name": "text",
  7600. "type": "String",
  7601. "isCollection": false,
  7602. "description": "脚本内容."
  7603. },
  7604. {
  7605. "name": "dependScriptList",
  7606. "type": "List\u003cString\u003e",
  7607. "isCollection": true,
  7608. "description": "依赖的函数列表."
  7609. },
  7610. {
  7611. "name": "creatorPerson",
  7612. "type": "String",
  7613. "isCollection": false,
  7614. "description": "流程创建者."
  7615. },
  7616. {
  7617. "name": "lastUpdatePerson",
  7618. "type": "String",
  7619. "isCollection": false,
  7620. "description": "最后的编辑者."
  7621. },
  7622. {
  7623. "name": "lastUpdateTime",
  7624. "type": "Date",
  7625. "isCollection": false,
  7626. "description": "最后的编辑时间."
  7627. },
  7628. {
  7629. "name": "createTime",
  7630. "type": "Date",
  7631. "isCollection": false,
  7632. "description": "创建时间,自动生成,索引创建在约束中."
  7633. },
  7634. {
  7635. "name": "updateTime",
  7636. "type": "Date",
  7637. "isCollection": false,
  7638. "description": "修改时间,自动生成,索引创建在约束中."
  7639. }
  7640. ]
  7641. },
  7642. {
  7643. "name": "listPrev",
  7644. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ActionListPrev",
  7645. "description": "列示Script对象,上一页.",
  7646. "type": "GET",
  7647. "path": "jaxrs/script/list/{id}/prev/{count}",
  7648. "contentType": "application/json",
  7649. "resultContentType": "application/json; charset\u003dUTF-8",
  7650. "useJsonElementParameter": false,
  7651. "pathParameters": [
  7652. {
  7653. "name": "count",
  7654. "type": "Integer",
  7655. "description": "数量"
  7656. },
  7657. {
  7658. "name": "id",
  7659. "type": "String",
  7660. "description": "标识"
  7661. }
  7662. ],
  7663. "formParameters": [],
  7664. "queryParameters": [],
  7665. "ins": [],
  7666. "outs": [
  7667. {
  7668. "name": "rank",
  7669. "type": "Long",
  7670. "isCollection": false,
  7671. "description": "排序号"
  7672. },
  7673. {
  7674. "name": "id",
  7675. "type": "String",
  7676. "isCollection": false,
  7677. "description": "数据库主键,自动生成."
  7678. },
  7679. {
  7680. "name": "name",
  7681. "type": "String",
  7682. "isCollection": false,
  7683. "description": "名称."
  7684. },
  7685. {
  7686. "name": "alias",
  7687. "type": "String",
  7688. "isCollection": false,
  7689. "description": "别名."
  7690. },
  7691. {
  7692. "name": "description",
  7693. "type": "String",
  7694. "isCollection": false,
  7695. "description": "描述."
  7696. },
  7697. {
  7698. "name": "validated",
  7699. "type": "Boolean",
  7700. "isCollection": false,
  7701. "description": "代码格式是否正确."
  7702. },
  7703. {
  7704. "name": "application",
  7705. "type": "String",
  7706. "isCollection": false,
  7707. "description": "脚本所属应用."
  7708. },
  7709. {
  7710. "name": "text",
  7711. "type": "String",
  7712. "isCollection": false,
  7713. "description": "脚本内容."
  7714. },
  7715. {
  7716. "name": "dependScriptList",
  7717. "type": "List\u003cString\u003e",
  7718. "isCollection": true,
  7719. "description": "依赖的函数列表."
  7720. },
  7721. {
  7722. "name": "creatorPerson",
  7723. "type": "String",
  7724. "isCollection": false,
  7725. "description": "流程创建者."
  7726. },
  7727. {
  7728. "name": "lastUpdatePerson",
  7729. "type": "String",
  7730. "isCollection": false,
  7731. "description": "最后的编辑者."
  7732. },
  7733. {
  7734. "name": "lastUpdateTime",
  7735. "type": "Date",
  7736. "isCollection": false,
  7737. "description": "最后的编辑时间."
  7738. },
  7739. {
  7740. "name": "createTime",
  7741. "type": "Date",
  7742. "isCollection": false,
  7743. "description": "创建时间,自动生成,索引创建在约束中."
  7744. },
  7745. {
  7746. "name": "updateTime",
  7747. "type": "Date",
  7748. "isCollection": false,
  7749. "description": "修改时间,自动生成,索引创建在约束中."
  7750. }
  7751. ]
  7752. },
  7753. {
  7754. "name": "listWithApplication",
  7755. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ActionListWithApplication",
  7756. "description": "列示应用所有脚本.",
  7757. "type": "GET",
  7758. "path": "jaxrs/script/application/{applicationId}",
  7759. "contentType": "application/json",
  7760. "resultContentType": "application/json; charset\u003dUTF-8",
  7761. "useJsonElementParameter": false,
  7762. "pathParameters": [
  7763. {
  7764. "name": "applicationId",
  7765. "type": "String",
  7766. "description": "应用标识"
  7767. }
  7768. ],
  7769. "formParameters": [],
  7770. "queryParameters": [],
  7771. "ins": [],
  7772. "outs": [
  7773. {
  7774. "name": "id",
  7775. "type": "String",
  7776. "isCollection": false,
  7777. "description": "数据库主键,自动生成."
  7778. },
  7779. {
  7780. "name": "name",
  7781. "type": "String",
  7782. "isCollection": false,
  7783. "description": "名称."
  7784. },
  7785. {
  7786. "name": "alias",
  7787. "type": "String",
  7788. "isCollection": false,
  7789. "description": "别名."
  7790. },
  7791. {
  7792. "name": "description",
  7793. "type": "String",
  7794. "isCollection": false,
  7795. "description": "描述."
  7796. },
  7797. {
  7798. "name": "validated",
  7799. "type": "Boolean",
  7800. "isCollection": false,
  7801. "description": "代码格式是否正确."
  7802. },
  7803. {
  7804. "name": "application",
  7805. "type": "String",
  7806. "isCollection": false,
  7807. "description": "脚本所属应用."
  7808. },
  7809. {
  7810. "name": "text",
  7811. "type": "String",
  7812. "isCollection": false,
  7813. "description": "脚本内容."
  7814. },
  7815. {
  7816. "name": "dependScriptList",
  7817. "type": "List\u003cString\u003e",
  7818. "isCollection": true,
  7819. "description": "依赖的函数列表."
  7820. },
  7821. {
  7822. "name": "creatorPerson",
  7823. "type": "String",
  7824. "isCollection": false,
  7825. "description": "流程创建者."
  7826. },
  7827. {
  7828. "name": "lastUpdatePerson",
  7829. "type": "String",
  7830. "isCollection": false,
  7831. "description": "最后的编辑者."
  7832. },
  7833. {
  7834. "name": "lastUpdateTime",
  7835. "type": "Date",
  7836. "isCollection": false,
  7837. "description": "最后的编辑时间."
  7838. },
  7839. {
  7840. "name": "createTime",
  7841. "type": "Date",
  7842. "isCollection": false,
  7843. "description": "创建时间,自动生成,索引创建在约束中."
  7844. },
  7845. {
  7846. "name": "updateTime",
  7847. "type": "Date",
  7848. "isCollection": false,
  7849. "description": "修改时间,自动生成,索引创建在约束中."
  7850. }
  7851. ]
  7852. },
  7853. {
  7854. "name": "post",
  7855. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ActionCreate",
  7856. "description": "创建脚本.",
  7857. "type": "POST",
  7858. "path": "jaxrs/script",
  7859. "contentType": "application/json",
  7860. "resultContentType": "application/json; charset\u003dUTF-8",
  7861. "useJsonElementParameter": false,
  7862. "pathParameters": [],
  7863. "formParameters": [],
  7864. "queryParameters": [],
  7865. "ins": [
  7866. {
  7867. "name": "id",
  7868. "type": "String",
  7869. "isCollection": false,
  7870. "description": "数据库主键,自动生成.",
  7871. "isBaseType": true
  7872. },
  7873. {
  7874. "name": "name",
  7875. "type": "String",
  7876. "isCollection": false,
  7877. "description": "名称.",
  7878. "isBaseType": true
  7879. },
  7880. {
  7881. "name": "alias",
  7882. "type": "String",
  7883. "isCollection": false,
  7884. "description": "别名.",
  7885. "isBaseType": true
  7886. },
  7887. {
  7888. "name": "description",
  7889. "type": "String",
  7890. "isCollection": false,
  7891. "description": "描述.",
  7892. "isBaseType": true
  7893. },
  7894. {
  7895. "name": "validated",
  7896. "type": "Boolean",
  7897. "isCollection": false,
  7898. "description": "代码格式是否正确.",
  7899. "isBaseType": true
  7900. },
  7901. {
  7902. "name": "application",
  7903. "type": "String",
  7904. "isCollection": false,
  7905. "description": "脚本所属应用.",
  7906. "isBaseType": true
  7907. },
  7908. {
  7909. "name": "text",
  7910. "type": "String",
  7911. "isCollection": false,
  7912. "description": "脚本内容.",
  7913. "isBaseType": true
  7914. },
  7915. {
  7916. "name": "dependScriptList",
  7917. "type": "List\u003cString\u003e",
  7918. "isCollection": true,
  7919. "description": "依赖的函数列表.",
  7920. "isBaseType": true
  7921. },
  7922. {
  7923. "name": "creatorPerson",
  7924. "type": "String",
  7925. "isCollection": false,
  7926. "description": "流程创建者.",
  7927. "isBaseType": true
  7928. },
  7929. {
  7930. "name": "lastUpdatePerson",
  7931. "type": "String",
  7932. "isCollection": false,
  7933. "description": "最后的编辑者.",
  7934. "isBaseType": true
  7935. },
  7936. {
  7937. "name": "lastUpdateTime",
  7938. "type": "Date",
  7939. "isCollection": false,
  7940. "description": "最后的编辑时间.",
  7941. "isBaseType": true
  7942. }
  7943. ],
  7944. "outs": [
  7945. {
  7946. "name": "id",
  7947. "type": "String",
  7948. "isCollection": false,
  7949. "description": "id"
  7950. }
  7951. ]
  7952. },
  7953. {
  7954. "name": "put",
  7955. "className": "com.x.processplatform.assemble.designer.jaxrs.script.ActionEdit",
  7956. "description": "更新脚本.",
  7957. "type": "PUT",
  7958. "path": "jaxrs/script/{id}",
  7959. "contentType": "application/json",
  7960. "resultContentType": "application/json; charset\u003dUTF-8",
  7961. "useJsonElementParameter": false,
  7962. "pathParameters": [
  7963. {
  7964. "name": "id",
  7965. "type": "String",
  7966. "description": "标识"
  7967. }
  7968. ],
  7969. "formParameters": [],
  7970. "queryParameters": [],
  7971. "ins": [
  7972. {
  7973. "name": "id",
  7974. "type": "String",
  7975. "isCollection": false,
  7976. "description": "数据库主键,自动生成.",
  7977. "isBaseType": true
  7978. },
  7979. {
  7980. "name": "name",
  7981. "type": "String",
  7982. "isCollection": false,
  7983. "description": "名称.",
  7984. "isBaseType": true
  7985. },
  7986. {
  7987. "name": "alias",
  7988. "type": "String",
  7989. "isCollection": false,
  7990. "description": "别名.",
  7991. "isBaseType": true
  7992. },
  7993. {
  7994. "name": "description",
  7995. "type": "String",
  7996. "isCollection": false,
  7997. "description": "描述.",
  7998. "isBaseType": true
  7999. },
  8000. {
  8001. "name": "validated",
  8002. "type": "Boolean",
  8003. "isCollection": false,
  8004. "description": "代码格式是否正确.",
  8005. "isBaseType": true
  8006. },
  8007. {
  8008. "name": "application",
  8009. "type": "String",
  8010. "isCollection": false,
  8011. "description": "脚本所属应用.",
  8012. "isBaseType": true
  8013. },
  8014. {
  8015. "name": "text",
  8016. "type": "String",
  8017. "isCollection": false,
  8018. "description": "脚本内容.",
  8019. "isBaseType": true
  8020. },
  8021. {
  8022. "name": "dependScriptList",
  8023. "type": "List\u003cString\u003e",
  8024. "isCollection": true,
  8025. "description": "依赖的函数列表.",
  8026. "isBaseType": true
  8027. },
  8028. {
  8029. "name": "creatorPerson",
  8030. "type": "String",
  8031. "isCollection": false,
  8032. "description": "流程创建者.",
  8033. "isBaseType": true
  8034. },
  8035. {
  8036. "name": "lastUpdatePerson",
  8037. "type": "String",
  8038. "isCollection": false,
  8039. "description": "最后的编辑者.",
  8040. "isBaseType": true
  8041. },
  8042. {
  8043. "name": "lastUpdateTime",
  8044. "type": "Date",
  8045. "isCollection": false,
  8046. "description": "最后的编辑时间.",
  8047. "isBaseType": true
  8048. }
  8049. ],
  8050. "outs": [
  8051. {
  8052. "name": "id",
  8053. "type": "String",
  8054. "isCollection": false,
  8055. "description": "id"
  8056. }
  8057. ]
  8058. }
  8059. ]
  8060. },
  8061. {
  8062. "name": "TemplateFormAction",
  8063. "className": "com.x.processplatform.assemble.designer.jaxrs.templateform.TemplateFormAction",
  8064. "description": "表单模版",
  8065. "methods": [
  8066. {
  8067. "name": "create",
  8068. "className": "com.x.processplatform.assemble.designer.jaxrs.templateform.ActionCreate",
  8069. "description": "创建模版表单或者更新模版表单.",
  8070. "type": "POST",
  8071. "path": "jaxrs/templateform",
  8072. "contentType": "application/json",
  8073. "resultContentType": "application/json; charset\u003dUTF-8",
  8074. "useJsonElementParameter": false,
  8075. "pathParameters": [],
  8076. "formParameters": [],
  8077. "queryParameters": [],
  8078. "ins": [
  8079. {
  8080. "name": "id",
  8081. "type": "String",
  8082. "isCollection": false,
  8083. "description": "数据库主键,自动生成.",
  8084. "isBaseType": true
  8085. },
  8086. {
  8087. "name": "name",
  8088. "type": "String",
  8089. "isCollection": false,
  8090. "description": "名称.",
  8091. "isBaseType": true
  8092. },
  8093. {
  8094. "name": "alias",
  8095. "type": "String",
  8096. "isCollection": false,
  8097. "description": "表单别名.",
  8098. "isBaseType": true
  8099. },
  8100. {
  8101. "name": "category",
  8102. "type": "String",
  8103. "isCollection": false,
  8104. "description": "模版分类.",
  8105. "isBaseType": true
  8106. },
  8107. {
  8108. "name": "description",
  8109. "type": "String",
  8110. "isCollection": false,
  8111. "description": "描述.",
  8112. "isBaseType": true
  8113. },
  8114. {
  8115. "name": "icon",
  8116. "type": "String",
  8117. "isCollection": false,
  8118. "description": "icon Base64编码后的文本.",
  8119. "isBaseType": true
  8120. },
  8121. {
  8122. "name": "outline",
  8123. "type": "String",
  8124. "isCollection": false,
  8125. "description": "缩略图.",
  8126. "isBaseType": true
  8127. },
  8128. {
  8129. "name": "data",
  8130. "type": "String",
  8131. "isCollection": false,
  8132. "description": "文本内容.",
  8133. "isBaseType": true
  8134. },
  8135. {
  8136. "name": "mobileData",
  8137. "type": "String",
  8138. "isCollection": false,
  8139. "description": "移动端文本内容.",
  8140. "isBaseType": true
  8141. }
  8142. ],
  8143. "outs": [
  8144. {
  8145. "name": "id",
  8146. "type": "String",
  8147. "isCollection": false,
  8148. "description": "id"
  8149. }
  8150. ]
  8151. },
  8152. {
  8153. "name": "delete",
  8154. "className": "com.x.processplatform.assemble.designer.jaxrs.templateform.ActionDelete",
  8155. "description": "删除模版表单.",
  8156. "type": "DELETE",
  8157. "path": "jaxrs/templateform/{id}",
  8158. "contentType": "application/json",
  8159. "resultContentType": "application/json; charset\u003dUTF-8",
  8160. "useJsonElementParameter": false,
  8161. "pathParameters": [
  8162. {
  8163. "name": "id",
  8164. "type": "String",
  8165. "description": "标识"
  8166. }
  8167. ],
  8168. "formParameters": [],
  8169. "queryParameters": [],
  8170. "ins": [],
  8171. "outs": [
  8172. {
  8173. "name": "id",
  8174. "type": "String",
  8175. "isCollection": false,
  8176. "description": "id"
  8177. }
  8178. ]
  8179. },
  8180. {
  8181. "name": "get",
  8182. "className": "com.x.processplatform.assemble.designer.jaxrs.templateform.ActionGet",
  8183. "description": "获取模版表单内容.",
  8184. "type": "GET",
  8185. "path": "jaxrs/templateform/{id}",
  8186. "contentType": "application/json",
  8187. "resultContentType": "application/json; charset\u003dUTF-8",
  8188. "useJsonElementParameter": false,
  8189. "pathParameters": [
  8190. {
  8191. "name": "id",
  8192. "type": "String",
  8193. "description": "标识"
  8194. }
  8195. ],
  8196. "formParameters": [],
  8197. "queryParameters": [],
  8198. "ins": [],
  8199. "outs": [
  8200. {
  8201. "name": "id",
  8202. "type": "String",
  8203. "isCollection": false,
  8204. "description": "数据库主键,自动生成."
  8205. },
  8206. {
  8207. "name": "name",
  8208. "type": "String",
  8209. "isCollection": false,
  8210. "description": "名称."
  8211. },
  8212. {
  8213. "name": "alias",
  8214. "type": "String",
  8215. "isCollection": false,
  8216. "description": "表单别名."
  8217. },
  8218. {
  8219. "name": "category",
  8220. "type": "String",
  8221. "isCollection": false,
  8222. "description": "模版分类."
  8223. },
  8224. {
  8225. "name": "description",
  8226. "type": "String",
  8227. "isCollection": false,
  8228. "description": "描述."
  8229. },
  8230. {
  8231. "name": "icon",
  8232. "type": "String",
  8233. "isCollection": false,
  8234. "description": "icon Base64编码后的文本."
  8235. },
  8236. {
  8237. "name": "outline",
  8238. "type": "String",
  8239. "isCollection": false,
  8240. "description": "缩略图."
  8241. },
  8242. {
  8243. "name": "data",
  8244. "type": "String",
  8245. "isCollection": false,
  8246. "description": "文本内容."
  8247. },
  8248. {
  8249. "name": "mobileData",
  8250. "type": "String",
  8251. "isCollection": false,
  8252. "description": "移动端文本内容."
  8253. },
  8254. {
  8255. "name": "createTime",
  8256. "type": "Date",
  8257. "isCollection": false,
  8258. "description": "创建时间,自动生成,索引创建在约束中."
  8259. },
  8260. {
  8261. "name": "updateTime",
  8262. "type": "Date",
  8263. "isCollection": false,
  8264. "description": "修改时间,自动生成,索引创建在约束中."
  8265. }
  8266. ]
  8267. },
  8268. {
  8269. "name": "list",
  8270. "className": "com.x.processplatform.assemble.designer.jaxrs.templateform.ActionList",
  8271. "description": "列示所有模版表单.",
  8272. "type": "GET",
  8273. "path": "jaxrs/templateform/list",
  8274. "contentType": "application/json",
  8275. "resultContentType": "application/json; charset\u003dUTF-8",
  8276. "useJsonElementParameter": false,
  8277. "pathParameters": [],
  8278. "formParameters": [],
  8279. "queryParameters": [],
  8280. "ins": [],
  8281. "outs": []
  8282. },
  8283. {
  8284. "name": "listCategory",
  8285. "className": "com.x.processplatform.assemble.designer.jaxrs.templateform.ActionListCategory",
  8286. "description": "列示所有分类名称以及分类数量.",
  8287. "type": "GET",
  8288. "path": "jaxrs/templateform/list/category",
  8289. "contentType": "application/json",
  8290. "resultContentType": "application/json; charset\u003dUTF-8",
  8291. "useJsonElementParameter": false,
  8292. "pathParameters": [],
  8293. "formParameters": [],
  8294. "queryParameters": [],
  8295. "ins": [],
  8296. "outs": []
  8297. },
  8298. {
  8299. "name": "listWithCategory",
  8300. "className": "com.x.processplatform.assemble.designer.jaxrs.templateform.ActionListWithCategory",
  8301. "description": "按分类名称列示模版表单.",
  8302. "type": "PUT",
  8303. "path": "jaxrs/templateform/list/category",
  8304. "contentType": "application/json",
  8305. "resultContentType": "application/json; charset\u003dUTF-8",
  8306. "useJsonElementParameter": true,
  8307. "pathParameters": [],
  8308. "formParameters": [],
  8309. "queryParameters": [],
  8310. "ins": [],
  8311. "outs": [
  8312. {
  8313. "name": "control",
  8314. "type": "Control",
  8315. "isCollection": false,
  8316. "description": "权限"
  8317. },
  8318. {
  8319. "name": "id",
  8320. "type": "String",
  8321. "isCollection": false,
  8322. "description": "数据库主键,自动生成."
  8323. },
  8324. {
  8325. "name": "name",
  8326. "type": "String",
  8327. "isCollection": false,
  8328. "description": "名称."
  8329. },
  8330. {
  8331. "name": "alias",
  8332. "type": "String",
  8333. "isCollection": false,
  8334. "description": "表单别名."
  8335. },
  8336. {
  8337. "name": "category",
  8338. "type": "String",
  8339. "isCollection": false,
  8340. "description": "模版分类."
  8341. },
  8342. {
  8343. "name": "description",
  8344. "type": "String",
  8345. "isCollection": false,
  8346. "description": "描述."
  8347. },
  8348. {
  8349. "name": "icon",
  8350. "type": "String",
  8351. "isCollection": false,
  8352. "description": "icon Base64编码后的文本."
  8353. },
  8354. {
  8355. "name": "outline",
  8356. "type": "String",
  8357. "isCollection": false,
  8358. "description": "缩略图."
  8359. },
  8360. {
  8361. "name": "createTime",
  8362. "type": "Date",
  8363. "isCollection": false,
  8364. "description": "创建时间,自动生成,索引创建在约束中."
  8365. },
  8366. {
  8367. "name": "updateTime",
  8368. "type": "Date",
  8369. "isCollection": false,
  8370. "description": "修改时间,自动生成,索引创建在约束中."
  8371. }
  8372. ]
  8373. }
  8374. ]
  8375. }
  8376. ]
  8377. }