list.md 5.26 KB

计划书列表

OpenAPI Specification

openapi: 3.0.1
info:
  title: ''
  version: 1.0.0
paths:
  /srv/:
    get:
      summary: 计划书列表
      deprecated: false
      description: ''
      tags:
        - 计划书
      parameters:
        - name: f
          in: query
          description: ''
          required: false
          example: manulife
          schema:
            type: string
        - name: a
          in: query
          description: ''
          required: false
          example: proposal
          schema:
            type: string
        - name: t
          in: query
          description: ''
          required: false
          example: list
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                  data:
                    type: object
                    properties:
                      list:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                            customer_name:
                              type: string
                              title: 申请人
                            product_name:
                              type: string
                              title: 产品名
                            created_time:
                              type: string
                              title: 创建时间
                            order_status:
                              type: string
                              title: 状态
                            categories:
                              type: array
                              items:
                                type: string
                              title: 分类
                            proposal_files:
                              type: array
                              items:
                                type: object
                                properties:
                                  id:
                                    type: integer
                                  file_url:
                                    type: string
                                    title: 地址
                                  file_name:
                                    type: string
                                    title: 名称
                                  file_size:
                                    type: integer
                                    title: 大小
                                  created_time:
                                    type: string
                                    title: 创建时间
                                x-apifox-orders:
                                  - id
                                  - file_url
                                  - file_name
                                  - file_size
                                  - created_time
                              title: 生成的计划书
                          x-apifox-orders:
                            - id
                            - customer_name
                            - product_name
                            - created_time
                            - order_status
                            - categories
                            - proposal_files
                        title: 几乎书列表
                      total:
                        type: integer
                        title: 总数
                    required:
                      - list
                      - total
                    x-apifox-orders:
                      - list
                      - total
                required:
                  - code
                  - msg
                  - data
                x-apifox-orders:
                  - code
                  - msg
                  - data
              example:
                code: 1
                msg: 获取成功
                data:
                  list:
                    - id: 123
                      customer_name: 张三
                      product_name: 终身寿险
                      created_time: '2026-02-09 10:30:00'
                      order_status: '3'
                      categories:
                        - 寿险
                        - 长期
                      proposal_files:
                        - id: 456
                          file_url: https://example.com/file.pdf
                          file_name: 计划书.pdf
                          file_size: 1024000
                          created_time: '2026-02-09 11:00:00'
                  total: 1
          headers: {}
          x-apifox-name: 成功
          x-apifox-ordering: 0
      security: []
      x-apifox-folder: 计划书
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/7792797/apis/api-417311013-run
components:
  schemas: {}
  responses: {}
  securitySchemes: {}
servers:
  - url: https://manulife.onwall.cn
    description: 正式环境
security: []