| | |
| | | name: |
| | | type: string |
| | | type: object |
| | | model.IsVisit: |
| | | properties: |
| | | id: |
| | | type: integer |
| | | name: |
| | | type: string |
| | | type: object |
| | | model.MasterOrder: |
| | | properties: |
| | | client: |
| | |
| | | type: string |
| | | id: |
| | | type: integer |
| | | isVisit: |
| | | isVisitId: |
| | | type: integer |
| | | memberId: |
| | | type: integer |
| | |
| | | - follow_record |
| | | type: object |
| | | request.AddIndustry: |
| | | properties: |
| | | name: |
| | | type: string |
| | | required: |
| | | - name |
| | | type: object |
| | | request.AddIsVisit: |
| | | properties: |
| | | name: |
| | | type: string |
| | |
| | | - id |
| | | - name |
| | | type: object |
| | | request.UpdateIsVisit: |
| | | properties: |
| | | id: |
| | | type: integer |
| | | name: |
| | | type: string |
| | | required: |
| | | - id |
| | | - name |
| | | type: object |
| | | request.UpdateIsVisits: |
| | | properties: |
| | | is_visit: |
| | | items: |
| | | $ref: '#/definitions/request.UpdateIsVisit' |
| | | type: array |
| | | required: |
| | | - is_visit |
| | | type: object |
| | | request.UpdateMasterOrder: |
| | | properties: |
| | | client_id: |
| | |
| | | items: |
| | | $ref: '#/definitions/model.Industry' |
| | | type: array |
| | | isVisit: |
| | | description: 服务人员是否来过 |
| | | items: |
| | | $ref: '#/definitions/model.IsVisit' |
| | | type: array |
| | | member: |
| | | description: Member |
| | | items: |
| | |
| | | list: |
| | | items: |
| | | $ref: '#/definitions/model.Industry' |
| | | type: array |
| | | type: object |
| | | response.IsVisitResponse: |
| | | properties: |
| | | list: |
| | | items: |
| | | $ref: '#/definitions/model.IsVisit' |
| | | type: array |
| | | type: object |
| | | response.LoginResponse: |
| | |
| | | summary: 更新行业 |
| | | tags: |
| | | - Industry |
| | | /api/isVisit/add: |
| | | post: |
| | | parameters: |
| | | - description: 查询参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.AddIsVisit' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: OK |
| | | schema: |
| | | $ref: '#/definitions/contextx.Response' |
| | | summary: 添加服务人员是否来过 |
| | | tags: |
| | | - IsVisit |
| | | /api/isVisit/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: |
| | | - IsVisit |
| | | /api/isVisit/list: |
| | | get: |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: OK |
| | | schema: |
| | | allOf: |
| | | - $ref: '#/definitions/contextx.Response' |
| | | - properties: |
| | | data: |
| | | $ref: '#/definitions/response.IsVisitResponse' |
| | | type: object |
| | | summary: 获取服务人员是否来过列表 |
| | | tags: |
| | | - IsVisit |
| | | /api/isVisit/update: |
| | | put: |
| | | parameters: |
| | | - description: 查询参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.UpdateIsVisits' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: OK |
| | | schema: |
| | | $ref: '#/definitions/contextx.Response' |
| | | summary: 更新服务人员是否来过 |
| | | tags: |
| | | - IsVisit |
| | | /api/masterOrder/add: |
| | | post: |
| | | parameters: |