123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413 |
- definitions:
- base.HTTPError:
- properties:
- code:
- example: 500
- format: int
- type: integer
- message:
- example: status bad request
- type: string
- type: object
- v1.ApplicationAddBody:
- properties:
- content:
- type: string
- desc:
- type: string
- icon:
- type: string
- name:
- type: string
- price:
- type: integer
- type: object
- v1.ApplicationAddResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ApplicationDelResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ApplicationEnableSetBody:
- properties:
- enable:
- description: true 发布 false 下架
- type: boolean
- id:
- type: integer
- type: object
- v1.ApplicationEnableSetResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ApplicationItem:
- properties:
- content:
- type: string
- desc:
- type: string
- enable:
- type: boolean
- icon:
- type: string
- id:
- type: integer
- name:
- type: string
- price:
- type: integer
- type: object
- v1.ApplicationListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.ApplicationItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.ApplicationListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.ApplicationListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ApplicationOrderAmountBody:
- properties:
- amount:
- type: integer
- order_id:
- type: integer
- type: object
- v1.ApplicationOrderAmountResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ApplicationOrderApproveBody:
- properties:
- feedback:
- type: string
- order_id:
- type: integer
- status:
- type: boolean
- type: object
- v1.ApplicationOrderApproveResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ApplicationPermissionItem:
- properties:
- applete_path:
- description: 小程序组件路径
- type: string
- childs:
- items:
- $ref: '#/definitions/v1.ApplicationPermissionItem'
- type: array
- code:
- type: string
- name:
- description: 权限名字
- type: string
- path:
- description: 组件路径
- type: string
- pcode:
- description: 父code,若没有则填空
- type: string
- router:
- description: 路由
- type: string
- selected:
- description: 是否拥有该权限
- type: boolean
- type: object
- v1.ApplicationPermissionsReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.ApplicationPermissionItem'
- type: array
- type: object
- v1.ApplicationPermissionsResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.ApplicationPermissionsReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ApplicationPermissionsSetBody:
- properties:
- id:
- type: integer
- permissions:
- items:
- type: string
- type: array
- type: object
- v1.ApplicationPermissionsSetResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ApplicationUpdateBody:
- properties:
- content:
- type: string
- desc:
- type: string
- icon:
- type: string
- id:
- type: integer
- name:
- type: string
- price:
- type: integer
- type: object
- v1.ApplicationUpdateResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.AreaData:
- properties:
- city_code:
- type: string
- code:
- type: string
- name:
- type: string
- province_code:
- type: string
- type: object
- v1.CityData:
- properties:
- code:
- type: string
- name:
- type: string
- province_code:
- type: string
- type: object
- v1.CommitteeData:
- properties:
- code:
- type: string
- name:
- type: string
- street_code:
- type: string
- type: object
- v1.CompanyApproveBody:
- properties:
- feedback:
- description: 回复
- type: string
- id:
- type: integer
- status:
- description: true 通过 false 不通过
- type: boolean
- type: object
- v1.CompanyApproveResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.CompanyChangeFreeGardenBody:
- properties:
- count:
- type: integer
- id:
- type: integer
- type: object
- v1.CompanyChangeFreeGardenResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.CompanyItem:
- properties:
- applicant:
- description: 申请人
- type: string
- applicant_duty:
- description: 申请人职位
- type: string
- applicant_identification:
- description: 申请人身份
- type: string
- applicant_phone:
- description: 申请人电话
- type: string
- approve_status:
- description: 审核状态
- type: integer
- approved_at:
- description: 审批时间
- type: string
- business_license:
- description: 营业执照
- type: string
- company_addr:
- description: 公司地址
- type: string
- company_name:
- description: 公司名称
- type: string
- company_phone:
- description: 公司电话
- type: string
- created_at:
- description: 申请时间
- type: string
- expire:
- description: 小区有效期天
- type: integer
- free_garden_count:
- description: 免费小区个数
- type: integer
- garden_count:
- description: 已有小区个数
- type: integer
- id:
- type: integer
- legal_person:
- description: 法人
- type: string
- license_type:
- description: 营业执照类型
- type: integer
- password:
- description: 密码
- type: string
- social_code:
- description: 社会信用码
- type: string
- username:
- description: 账户名
- type: string
- type: object
- v1.CompanyListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.CompanyItem'
- type: array
- page:
- type: integer
- page_size:
- type: integer
- total:
- type: integer
- type: object
- v1.CompanyListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.CompanyListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.CompanyPackageApplicationItem:
- properties:
- content:
- type: string
- desc:
- type: string
- enable:
- type: boolean
- icon:
- type: string
- id:
- type: integer
- name:
- type: string
- price:
- type: integer
- type: object
- v1.CompanyPackageItem:
- properties:
- amount:
- description: 总价
- type: integer
- application_list:
- items:
- $ref: '#/definitions/v1.CompanyPackageApplicationItem'
- type: array
- cid:
- type: integer
- company_name:
- type: string
- created_at:
- type: integer
- desc:
- type: string
- enable:
- type: boolean
- expire_at:
- type: integer
- feedback:
- type: string
- garden_id:
- type: integer
- garden_name:
- type: string
- name:
- type: string
- order_id:
- type: integer
- package_id:
- type: integer
- pay_type:
- description: 1 对公转帐
- type: integer
- period:
- description: 周期
- type: integer
- price:
- description: 套餐价格
- type: integer
- status:
- description: 1 待审批 2 通过 3 未通过
- type: integer
- type: object
- v1.CompanyPackageListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.CompanyPackageItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.CompanyPackageListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.CompanyPackageListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.CompanyRegisterBody:
- properties:
- applicant:
- description: 申请人
- type: string
- applicant_duty:
- description: 申请人职位
- type: string
- applicant_identification:
- description: 申请人身份
- type: string
- applicant_phone:
- description: 申请人电话
- type: string
- business_license:
- description: 营业执照
- type: string
- company_addr:
- description: 公司地址
- type: string
- company_name:
- description: 公司名称
- type: string
- company_phone:
- description: 公司电话
- type: string
- free_garden_count:
- description: 免费小区个数
- type: integer
- legal_person:
- description: 法人
- type: string
- license_type:
- description: 营业执照类型
- type: integer
- password:
- description: 密码
- type: string
- social_code:
- description: 社会信用码
- type: string
- username:
- description: 账户名
- type: string
- type: object
- v1.CompanyRegisterResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.RegisterReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.CompanyWxAccountApplyInfoReply:
- properties:
- bank_account_info:
- $ref: '#/definitions/v1.CompanyWxBankAccountInfo'
- description: 银行账号资料
- type: object
- business_info:
- $ref: '#/definitions/v1.CompanyWxBusinessInfo'
- description: 经营资料
- type: object
- contact_info:
- $ref: '#/definitions/v1.CompanyWxContactInfo'
- description: 超管员资料
- type: object
- id:
- type: integer
- subject_info:
- $ref: '#/definitions/v1.CompanyWxSubjectInfo'
- description: 主体资料
- type: object
- type: object
- v1.CompanyWxAccountApplyInfoResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.CompanyWxAccountApplyInfoReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.CompanyWxAccountApplyListItem:
- properties:
- business_code:
- description: 单号
- type: string
- id:
- type: integer
- mch_id:
- description: 商户号(申请审批成功才会有)
- type: string
- merchant_name:
- description: 申请的商户名称
- type: string
- reason:
- description: 驳回原因
- type: string
- sign_url:
- description: 二维码
- type: string
- state:
- description: |-
- 1、APPLYMENT_STATE_EDITTING(编辑中):提交申请发生错误导致,请尝试重新提交。
- 2、APPLYMENT_STATE_AUDITING(审核中):申请单正在审核中,超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤。
- 3、APPLYMENT_STATE_REJECTED(已驳回):请按照驳回原因修改申请资料,超级管理员用微信打开“签约链接”,完成绑定微信号,后续申请单进度将通过微信公众号通知超级管理员。
- 4、APPLYMENT_STATE_TO_BE_CONFIRMED(待账户验证):请超级管理员使用微信打开返回的“签约链接”,根据页面指引完成账户验证。
- 5、APPLYMENT_STATE_TO_BE_SIGNED(待签约):请超级管理员使用微信打开返回的“签约链接”,根据页面指引完成签约。
- 6、APPLYMENT_STATE_SIGNING(开通权限中):系统开通相关权限中,请耐心等待。
- 7、APPLYMENT_STATE_FINISHED(已完成):商户入驻申请已完成。
- 8、APPLYMENT_STATE_CANCELED(已作废):申请单已被撤销。
- type: string
- state_msg:
- description: 状态描述
- type: string
- type: object
- v1.CompanyWxAccountApplyListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.CompanyWxAccountApplyListItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.CompanyWxAccountListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.CompanyWxAccountApplyListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.CompanyWxBankAccountInfo:
- properties:
- account_bank:
- description: 开户行
- type: string
- account_name:
- description: 开户姓名, 开户名称必须与营业执照/登记证书的“商户名称”一致
- type: string
- account_number:
- description: 银行账号
- type: string
- bank_account_type:
- type: string
- bank_address_code:
- description: 开户银行省市编码
- type: string
- bank_branch_id:
- description: |-
- 开户银行联行号
- 1、17家直连银行无需填写,如为其他银行,则开户银行全称(含支行)和开户银行联行号二选一。
- 2、详细参见开户银行全称(含支行)对照表。
- 示例值:402713354941
- type: string
- bank_name:
- description: |-
- 开户银行全称(含支行)
- 1、17家直连银行无需填写,如为其他银行,则开户银行全称(含支行)和 开户银行联行号二选一。
- 2、需填写银行全称,如"深圳农村商业银行XXX支行",详细参见开户银行全称(含支行)对照表。
- 示例值:施秉县农村信用合作联社城关信用社
- type: string
- type: object
- v1.CompanyWxBusinessInfo:
- properties:
- merchant_shortname:
- description: |-
- 1、请输入2-30个字符,支持中文/字母/数字/特殊符号
- 2、在支付完成页向买家展示,需与微信经营类目相关;
- 3、简称要求
- (1)不支持单纯以人名来命名,若为个体户经营,可用“个体户+经营者名称”或“经营者名称+业务”命名,如“个体户张三”或“张三餐饮店”;
- (2)不支持无实际意义的文案,如“XX特约商户”、“800”、“XX客服电话XXX”
- type: string
- service_phone:
- description: 客服电话
- type: string
- type: object
- v1.CompanyWxBusinessLicenseInfo:
- properties:
- legal_person:
- description: 法人姓名
- type: string
- license_address:
- type: string
- license_copy:
- description: 营业执照图片
- type: string
- license_copy_url:
- description: 营业执照图片
- type: string
- license_number:
- description: 统一社会信用码
- type: string
- merchant_name:
- description: 营业执照上的商户名称
- type: string
- period_begin:
- type: string
- period_end:
- type: string
- type: object
- v1.CompanyWxCertificateInfo:
- properties:
- cert_copy:
- description: 证书图片id
- type: string
- cert_number:
- description: 证书号
- type: string
- cert_type:
- description: |-
- 当主体为事业单位时,选择此枚举值:
- CERTIFICATE_TYPE_2388:事业单位法人证书
- 当主体为政府机关,选择此枚举值:
- CERTIFICATE_TYPE_2389:统一社会信用代码证书
- 当主体为社会组织,选择以下枚举值之一:
- CERTIFICATE_TYPE_2389:统一社会信用代码证书
- CERTIFICATE_TYPE_2394:社会团体法人登记证书
- CERTIFICATE_TYPE_2395:民办非企业单位登记证书
- CERTIFICATE_TYPE_2396:基金会法人登记证书
- CERTIFICATE_TYPE_2397:慈善组织公开募捐资格证书(已废弃)
- CERTIFICATE_TYPE_2398:农民专业合作社法人营业执照(已废弃)
- CERTIFICATE_TYPE_2520:执业许可证/执业证
- CERTIFICATE_TYPE_2521:基层群众性自治组织特别法人统一社会信用代码证
- CERTIFICATE_TYPE_2522:农村集体经济组织登记证
- CERTIFICATE_TYPE_2399:宗教活动场所登记证
- CERTIFICATE_TYPE_2400:政府部门下发的其他有效证明文件
- type: string
- company_address:
- description: 证书上的注册地址
- type: string
- legal_person:
- description: 证书上的法人
- type: string
- merchant_name:
- description: 商户名称
- type: string
- period_begin:
- description: 证书开始时间 2006-01-02
- type: string
- period_end:
- description: 证书结束时间2006-01-02,若为长期则填长期
- type: string
- type: object
- v1.CompanyWxContactInfo:
- properties:
- business_authorization_letter:
- description: 授权函(当为经办人时才填)
- type: string
- business_authorization_letter_url:
- description: 授权函(当为经办人时才填)
- type: string
- contact_email:
- description: 联系人邮箱(当为经办人时才填)
- type: string
- contact_id_doc_copy:
- description: 证件正面图片id(当为经办人时才填)
- type: string
- contact_id_doc_copy_back:
- description: 证件背面图片id(当为经办人时才填)
- type: string
- contact_id_doc_copy_back_url:
- description: 证件背面图片id(当为经办人时才填)
- type: string
- contact_id_doc_copy_url:
- description: 证件正面图片id(当为经办人时才填)
- type: string
- contact_id_doc_type:
- description: 联系人证件类型(当为经办人时才填)
- type: string
- contact_id_number:
- description: 证件号(当为经办人时才填)
- type: string
- contact_name:
- description: 联系人姓名
- type: string
- contact_period_begin:
- description: 证件开始时间(当为经办人时才填)
- type: string
- contact_period_end:
- description: 证件结束时间(当为经办人时才填)
- type: string
- contact_type:
- description: LEGAL:经营者/法人,SUPER:经办人 。
- type: string
- mobile_phone:
- description: 联系人电话(当为经办人时才填)
- type: string
- openid:
- type: string
- type: object
- v1.CompanyWxIdDocInfo:
- properties:
- doc_period_begin:
- description: 开始时间
- type: string
- doc_period_end:
- description: 结束时间
- type: string
- id_doc_address:
- type: string
- id_doc_copy:
- description: 证件图片
- type: string
- id_doc_copy_back:
- type: string
- id_doc_copy_back_url:
- type: string
- id_doc_copy_url:
- description: 证件图片url
- type: string
- id_doc_name:
- description: 证件姓名
- type: string
- id_doc_number:
- description: 证件号
- type: string
- id_doc_type:
- description: |-
- IDENTIFICATION_TYPE_IDCARD:中国大陆居民-身份证
- IDENTIFICATION_TYPE_OVERSEA_PASSPORT:其他国家或地区居民-护照
- IDENTIFICATION_TYPE_HONGKONG_PASSPORT:中国香港居民-来往内地通行证
- IDENTIFICATION_TYPE_MACAO_PASSPORT:中国澳门居民-来往内地通行证
- IDENTIFICATION_TYPE_TAIWAN_PASSPORT:中国台湾居民-来往大陆通行证
- type: string
- type: object
- v1.CompanyWxIdentityInfo:
- properties:
- authorize_letter_copy:
- description: |-
- 法定代表人说明函图片id
- 1、当证件持有人类型为经办人时,必须上传。其他情况,无需上传。
- 2、若因特殊情况,无法提供法定代表人证件时,请参照示例图打印法定代表人说明函,全部信息需打印,不支持手写商户信息,并加盖公章。
- 3、可上传1张图片,请填写通过图片上传APIAPI预先上传图片生成好的MediaID。
- type: string
- authorize_letter_copy_url:
- type: string
- id_doc_info:
- $ref: '#/definitions/v1.CompanyWxIdDocInfo'
- description: 证件信息
- type: object
- id_holder_type:
- description: |-
- 1. 主体类型为政府机关、事业单位时选传:
- (1)若上传的是法人证件,则不需要上传该字段
- (2)若因特殊情况,无法提供法人证件时,可上传经办人。 (经办人:经商户授权办理微信支付业务的人员,授权范围包括但不限于签约,入驻过程需完成账户验证)。
- type: string
- owner:
- description: 法人是否为最终受益人
- type: boolean
- type: object
- v1.CompanyWxSubjectInfo:
- properties:
- business_license_info:
- $ref: '#/definitions/v1.CompanyWxBusinessLicenseInfo'
- description: 营业执照信息
- type: object
- cert_info:
- $ref: '#/definitions/v1.CompanyWxCertificateInfo'
- description: 主体为政府机关/事业单位/其他组织时,必填。
- type: object
- identity_info:
- $ref: '#/definitions/v1.CompanyWxIdentityInfo'
- description: 法人身份信息
- type: object
- subject_type:
- description: |-
- 主体类型需与营业执照/登记证书上一致,可参考选择主体指引
- SUBJECT_TYPE_INDIVIDUAL(个体户):营业执照上的主体类型一般为个体户、个体工商户、个体经营;
- SUBJECT_TYPE_ENTERPRISE(企业):营业执照上的主体类型一般为有限公司、有限责任公司;
- SUBJECT_TYPE_INSTITUTIONS(党政、机关及事业单位):包括国内各级、各类政府机构、事业单位等(如:公安、党团、司法、交通、旅游、工商税务、市政、医疗、教育、学校等机构);
- SUBJECT_TYPE_OTHERS(其他组织):不属于企业、政府/事业单位的组织机构(如社会团体、民办非企业、基金会),要求机构已办理组织机构代码证。
- type: string
- ubo_infos:
- description: |-
- 受益人身份信息,若法人不是最终受益人,该字段必填
- 若经营者/法人不是最终受益所有人,则需提填写受益所有人信息。
- 根据国家相关法律法规,需要提供公司受益所有人信息,受益所有人需符合至少以下条件之一:
- 1、直接或者间接拥有超过25%公司股权或者表决权的自然人。
- 2、通过人事、财务等其他方式对公司进行控制的自然人。
- 3、公司的高级管理人员,包括公司的经理、副经理、财务负责人、上市公司董事会秘书和公司章程规定的其他人员。
- items:
- $ref: '#/definitions/v1.CompanyWxIdDocInfo'
- type: array
- type: object
- v1.GardenApplicationItem:
- properties:
- amount:
- type: integer
- application_id:
- type: integer
- content:
- type: string
- created_at:
- type: integer
- desc:
- type: string
- enable:
- type: boolean
- feedback:
- type: string
- garden_name:
- type: string
- icon:
- type: string
- name:
- type: string
- order_id:
- type: integer
- pay_type:
- description: 1 对公转帐
- type: integer
- status:
- description: 1 待审批 2 通过 3 未通过
- type: integer
- type: object
- v1.GardenApplicationListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.GardenApplicationItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.GardenApplicationListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.GardenApplicationListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GardenApproveBody:
- properties:
- feedback:
- description: 拒绝原因
- type: string
- id:
- type: integer
- status:
- description: true 通过 false 拒绝
- type: boolean
- type: object
- v1.GardenApproveResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GardenChangeCompanyBody:
- properties:
- cid:
- type: integer
- garden_id:
- type: integer
- type: object
- v1.GardenChangeCompanyResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GardenEnableSetBody:
- properties:
- enable:
- description: true 启用 false 停用
- type: boolean
- garden_id:
- type: integer
- type: object
- v1.GardenEnableSetResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GardenItem:
- properties:
- appendix:
- items:
- type: string
- type: array
- area:
- description: 区
- type: string
- area_code:
- type: string
- area_percent:
- description: 容积率
- type: number
- building_area:
- description: 建筑面积
- type: number
- building_company:
- description: 开发企业
- type: string
- building_end:
- description: 建成年份结束时间戳
- type: integer
- building_start:
- description: 建成年份开始时间戳
- type: integer
- building_type:
- description: 1塔楼 2 板楼 3 塔板结合 4 其他
- type: integer
- cid:
- description: 物业公司id
- type: integer
- city:
- description: 市
- type: string
- city_code:
- type: string
- committee:
- description: 社区
- type: string
- committee_code:
- type: string
- covered_area:
- description: 占地面积
- type: number
- electric_type:
- description: 电费类型多选 1 民用 2 商用
- items:
- type: integer
- type: array
- enable:
- type: boolean
- expire_at:
- type: integer
- feedback:
- type: string
- garden_addr:
- description: 小区地址
- type: string
- garden_desc:
- type: string
- garden_name:
- description: 小区名字
- type: string
- garden_pic:
- type: string
- garden_pics:
- description: 小区图片
- items:
- type: string
- type: array
- gas_fee_end:
- description: 燃气费开始,单位分
- type: integer
- gas_fee_start:
- description: 燃气费开始,单位分
- type: integer
- green_percent:
- description: 绿化率
- type: number
- house_count:
- type: integer
- house_count_limit:
- type: integer
- house_total:
- description: 总户数
- type: integer
- id:
- type: integer
- in_use:
- type: boolean
- lat:
- description: 纬度
- type: number
- lnt:
- description: 经度
- type: number
- mch_id:
- type: string
- pay_mode:
- type: integer
- property_fee_end:
- description: 物业费结束, 单位分
- type: integer
- property_fee_start:
- description: 物业费开始,单位分
- type: integer
- property_person:
- description: 物业联系人
- type: string
- property_phone:
- description: 物业联系人手机号
- type: string
- province:
- description: 省
- type: string
- province_code:
- type: string
- space_info:
- description: 车位配比
- type: string
- space_total:
- description: 固定车位数
- type: integer
- status:
- type: integer
- street:
- description: 街道
- type: string
- street_code:
- type: string
- water_type:
- description: 水费类型多选 1 民用 2 商用
- items:
- type: integer
- type: array
- type: object
- v1.GardenKeyInfoApproveBody:
- properties:
- feedback:
- description: 拒绝原因
- type: string
- id:
- type: integer
- status:
- description: true 通过 false 拒绝
- type: boolean
- type: object
- v1.GardenKeyInfoApproveResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GardenKeyInfoChangeListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.GardenKeyInfoData'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.GardenKeyInfoChangeListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.GardenKeyInfoChangeListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GardenKeyInfoData:
- properties:
- cid:
- type: integer
- feedback:
- type: string
- garden_detail:
- type: string
- garden_id:
- type: integer
- garden_name:
- type: string
- id:
- type: integer
- list:
- items:
- $ref: '#/definitions/v1.GardenKeyInfoItem'
- type: array
- status:
- type: integer
- type: object
- v1.GardenKeyInfoItem:
- properties:
- field_name:
- type: string
- field_value_dst:
- type: string
- field_value_src:
- type: string
- type: object
- v1.GardenListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.GardenItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.GardenListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.GardenListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GateDelResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GateInBody:
- properties:
- auth_key:
- description: 授权key
- type: string
- device_id:
- description: 设备id
- type: string
- device_name:
- description: 设备名
- type: string
- gate_type:
- description: 1 二维码门禁 2 人脸识别门禁
- type: integer
- manufactor:
- description: 厂商
- type: string
- protocol:
- description: 协议
- type: integer
- sn:
- description: 序列号
- type: string
- type: object
- v1.GateInResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GateItem:
- properties:
- auth_key:
- description: 授权key
- type: string
- card_support:
- description: 1 支持卡 2 不支持
- type: integer
- device_id:
- description: 设备id
- type: integer
- device_name:
- description: 设备名
- type: string
- direction:
- description: 1 进场 2 出场 3 进出场
- type: integer
- enable:
- description: true 已启用 false 已禁用
- type: boolean
- garden_id:
- description: 小区id
- type: integer
- garden_name:
- description: 小区名
- type: string
- ip:
- type: string
- location:
- type: string
- mac:
- type: string
- manufactor:
- description: 厂商
- type: string
- out_time:
- description: 出库时间
- type: integer
- out_user:
- description: 出库人
- type: string
- password:
- type: string
- pic_support:
- description: 1 支持人脸 2 不支持
- type: integer
- port:
- type: integer
- protocol:
- description: 协议
- type: integer
- protocol_desc:
- type: string
- qcode_support:
- description: 1支持二维码 2 不支持
- type: integer
- sn:
- description: 序列号
- type: string
- status:
- description: 1 在线 2 离线
- type: integer
- user_name:
- type: string
- type: object
- v1.GateListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.GateItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.GateListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.GateListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GateOutBody:
- properties:
- device_id:
- type: integer
- garden_id:
- type: integer
- type: object
- v1.GateOutResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.GateProtocolData:
- properties:
- card_support:
- type: integer
- desc:
- type: string
- face_support:
- type: integer
- protocol:
- type: integer
- qcode_support:
- type: integer
- type: object
- v1.GateProtocolsReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.GateProtocolData'
- type: array
- type: object
- v1.GateProtocolsResponse:
- properties:
- data:
- $ref: '#/definitions/v1.GateProtocolsReply'
- type: object
- token:
- description: token
- type: string
- userId:
- description: 用户id
- type: integer
- type: object
- v1.GateRecoveryBody:
- properties:
- device_id:
- type: integer
- type: object
- v1.GateRecoveryResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.LoginBody:
- properties:
- password:
- type: string
- user:
- type: string
- type: object
- v1.LoginData:
- properties:
- token:
- type: string
- uid:
- type: integer
- user:
- type: string
- type: object
- v1.LoginResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.LoginData'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MaterialAddBody:
- properties:
- mtype:
- type: integer
- pic:
- type: string
- type: object
- v1.MaterialAddResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MaterialDelResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MaterialEnableBody:
- properties:
- enable:
- description: 1 发布 2 下架或不发布
- type: integer
- id:
- type: integer
- type: object
- v1.MaterialItem:
- properties:
- created_at:
- type: integer
- enable:
- type: integer
- id:
- type: integer
- mtype:
- type: integer
- pic:
- type: string
- type: object
- v1.MaterialListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.MaterialItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.MaterialListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.MaterialListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MaterialUpdateBody:
- properties:
- id:
- type: integer
- pic:
- type: string
- type: object
- v1.MaterialUpdateResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MsgPackageAddBody:
- properties:
- comment:
- description: 套餐描述,可不填
- type: string
- msg_count:
- description: 短信条数
- type: integer
- name:
- description: 套餐名 必填
- type: string
- price:
- description: 价格
- type: integer
- type: object
- v1.MsgPackageAddResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MsgPackageDelResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MsgPackageItem:
- properties:
- comment:
- description: 套餐描述
- type: string
- id:
- type: integer
- msg_count:
- description: 短信条数
- type: integer
- name:
- description: 套餐名称
- type: string
- price:
- description: 套餐价格
- type: integer
- type: object
- v1.MsgPackageListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.MsgPackageItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.MsgPackageListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.MsgPackageListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MsgPackageOrderApproveBody:
- properties:
- feedback:
- type: string
- order_id:
- type: integer
- status:
- type: boolean
- type: object
- v1.MsgPackageOrderApproveResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MsgPackageOrderItem:
- properties:
- amount:
- description: 订单总价
- type: integer
- comment:
- type: string
- created_at:
- type: integer
- feedback:
- type: string
- garden_id:
- type: integer
- garden_name:
- type: string
- msg_available_count:
- description: 订单套餐短信剩余条数
- type: integer
- msg_count:
- description: 套餐短信条数
- type: integer
- msg_total_count:
- description: 订单套餐短信总条数
- type: integer
- name:
- type: string
- order_id:
- type: integer
- package_count:
- description: 订单包含的套餐个数
- type: integer
- package_id:
- type: integer
- price:
- description: 套餐单价
- type: integer
- status:
- description: 1 待审核 2 通过 3 未通过
- type: integer
- type: object
- v1.MsgPackageOrderListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.MsgPackageOrderItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.MsgPackageOrderListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.MsgPackageOrderListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.MsgPackageUpdateBody:
- properties:
- comment:
- description: 套餐描述,可不填
- type: string
- id:
- type: integer
- msg_count:
- description: 短信条数
- type: integer
- name:
- description: 套餐名 必填
- type: string
- price:
- description: 价格
- type: integer
- type: object
- v1.MsgPackageUpdateResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageAddBody:
- properties:
- desc:
- type: string
- house_count:
- type: integer
- name:
- type: string
- price:
- type: integer
- type: object
- v1.PackageAddResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageApplicationSetBody:
- properties:
- application_ids:
- items:
- type: integer
- type: array
- id:
- type: integer
- type: object
- v1.PackageApplicationSetResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageDelResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageEnableSetBody:
- properties:
- enable:
- type: boolean
- id:
- type: integer
- type: object
- v1.PackageEnableSetResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageItem:
- properties:
- desc:
- type: string
- enable:
- type: boolean
- house_count:
- type: integer
- id:
- type: integer
- name:
- type: string
- price:
- type: integer
- type: object
- v1.PackageListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.PackageItem'
- type: array
- page:
- type: integer
- total:
- type: integer
- type: object
- v1.PackageListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.PackageListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageOrderAddBody:
- properties:
- amount:
- description: 单价*周期得出的总价
- type: integer
- cid:
- description: 公司id
- type: integer
- company_name:
- description: 公司名称
- type: string
- package_id:
- type: integer
- period:
- description: 周期年
- type: integer
- type: object
- v1.PackageOrderAddRenewBody:
- properties:
- amount:
- type: integer
- garden_id:
- type: integer
- package_id:
- type: integer
- period:
- type: integer
- type: object
- v1.PackageOrderAddRenewResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageOrderAddResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageOrderAmountBody:
- properties:
- amount:
- type: integer
- order_id:
- type: integer
- type: object
- v1.PackageOrderAmountResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageOrderApproveBody:
- properties:
- feedback:
- type: string
- order_id:
- type: integer
- status:
- type: boolean
- type: object
- v1.PackageOrderApproveResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.PackageUpdateBody:
- properties:
- desc:
- type: string
- house_count:
- type: integer
- id:
- type: integer
- name:
- type: string
- price:
- type: integer
- type: object
- v1.PackageUpdateResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ProvinceCityAreaReply:
- properties:
- area_list:
- items:
- $ref: '#/definitions/v1.AreaData'
- type: array
- city_list:
- items:
- $ref: '#/definitions/v1.CityData'
- type: array
- province_list:
- items:
- $ref: '#/definitions/v1.ProvinceData'
- type: array
- type: object
- v1.ProvinceCityAreaResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.ProvinceCityAreaReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.ProvinceData:
- properties:
- code:
- type: string
- name:
- type: string
- type: object
- v1.RegisterReply:
- properties:
- id:
- type: integer
- type: object
- v1.StreetCommitteeReply:
- properties:
- committee_list:
- items:
- $ref: '#/definitions/v1.CommitteeData'
- type: array
- street_list:
- items:
- $ref: '#/definitions/v1.StreetData'
- type: array
- type: object
- v1.StreetCommitteeResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.StreetCommitteeReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.StreetData:
- properties:
- code:
- type: string
- name:
- type: string
- type: object
- v1.SystemPermissionAddBody:
- properties:
- applete_path:
- description: 小程序组件路径
- type: string
- enable:
- description: 1 发布 2 下架或不发布
- type: integer
- name:
- description: 权限名字
- type: string
- path:
- description: 组件路径
- type: string
- pcode:
- description: 父code,第一级节点父code为空
- type: string
- router:
- description: 路由
- type: string
- type: object
- v1.SystemPermissionAddReply:
- properties:
- code:
- type: string
- type: object
- v1.SystemPermissionAddResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.SystemPermissionAddReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.SystemPermissionDelResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.SystemPermissionEnableBody:
- properties:
- code:
- description: 权限节点code
- type: string
- enable:
- description: 1 发布 2 下架或不发布
- type: integer
- type: object
- v1.SystemPermissionItem:
- properties:
- applete_path:
- description: 小程序组件路径
- type: string
- childs:
- items:
- $ref: '#/definitions/v1.SystemPermissionItem'
- type: array
- code:
- type: string
- created_at:
- type: integer
- enable:
- description: 1 已发布 2 未发布
- type: integer
- enable_at:
- type: integer
- level:
- type: integer
- name:
- description: 权限名字
- type: string
- path:
- description: 组件路径
- type: string
- pcode:
- description: 父code,若没有则填空
- type: string
- router:
- description: 路由
- type: string
- type: object
- v1.SystemPermissionListReply:
- properties:
- list:
- items:
- $ref: '#/definitions/v1.SystemPermissionItem'
- type: array
- type: object
- v1.SystemPermissionListResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.SystemPermissionListReply'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.SystemPermissionUpdateBody:
- properties:
- applete_path:
- description: 小程序组件路径
- type: string
- code:
- description: 权限节点code
- type: string
- name:
- description: 权限名字
- type: string
- path:
- description: 组件路径
- type: string
- router:
- description: 路由
- type: string
- type: object
- v1.SystemPermissionUpdateResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.TemplateData:
- properties:
- url:
- type: string
- type: object
- v1.TemplateResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- $ref: '#/definitions/v1.TemplateData'
- type: object
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.TokenResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- type: string
- message:
- default: success
- description: 消息
- type: string
- refresh_token:
- type: string
- type: object
- v1.UploadResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- data:
- type: string
- message:
- default: success
- description: 消息
- type: string
- type: object
- v1.WxPublicAddMiniBody:
- properties:
- mini_pagepath:
- type: string
- mini_url:
- type: string
- type: object
- v1.WxPublicAddMiniResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- info:
- contact: {}
- description: This is a gateway server. On the page, you can go to do testing for every API.
- license: {}
- title: Project property-management-gateway's APIs
- version: "1.1"
- paths:
- /api/v1/application:
- delete:
- consumes:
- - application/json
- description: 删除应用
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 应用id
- in: query
- name: id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationDelResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 删除应用
- tags:
- - 应用
- get:
- consumes:
- - application/json
- description: 应用列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数,-1 不分页返回所有
- in: query
- name: page_size
- type: integer
- - description: 0不过滤,1已发布的 2 未发布的
- in: query
- name: enable
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 应用列表
- tags:
- - 应用
- post:
- consumes:
- - application/json
- description: 添加应用
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.ApplicationAddBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationAddResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 添加应用
- tags:
- - 应用
- put:
- consumes:
- - application/json
- description: 编辑应用
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.ApplicationUpdateBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationUpdateResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 编辑应用
- tags:
- - 应用
- /api/v1/application/enable:
- put:
- consumes:
- - application/json
- description: 发布和下架
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.ApplicationEnableSetBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationEnableSetResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 发布和下架
- tags:
- - 应用
- /api/v1/application/permissions:
- get:
- consumes:
- - application/json
- description: 应用的菜单列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 应用id
- in: query
- name: id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationPermissionsResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 应用的菜单列表
- tags:
- - 应用
- put:
- consumes:
- - application/json
- description: 给应用添加菜单
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.ApplicationPermissionsSetBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationPermissionsSetResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 给应用添加菜单
- tags:
- - 应用
- /api/v1/area/province_city_area:
- get:
- consumes:
- - application/json
- description: 省市区列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ProvinceCityAreaResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 省市区列表
- tags:
- - 区域
- /api/v1/area/street_committee:
- get:
- consumes:
- - application/json
- description: 街道社区列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 区域代码
- in: query
- name: area_code
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.StreetCommitteeResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 街道社区列表
- tags:
- - 区域
- /api/v1/company/approve:
- put:
- consumes:
- - application/json
- description: 审核公司
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 审批信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.CompanyApproveBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.CompanyApproveResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 审核公司
- tags:
- - 物业公司
- /api/v1/company/free_garden:
- put:
- consumes:
- - application/json
- description: 修改配额
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.CompanyChangeFreeGardenBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.CompanyChangeFreeGardenResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 修改配额
- tags:
- - 物业公司
- /api/v1/company/list:
- get:
- consumes:
- - application/json
- description: 公司列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 公司名称
- in: query
- name: company_name
- type: string
- - description: 0 所有 1 待审核 2 未通过 3 通过
- in: query
- name: approve_status
- type: integer
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数
- in: query
- name: page_size
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.CompanyListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 公司列表
- tags:
- - 物业公司
- /api/v1/company/package:
- get:
- consumes:
- - application/json
- description: 套餐列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数,-1 不分页返回所有
- in: query
- name: page_size
- type: integer
- - description: 公司id(用于获取公司下的套餐)
- in: query
- name: cid
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.CompanyPackageListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐列表
- tags:
- - 公司套餐
- /api/v1/company/register:
- post:
- consumes:
- - application/json
- description: 添加公司
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 注册信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.CompanyRegisterBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.CompanyRegisterResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 添加公司
- tags:
- - 物业公司
- /api/v1/company/wx_account:
- get:
- consumes:
- - application/json
- description: 微信商户申请记录
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: query
- name: page
- required: true
- type: integer
- - description: ' '
- in: query
- name: page_size
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.CompanyWxAccountListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 微信商户申请记录
- tags:
- - 公司
- /api/v1/company/wx_account_info:
- get:
- consumes:
- - application/json
- description: 微信商户申请资料详情
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 申请记录id
- in: query
- name: id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.CompanyWxAccountApplyInfoResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 微信商户申请资料详情
- tags:
- - 公司
- /api/v1/garden:
- get:
- consumes:
- - application/json
- description: 小区列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 社区代码
- in: query
- name: committee_code
- type: string
- - description: 街道代码
- in: query
- name: street_code
- type: string
- - description: 小区名字
- in: query
- name: garden_name
- type: string
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数,-1 不分页返回所有
- in: query
- name: page_size
- type: integer
- - description: true 待审批或未通过的数据 false 审批通过的数据
- in: query
- name: not_approved
- type: boolean
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GardenListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 小区列表
- tags:
- - 小区
- put:
- consumes:
- - application/json
- description: 新增小区审核
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 小区信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.GardenApproveBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GardenApproveResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 新增小区审核
- tags:
- - 小区
- /api/v1/garden/company:
- put:
- consumes:
- - application/json
- description: 小区更换物业公司
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.GardenChangeCompanyBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GardenChangeCompanyResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 小区更换物业公司
- tags:
- - 小区
- /api/v1/garden/enable:
- put:
- consumes:
- - application/json
- description: 启用停用
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.GardenEnableSetBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GardenEnableSetResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 启用停用
- tags:
- - 小区
- /api/v1/garden/key_info:
- get:
- consumes:
- - application/json
- description: 小区关键信息申请列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: query
- name: page
- type: integer
- - description: ' '
- in: query
- name: page_size
- type: integer
- - description: '0不过率 1 待审核 2 审核通过 3 未通过 '
- in: query
- name: status
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GardenKeyInfoChangeListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 小区关键信息申请列表
- tags:
- - 小区
- put:
- consumes:
- - application/json
- description: 小区关键信息修改审核
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 小区信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.GardenKeyInfoApproveBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GardenKeyInfoApproveResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 小区关键信息修改审核
- tags:
- - 小区
- /api/v1/gate:
- delete:
- consumes:
- - application/json
- description: 门禁删除
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 设备id
- in: query
- name: device_id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GateDelResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁删除
- tags:
- - 门禁
- get:
- consumes:
- - application/json
- description: 门禁列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: query
- name: page
- type: integer
- - description: ' '
- in: query
- name: page_size
- type: integer
- - description: 小区id
- in: query
- name: garden_id
- type: integer
- - description: 0 不过滤 1 已出库 2 未出库
- in: query
- name: out
- type: integer
- - description: 设备sn
- in: query
- name: sn
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GateListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁列表
- tags:
- - 门禁
- /api/v1/gate/import:
- post:
- consumes:
- - application/json
- description: 门禁批量入库
- parameters:
- - description: token
- in: header
- name: token
- required: true
- type: string
- - description: file
- in: formData
- name: file
- required: true
- type: file
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GateInResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁批量入库
- tags:
- - 门禁
- /api/v1/gate/in:
- post:
- consumes:
- - application/json
- description: 门禁入库
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.GateInBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GateInResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁入库
- tags:
- - 门禁
- /api/v1/gate/out:
- put:
- consumes:
- - application/json
- description: 门禁出库
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.GateOutBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GateOutResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁出库
- tags:
- - 门禁
- /api/v1/gate/protocols:
- get:
- consumes:
- - application/json
- description: 门禁协议列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GateProtocolsResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁协议列表
- tags:
- - 门禁
- /api/v1/gate/recovery:
- put:
- consumes:
- - application/json
- description: 门禁回收
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.GateRecoveryBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GateRecoveryResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁回收
- tags:
- - 门禁
- /api/v1/gate/template:
- get:
- consumes:
- - application/json
- description: 获取门禁模板
- parameters:
- - description: token
- in: header
- name: token
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.TemplateResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 获取门禁模板
- tags:
- - 门禁
- /api/v1/material:
- delete:
- consumes:
- - application/json
- description: 删除素材
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: query
- name: id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MaterialDelResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 删除素材
- tags:
- - 物业素材
- get:
- consumes:
- - application/json
- description: 素材列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: query
- name: page
- type: integer
- - description: ' '
- in: query
- name: page_size
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MaterialListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 素材列表
- tags:
- - 物业素材
- post:
- consumes:
- - application/json
- description: 添加素材
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.MaterialAddBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MaterialAddResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 添加素材
- tags:
- - 物业素材
- put:
- consumes:
- - application/json
- description: 更改素材
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.MaterialUpdateBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MaterialUpdateResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 更改素材
- tags:
- - 物业素材
- /api/v1/material/enable:
- put:
- consumes:
- - application/json
- description: 发布或下架
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.MaterialEnableBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MaterialUpdateResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 发布或下架
- tags:
- - 物业素材
- /api/v1/msg_package:
- delete:
- consumes:
- - application/json
- description: 删除套餐
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 套餐id
- in: query
- name: id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MsgPackageDelResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 删除套餐
- tags:
- - 短信套餐
- get:
- consumes:
- - application/json
- description: 套餐列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数,-1 不分页返回所有
- in: query
- name: page_size
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MsgPackageListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐列表
- tags:
- - 短信套餐
- post:
- consumes:
- - application/json
- description: 添加套餐
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.MsgPackageAddBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MsgPackageAddResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 添加套餐
- tags:
- - 短信套餐
- put:
- consumes:
- - application/json
- description: 编辑套餐
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.MsgPackageUpdateBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MsgPackageUpdateResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 编辑套餐
- tags:
- - 短信套餐
- /api/v1/order/application:
- get:
- consumes:
- - application/json
- description: 应用订单列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数,-1 不分页返回所有
- in: query
- name: page_size
- type: integer
- - description: 0不过滤,1待认证 2 已通过 3 未通过
- in: query
- name: status
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.GardenApplicationListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 应用订单列表
- tags:
- - 应用订单
- put:
- consumes:
- - application/json
- description: 应用订单审批
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.ApplicationOrderApproveBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationOrderApproveResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 应用订单审批
- tags:
- - 应用订单
- /api/v1/order/application/amount:
- put:
- consumes:
- - application/json
- description: 应用订单改价
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.ApplicationOrderAmountBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationOrderAmountResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 应用订单改价
- tags:
- - 套餐订单
- /api/v1/order/msg_package:
- get:
- consumes:
- - application/json
- description: 短信订单列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数,-1 不分页返回所有
- in: query
- name: page_size
- type: integer
- - description: 0不过滤,1待认证 2 已通过 3 未通过
- in: query
- name: status
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MsgPackageOrderListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 短信订单列表
- tags:
- - 短信订单
- put:
- consumes:
- - application/json
- description: 短信订单审批
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.MsgPackageOrderApproveBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.MsgPackageOrderApproveResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 短信订单审批
- tags:
- - 短信订单
- /api/v1/order/package:
- get:
- consumes:
- - application/json
- description: 套餐订单列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数,-1 不分页返回所有
- in: query
- name: page_size
- type: integer
- - description: 0不过滤,1待认证 2 已通过 3 未通过
- in: query
- name: status
- type: integer
- - description: 公司id(用于获取公司下的套餐)
- in: query
- name: cid
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.CompanyPackageListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐订单列表
- tags:
- - 套餐订单
- post:
- consumes:
- - application/json
- description: 新增套餐
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.PackageOrderAddBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageOrderAddResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 新增套餐
- tags:
- - 公司套餐
- put:
- consumes:
- - application/json
- description: 套餐订单审批
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.PackageOrderApproveBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageOrderApproveResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐订单审批
- tags:
- - 套餐订单
- /api/v1/order/package/amount:
- put:
- consumes:
- - application/json
- description: 套餐订单改价
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.PackageOrderAmountBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageOrderAmountResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐订单改价
- tags:
- - 套餐订单
- /api/v1/order/renew:
- post:
- consumes:
- - application/json
- description: 套餐续费
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.PackageOrderAddRenewBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageOrderAddRenewResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐续费
- tags:
- - 公司套餐
- /api/v1/package:
- delete:
- consumes:
- - application/json
- description: 删除套餐
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 套餐id
- in: query
- name: id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageDelResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 删除套餐
- tags:
- - 套餐
- get:
- consumes:
- - application/json
- description: 套餐列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 第几页,1为起始页, -1 不分页返回所有
- in: query
- name: page
- required: true
- type: integer
- - description: 每页条数,-1 不分页返回所有
- in: query
- name: page_size
- type: integer
- - description: 0不过滤,1已发布的 2 未发布的
- in: query
- name: enable
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐列表
- tags:
- - 套餐
- post:
- consumes:
- - application/json
- description: 添加套餐
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.PackageAddBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageAddResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 添加套餐
- tags:
- - 套餐
- put:
- consumes:
- - application/json
- description: 编辑套餐
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.PackageUpdateBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageUpdateResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 编辑套餐
- tags:
- - 套餐
- /api/v1/package/application:
- get:
- consumes:
- - application/json
- description: 套餐的应用列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 套餐id
- in: query
- name: package_id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐的应用列表
- tags:
- - 套餐
- put:
- consumes:
- - application/json
- description: 给套餐添加应用
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.PackageApplicationSetBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageApplicationSetResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 给套餐添加应用
- tags:
- - 套餐
- /api/v1/package/application_can_add:
- get:
- consumes:
- - application/json
- description: 套餐还可添加的应用列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 套餐id
- in: query
- name: package_id
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ApplicationListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 套餐还可添加的应用列表
- tags:
- - 套餐
- /api/v1/package/enable:
- put:
- consumes:
- - application/json
- description: 发布和下架
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.PackageEnableSetBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.PackageEnableSetResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 发布和下架
- tags:
- - 套餐
- /api/v1/system_permission:
- delete:
- consumes:
- - application/json
- description: 删除权限节点
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 节点code
- in: query
- name: code
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.SystemPermissionDelResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 删除权限节点
- tags:
- - 物业权限节点
- get:
- consumes:
- - application/json
- description: 权限节点列表
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.SystemPermissionListResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 权限节点列表
- tags:
- - 物业权限节点
- post:
- consumes:
- - application/json
- description: 添加权限节点
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 节点信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.SystemPermissionAddBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.SystemPermissionAddResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 添加权限节点
- tags:
- - 物业权限节点
- put:
- consumes:
- - application/json
- description: 更改权限节点
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 节点信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.SystemPermissionUpdateBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.SystemPermissionUpdateResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 更改权限节点
- tags:
- - 物业权限节点
- /api/v1/system_permission/enable:
- put:
- consumes:
- - application/json
- description: 发布或下架
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: 节点信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.SystemPermissionEnableBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.SystemPermissionUpdateResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 发布或下架
- tags:
- - 物业权限节点
- /api/v1/token_refresh:
- put:
- consumes:
- - application/json
- description: 刷新token
- parameters:
- - description: token
- in: header
- name: token
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.TokenResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 刷新token
- tags:
- - 用户
- /api/v1/upload:
- post:
- consumes:
- - application/json
- description: 上传文件
- parameters:
- - description: jwt token
- in: header
- name: token
- required: true
- type: string
- - description: file
- in: formData
- name: file
- type: file
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.UploadResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 上传文件
- tags:
- - upload
- /api/v1/user/login:
- post:
- consumes:
- - application/json
- description: 登录
- parameters:
- - description: 登录信息
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.LoginBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.LoginResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 登录
- tags:
- - 用户
- /api/v1/wx/public/mini:
- post:
- consumes:
- - application/json
- description: 公众号添加小程序入口
- parameters:
- - description: ' '
- in: header
- name: token
- required: true
- type: string
- - description: ' '
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.WxPublicAddMiniBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.WxPublicAddMiniResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 公众号添加小程序入口
- tags:
- - 微信相关
- swagger: "2.0"
|