swagger.yaml 32.5 KB
Newer Older
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
1
definitions:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
2
  config.Captcha:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
3
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
4 5 6 7 8 9
      imgHeight:
        type: integer
      imgWidth:
        type: integer
      keyLong:
        type: integer
Mr.奇淼('s avatar
Mr.奇淼( 已提交
10
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
11
  config.Casbin:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
12
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
13
      modelPath:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
14 15
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
16
  config.JWT:
17
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
18
      signingKey:
19 20
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
21
  config.Log:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
22
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
23
      file:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
24
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
25 26 27
      logFile:
        type: boolean
      prefix:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
28
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
29
      stdout:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
30 31
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
32
  config.Mysql:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
33
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
34
      config:
35
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
36
      dbname:
37
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
38 39 40 41 42 43
      logMode:
        type: boolean
      maxIdleConns:
        type: integer
      maxOpenConns:
        type: integer
Mr.奇淼('s avatar
Mr.奇淼( 已提交
44
      password:
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
45
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
46 47
      path:
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
48
      username:
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
49 50
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
51
  config.Qiniu:
52
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
53
      accessKey:
54
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
55
      secretKey:
56 57
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
58
  config.Redis:
59
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
60 61 62 63 64
      addr:
        type: string
      db:
        type: integer
      password:
65 66
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
67
  config.Server:
68
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
69 70 71 72 73
      captcha:
        $ref: '#/definitions/config.Captcha'
        type: object
      casbin:
        $ref: '#/definitions/config.Casbin'
74 75 76 77
        type: object
      jwt:
        $ref: '#/definitions/config.JWT'
        type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
78 79 80 81 82
      log:
        $ref: '#/definitions/config.Log'
        type: object
      mysql:
        $ref: '#/definitions/config.Mysql'
83 84 85 86
        type: object
      qiniu:
        $ref: '#/definitions/config.Qiniu'
        type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
87 88 89 90 91
      redis:
        $ref: '#/definitions/config.Redis'
        type: object
      sqlite:
        $ref: '#/definitions/config.Sqlite'
92 93 94 95 96
        type: object
      system:
        $ref: '#/definitions/config.System'
        type: object
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
97
  config.Sqlite:
98 99 100
    properties:
      config:
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
101 102
      logMode:
        type: boolean
103 104 105 106 107 108 109 110 111 112 113
      password:
        type: string
      path:
        type: string
      username:
        type: string
    type: object
  config.System:
    properties:
      addr:
        type: integer
Mr.奇淼('s avatar
Mr.奇淼( 已提交
114 115
      dbType:
        type: string
116 117 118 119 120
      env:
        type: string
      useMultipoint:
        type: boolean
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134
  model.AutoCodeStruct:
    properties:
      abbreviation:
        type: string
      fields:
        items:
          $ref: '#/definitions/model.Field'
        type: array
      packageName:
        type: string
      structName:
        type: string
    type: object
  model.ExaCustomer:
135 136 137 138 139 140
    properties:
      customerName:
        type: string
      customerPhoneData:
        type: string
      sysUser:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
141
        $ref: '#/definitions/model.SysUser'
142 143 144 145 146 147
        type: object
      sysUserAuthorityID:
        type: string
      sysUserId:
        type: integer
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
148
  model.ExaFileUploadAndDownload:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
149 150 151 152 153 154 155 156 157 158
    properties:
      key:
        type: string
      name:
        type: string
      tag:
        type: string
      url:
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
159
  model.Field:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
160
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
161
      columnName:
162
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
163
      fieldJson:
164
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
165 166 167
      fieldName:
        type: string
      fieldType:
168 169
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
170
  model.SysApi:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
171
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
172
      apiGroup:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
173
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
174
      description:
175
        type: string
176 177
      method:
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
178 179 180
      path:
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
181
  model.SysAuthority:
182 183 184 185 186
    properties:
      authorityId:
        type: string
      authorityName:
        type: string
187 188
      children:
        items:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
189
          $ref: '#/definitions/model.SysAuthority'
190
        type: array
Mr.奇淼('s avatar
Mr.奇淼( 已提交
191 192
      createdAt:
        type: string
193 194
      dataAuthorityId:
        items:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
195 196 197 198 199 200 201
          $ref: '#/definitions/model.SysAuthority'
        type: array
      deletedAt:
        type: string
      menus:
        items:
          $ref: '#/definitions/model.SysBaseMenu'
202 203 204
        type: array
      parentId:
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
205 206
      updatedAt:
        type: string
207
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
208
  model.SysBaseMenu:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
209
    properties:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
210 211 212 213
      authoritys:
        items:
          $ref: '#/definitions/model.SysAuthority'
        type: array
Mr.奇淼('s avatar
Mr.奇淼( 已提交
214 215
      children:
        items:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
216
          $ref: '#/definitions/model.SysBaseMenu'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229
        type: array
      component:
        type: string
      hidden:
        type: boolean
      icon:
        type: string
      name:
        type: string
      parentId:
        type: string
      path:
        type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
230
      sort:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
231
        type: integer
Mr.奇淼('s avatar
Mr.奇淼( 已提交
232
      title:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
233 234
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
235
  model.SysUser:
236 237
    properties:
      authority:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
238
        $ref: '#/definitions/model.SysAuthority'
239 240 241 242 243 244 245 246 247 248 249 250
        type: object
      authorityId:
        type: string
      headerImg:
        type: string
      nickName:
        type: string
      userName:
        type: string
      uuid:
        type: string
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
251
  model.SysWorkflow:
252 253 254 255 256 257 258 259 260 261 262 263 264
    properties:
      workflowDescription:
        description: 工作流描述
        type: string
      workflowName:
        description: 工作流英文id
        type: string
      workflowNickName:
        description: 工作流名称
        type: string
      workflowStep:
        description: 工作流步骤
        items:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
265
          $ref: '#/definitions/model.SysWorkflowStepInfo'
266 267
        type: array
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
268
  model.SysWorkflowStepInfo:
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
    properties:
      isEnd:
        description: 是否是完结流节点
        type: boolean
      isStrat:
        description: 是否是开始流节点
        type: boolean
      stepAuthorityID:
        description: 操作者级别id
        type: string
      stepName:
        description: 工作流名称
        type: string
      stepNo:
        description: 步骤id (第几步)
        type: number
Mr.奇淼('s avatar
Mr.奇淼( 已提交
285 286
      workflowID:
        description: 所属工作流ID
Mr.奇淼('s avatar
Mr.奇淼( 已提交
287 288
        type: integer
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
289
  model.System:
290 291
    properties:
      config:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
292
        $ref: '#/definitions/config.Server'
293 294
        type: object
    type: object
Mr.奇淼('s avatar
Mr.奇淼( 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
  request.AddMenuAuthorityInfo:
    properties:
      authorityId:
        type: string
      menus:
        items:
          $ref: '#/definitions/model.SysBaseMenu'
        type: array
    type: object
  request.AuthorityIdInfo:
    properties:
      authorityId:
        type: string
    type: object
  request.CasbinInReceive:
    properties:
      authorityId:
        type: string
      casbinInfos:
        items:
          $ref: '#/definitions/request.CasbinInfo'
        type: array
    type: object
  request.CasbinInfo:
    properties:
      method:
        type: string
      path:
        type: string
    type: object
  request.ChangePasswordStruct:
    properties:
      newPassword:
        type: string
      password:
        type: string
      username:
        type: string
    type: object
  request.GetById:
    properties:
      id:
        type: number
    type: object
  request.PageInfo:
    properties:
      page:
        type: integer
      pageSize:
        type: integer
    type: object
  request.RegisterAndLoginStruct:
    properties:
      captcha:
        type: string
      captchaId:
        type: string
      password:
        type: string
      username:
        type: string
    type: object
  request.SearchApiParams:
    properties:
      apiGroup:
        type: string
      desc:
        type: boolean
      description:
        type: string
      method:
        type: string
      orderKey:
        type: string
      page:
        type: integer
      pageSize:
        type: integer
      path:
        type: string
    type: object
  request.SetUserAuth:
    properties:
      authorityId:
        type: string
      uuid:
        type: string
    type: object
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
383 384 385 386
info:
  contact: {}
  license: {}
paths:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
387
  /api/createApi:
388
    post:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
389 390
      consumes:
      - application/json
391
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
392
      - description: 创建api
393 394 395 396
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
397
          $ref: '#/definitions/model.SysApi'
398 399 400 401 402
          type: object
      produces:
      - application/json
      responses:
        "200":
Mr.奇淼('s avatar
Mr.奇淼( 已提交
403
          description: '{"success":true,"data":{},"msg":"获取成功"}'
404 405
          schema:
            type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
406 407
      security:
      - ApiKeyAuth: []
Mr.奇淼('s avatar
Mr.奇淼( 已提交
408
      summary: 创建基础api
409
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
410
      - SysApi
Mr.奇淼('s avatar
Mr.奇淼( 已提交
411
  /api/deleteApi:
412
    post:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
413 414
      consumes:
      - application/json
415
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
416 417 418 419 420
      - description: 删除api
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
421
          $ref: '#/definitions/model.SysApi'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
422 423 424 425 426 427 428 429 430 431
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
Mr.奇淼('s avatar
Mr.奇淼( 已提交
432
      summary: 删除指定api
Mr.奇淼('s avatar
Mr.奇淼( 已提交
433
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
434
      - SysApi
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
  /api/getAllApis:
    post:
      consumes:
      - application/json
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 获取所有的Api 不分页
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
450
      - SysApi
451
  /api/getApiById:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
452 453 454 455
    post:
      consumes:
      - application/json
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
456
      - description: 根据id获取api
Mr.奇淼('s avatar
Mr.奇淼( 已提交
457 458 459 460
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
461
          $ref: '#/definitions/request.GetById'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
462 463 464 465 466 467 468 469 470 471
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
472
      summary: 根据id获取api
Mr.奇淼('s avatar
Mr.奇淼( 已提交
473
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
474
      - SysApi
475 476 477 478 479 480 481 482 483 484
  /api/getApiList:
    post:
      consumes:
      - application/json
      parameters:
      - description: 分页获取API列表
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
485
          $ref: '#/definitions/request.SearchApiParams'
486 487 488 489 490 491 492 493 494 495 496 497
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 分页获取API列表
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
498
      - SysApi
R
rainyan 已提交
499
  /api/updateApi:
500 501 502 503 504 505 506 507 508
    post:
      consumes:
      - application/json
      parameters:
      - description: 创建api
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
509
          $ref: '#/definitions/model.SysApi'
510 511 512 513 514 515 516 517 518 519 520 521
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 创建基础api
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
522
      - SysApi
Mr.奇淼('s avatar
Mr.奇淼( 已提交
523 524 525 526 527 528 529 530 531 532
  /authority/createAuthority:
    post:
      consumes:
      - application/json
      parameters:
      - description: 创建角色
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
533
          $ref: '#/definitions/model.SysAuthority'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 创建角色
      tags:
      - authority
  /authority/deleteAuthority:
    post:
      consumes:
      - application/json
      parameters:
      - description: 删除角色
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
557
          $ref: '#/definitions/model.SysAuthority'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
558 559 560 561 562 563 564 565 566 567 568 569 570
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 删除角色
      tags:
      - authority
Mr.奇淼('s avatar
Mr.奇淼( 已提交
571 572 573 574 575 576 577 578 579 580
  /authority/getAuthorityList:
    post:
      consumes:
      - application/json
      parameters:
      - description: 分页获取用户列表
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
581
          $ref: '#/definitions/request.PageInfo'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 分页获取角色列表
      tags:
      - authority
595 596 597 598 599 600 601 602 603 604
  /authority/setDataAuthority:
    post:
      consumes:
      - application/json
      parameters:
      - description: 设置角色资源权限
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
605
          $ref: '#/definitions/model.SysAuthority'
606 607 608 609 610 611 612 613 614 615 616 617 618
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"设置成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 设置角色资源权限
      tags:
      - authority
Mr.奇淼('s avatar
Mr.奇淼( 已提交
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
  /autoCode/createTemp:
    post:
      consumes:
      - application/json
      parameters:
      - description: 创建自动代码
        in: body
        name: data
        required: true
        schema:
          $ref: '#/definitions/model.AutoCodeStruct'
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"创建成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 自动代码模板
      tags:
      - SysApi
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
  /base/captcha:
    post:
      consumes:
      - application/json
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 生成验证码
      tags:
      - base
  /base/captcha/:
    get:
      consumes:
      - application/json
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 生成验证码图片路径
      tags:
      - base
Mr.奇淼('s avatar
Mr.奇淼( 已提交
675 676 677 678
  /base/login:
    post:
      parameters:
      - description: 用户登录接口
679 680 681 682
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
683
          $ref: '#/definitions/request.RegisterAndLoginStruct'
684 685 686 687 688
          type: object
      produces:
      - application/json
      responses:
        "200":
Mr.奇淼('s avatar
Mr.奇淼( 已提交
689
          description: '{"success":true,"data":{},"msg":"登陆成功"}'
690 691
          schema:
            type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
692
      summary: 用户登录
693
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
694
      - Base
695
  /base/register:
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
696 697
    post:
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
698
      - description: 用户注册接口
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
699 700 701 702
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
703
          $ref: '#/definitions/model.SysUser'
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
704 705
          type: object
      produces:
706
      - application/json
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
707 708
      responses:
        "200":
Mr.奇淼('s avatar
Mr.奇淼( 已提交
709
          description: '{"success":true,"data":{},"msg":"注册成功"}'
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
710 711
          schema:
            type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
712
      summary: 用户注册账号
Mr.奇淼('s avatar
Mr.奇淼( 已提交
713
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
714
      - Base
715 716 717 718 719 720 721 722 723 724
  /casbin/CasbinTest:
    get:
      consumes:
      - application/json
      parameters:
      - description: 获取权限列表
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
725
          $ref: '#/definitions/request.CasbinInReceive'
726 727 728 729 730 731 732 733 734 735 736 737 738
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: casb RBAC RESTFUL测试路由
      tags:
      - casbin
R
rainyan 已提交
739
  /casbin/UpdateCasbin:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
740 741 742 743 744 745 746 747 748
    post:
      consumes:
      - application/json
      parameters:
      - description: 更改角色api权限
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
749
          $ref: '#/definitions/request.CasbinInReceive'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 更改角色api权限
      tags:
      - casbin
  /casbin/getPolicyPathByAuthorityId:
    post:
      consumes:
      - application/json
      parameters:
      - description: 获取权限列表
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
773
          $ref: '#/definitions/request.CasbinInReceive'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
774 775 776 777 778 779 780 781 782 783 784 785 786
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 获取权限列表
      tags:
      - casbin
Mr.奇淼('s avatar
Mr.奇淼( 已提交
787 788
  /customer/customer:
    delete:
789 790 791
      consumes:
      - application/json
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
792
      - description: 删除客户
793 794 795 796
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
797
          $ref: '#/definitions/model.ExaCustomer'
798 799 800 801 802 803 804 805 806 807
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
Mr.奇淼('s avatar
Mr.奇淼( 已提交
808
      summary: 删除客户
809 810
      tags:
      - SysApi
Mr.奇淼('s avatar
Mr.奇淼( 已提交
811
    get:
812 813 814
      consumes:
      - application/json
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
815
      - description: 获取单一客户信息
816 817 818 819
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
820
          $ref: '#/definitions/model.ExaCustomer'
821 822 823 824 825 826 827 828 829 830
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
Mr.奇淼('s avatar
Mr.奇淼( 已提交
831
      summary: 获取单一客户信息
832 833 834 835 836 837
      tags:
      - SysApi
    post:
      consumes:
      - application/json
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
838
      - description: 创建客户
839 840 841 842
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
843
          $ref: '#/definitions/model.ExaCustomer'
844 845 846 847 848 849 850 851 852 853
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
Mr.奇淼('s avatar
Mr.奇淼( 已提交
854
      summary: 创建客户
855 856
      tags:
      - SysApi
Mr.奇淼('s avatar
Mr.奇淼( 已提交
857
    put:
858 859 860
      consumes:
      - application/json
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
861
      - description: 创建客户
862 863 864 865
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
866
          $ref: '#/definitions/model.ExaCustomer'
867 868 869 870 871 872 873 874 875 876
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
Mr.奇淼('s avatar
Mr.奇淼( 已提交
877
      summary: 更新客户信息
878 879
      tags:
      - SysApi
Mr.奇淼('s avatar
Mr.奇淼( 已提交
880 881
  /customer/customerList:
    get:
882 883 884
      consumes:
      - application/json
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
885
      - description: 获取权限客户列表
886 887 888 889
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
890
          $ref: '#/definitions/request.PageInfo'
891 892 893 894 895 896 897 898 899 900
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
Mr.奇淼('s avatar
Mr.奇淼( 已提交
901
      summary: 获取权限客户列表
902 903 904 905 906 907 908
      tags:
      - SysApi
  /fileUploadAndDownload/breakpointContinue:
    post:
      consumes:
      - multipart/form-data
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
909
      - description: an example for breakpoint resume, 断点续传示例
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
        in: formData
        name: file
        required: true
        type: file
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"上传成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 断点续传到服务器
      tags:
      - ExaFileUploadAndDownload
Mr.奇淼('s avatar
Mr.奇淼( 已提交
926 927 928 929 930 931 932 933
  /fileUploadAndDownload/deleteFile:
    post:
      parameters:
      - description: 传入文件里面id即可
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
934
          $ref: '#/definitions/model.ExaFileUploadAndDownload'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
935 936 937 938 939 940 941 942 943 944 945 946
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"返回成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 删除文件
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
947
      - ExaFileUploadAndDownload
948 949 950 951 952
  /fileUploadAndDownload/findFile:
    post:
      consumes:
      - multipart/form-data
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
953
      - description: 上传文件完成
954 955 956 957 958 959 960 961
        in: formData
        name: file
        required: true
        type: file
      produces:
      - application/json
      responses:
        "200":
Mr.奇淼('s avatar
Mr.奇淼( 已提交
962
          description: '{"success":true,"data":{},"msg":"file uploaded, 文件创建成功"}'
963 964 965 966 967 968 969
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 查找文件
      tags:
      - ExaFileUploadAndDownload
970
  /fileUploadAndDownload/getFileList:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
971 972 973 974
    post:
      consumes:
      - application/json
      parameters:
975
      - description: 分页获取文件户列表
Mr.奇淼('s avatar
Mr.奇淼( 已提交
976 977 978 979
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
980
          $ref: '#/definitions/request.PageInfo'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
981 982 983 984 985 986 987 988 989 990
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
991 992
      summary: 分页文件列表
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
993
      - ExaFileUploadAndDownload
994 995 996 997 998
  /fileUploadAndDownload/removeChunk:
    post:
      consumes:
      - multipart/form-data
      parameters:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
999
      - description: 删除缓存切片
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
        in: formData
        name: file
        required: true
        type: file
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"查找成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 删除切片
      tags:
      - ExaFileUploadAndDownload
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
  /fileUploadAndDownload/upload:
    post:
      consumes:
      - multipart/form-data
      parameters:
      - description: 上传文件示例
        in: formData
        name: file
        required: true
        type: file
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"上传成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 上传文件示例
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1037
      - ExaFileUploadAndDownload
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
  /jwt/jsonInBlacklist:
    post:
      consumes:
      - application/json
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"拉黑成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: jwt加入黑名单
      tags:
      - jwt
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
  /menu/GetMenuAuthority:
    post:
      consumes:
      - application/json
      parameters:
      - description: 增加menu和角色关联关系
        in: body
        name: data
        required: true
        schema:
          $ref: '#/definitions/request.AuthorityIdInfo'
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 获取指定角色menu
      tags:
      - authorityAndMenu
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
  /menu/addBaseMenu:
    post:
      consumes:
      - application/json
      parameters:
      - description: 新增菜单
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1088
          $ref: '#/definitions/model.SysBaseMenu'
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 新增菜单
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
      tags:
      - menu
  /menu/addMenuAuthority:
    post:
      consumes:
      - application/json
      parameters:
      - description: 增加menu和角色关联关系
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1112
          $ref: '#/definitions/request.AddMenuAuthorityInfo'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1123
      summary: 增加menu和角色关联关系
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
      tags:
      - authorityAndMenu
  /menu/deleteBaseMenu:
    post:
      consumes:
      - application/json
      parameters:
      - description: 删除菜单
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1136
          $ref: '#/definitions/request.GetById'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
      summary: 删除菜单
      tags:
      - menu
  /menu/getBaseMenuById:
    post:
      consumes:
      - application/json
      parameters:
      - description: 根据id获取菜单
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1160
          $ref: '#/definitions/request.GetById'
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 根据id获取菜单
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
      tags:
      - menu
  /menu/getBaseMenuTree:
    post:
      parameters:
      - description: 可以什么都不填
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1182
          $ref: '#/definitions/request.RegisterAndLoginStruct'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"返回成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 获取用户动态路由
      tags:
      - authorityAndMenu
  /menu/getMenu:
    post:
      parameters:
      - description: 可以什么都不填
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1204
          $ref: '#/definitions/request.RegisterAndLoginStruct'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"返回成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 获取用户动态路由
      tags:
      - authorityAndMenu
  /menu/getMenuList:
    post:
      consumes:
      - application/json
      parameters:
      - description: 分页获取基础menu列表
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1228
          $ref: '#/definitions/request.PageInfo'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 分页获取基础menu列表
      tags:
      - menu
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1242
  /menu/updateBaseMenu:
1243 1244 1245 1246 1247 1248 1249 1250 1251
    post:
      consumes:
      - application/json
      parameters:
      - description: 更新菜单
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1252
          $ref: '#/definitions/model.SysBaseMenu'
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 更新菜单
      tags:
      - menu
1266 1267 1268 1269 1270 1271 1272 1273
  /system/ReloadSystem:
    post:
      parameters:
      - description: 设置配置文件内容
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1274
          $ref: '#/definitions/model.System'
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"返回成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 设置配置文件内容
      tags:
      - system
  /system/getSystemConfig:
    post:
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"返回成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 获取配置文件内容
      tags:
      - system
  /system/setSystemConfig:
    post:
      parameters:
      - description: 设置配置文件内容
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1310
          $ref: '#/definitions/model.System'
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"返回成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 设置配置文件内容
      tags:
      - system
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1324
  /user/changePassword:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1325
    put:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1326 1327 1328 1329 1330 1331
      parameters:
      - description: 用户修改密码
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1332
          $ref: '#/definitions/request.ChangePasswordStruct'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"修改成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 用户修改密码
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1345
      - SysUser
1346
  /user/getUserList:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1347 1348 1349 1350 1351 1352 1353 1354 1355
    post:
      consumes:
      - application/json
      parameters:
      - description: 分页获取用户列表
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1356
          $ref: '#/definitions/request.PageInfo'
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"获取成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 分页获取用户列表
1368
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1369
      - SysUser
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379
  /user/setUserAuthority:
    post:
      consumes:
      - application/json
      parameters:
      - description: 设置用户权限
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1380
          $ref: '#/definitions/request.SetUserAuth'
1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"修改成功"}'
          schema:
            type: string
      security:
      - ApiKeyAuth: []
      summary: 设置用户权限
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1393
      - SysUser
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
  /user/uploadHeaderImg:
    post:
      consumes:
      - multipart/form-data
      parameters:
      - description: 用户上传头像
        in: formData
        name: headerImg
        required: true
        type: file
      - description: 用户上传头像
        in: formData
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1406
        name: username
1407 1408 1409 1410 1411 1412 1413 1414 1415
        required: true
        type: string
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"上传成功"}'
          schema:
            type: string
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1416 1417
      security:
      - ApiKeyAuth: []
1418 1419
      summary: 用户上传头像
      tags:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1420
      - SysUser
1421 1422 1423 1424 1425 1426 1427 1428
  /workflow/createWorkFlow:
    post:
      parameters:
      - description: 注册工作流接口
        in: body
        name: data
        required: true
        schema:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1429
          $ref: '#/definitions/model.SysWorkflow'
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440
          type: object
      produces:
      - application/json
      responses:
        "200":
          description: '{"success":true,"data":{},"msg":"注册成功"}'
          schema:
            type: string
      summary: 注册工作流
      tags:
      - workflow
Mr.奇淼('s avatar
swagger  
Mr.奇淼( 已提交
1441
swagger: "2.0"