add
wangpengfei
2023-07-13 6e8718ed56b53419c946102bb4e20a978e32e27c
docs/swagger.yaml
@@ -984,6 +984,19 @@
        description: 国家名称
        type: string
    type: object
  request.AddCustomerServiceSheet:
    properties:
      handleStatus:
        type: integer
      memberId:
        type: integer
      number:
        type: string
      priority:
        type: integer
      serviceMode:
        type: integer
    type: object
  request.AddEnterpriseNature:
    properties:
      name:
@@ -1876,6 +1889,21 @@
      name:
        description: 国家名称
        type: string
    type: object
  request.UpdateCustomerServiceSheet:
    properties:
      handleStatus:
        type: integer
      id:
        type: integer
      memberId:
        type: integer
      number:
        type: string
      priority:
        type: integer
      serviceMode:
        type: integer
    type: object
  request.UpdateEnterpriseNature:
    properties:
@@ -3357,6 +3385,74 @@
      summary: 更新国家
      tags:
      - Country
  /api/customerServiceSheet/add:
    post:
      parameters:
      - description: 查询参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.AddCustomerServiceSheet'
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            $ref: '#/definitions/contextx.Response'
      summary: 添加客服单
      tags:
      - CustomerServiceSheet
  /api/customerServiceSheet/delete/{id}:
    delete:
      parameters:
      - description: 查询参数
        in: path
        name: id
        required: true
        type: integer
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            $ref: '#/definitions/contextx.Response'
      summary: 删除客服单
      tags:
      - CustomerServiceSheet
  /api/customerServiceSheet/list:
    get:
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            $ref: '#/definitions/contextx.Response'
      summary: 获取客服单列表
      tags:
      - CustomerServiceSheet
  /api/customerServiceSheet/update/{id}:
    put:
      parameters:
      - description: 查询参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.UpdateCustomerServiceSheet'
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            $ref: '#/definitions/contextx.Response'
      summary: 更新客服单
      tags:
      - CustomerServiceSheet
  /api/enterpriseNature/add:
    post:
      parameters: