123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- definitions:
- base.HTTPError:
- properties:
- code:
- example: 500
- format: int
- type: integer
- msg:
- example: status bad request
- type: string
- type: object
- info:
- contact: {}
- license: {}
- paths:
- /Regist.Asfx:
- post:
- consumes:
- - multipart/form-data
- description: 门禁人员注册
- parameters:
- - description: ' '
- in: formData
- name: Idno
- type: string
- - description: ' '
- in: formData
- name: Name
- type: string
- - description: ' '
- in: formData
- name: gender
- type: integer
- - description: ' '
- in: formData
- name: nation
- type: string
- - description: ' '
- in: formData
- name: birthday
- type: string
- - description: ' '
- in: formData
- name: address
- type: string
- - description: ' '
- in: formData
- name: idissue
- type: string
- - description: ' '
- in: formData
- name: idperiod
- type: string
- - description: ' '
- in: formData
- name: idphoto
- type: string
- - description: ' '
- in: formData
- name: photo
- type: string
- - description: ' '
- in: formData
- name: inf_photo
- type: string
- - description: ' '
- in: formData
- name: userType
- type: integer
- - description: ' '
- in: formData
- name: dev_mac
- type: string
- - description: ' '
- in: formData
- name: RegType
- type: integer
- produces:
- - application/json
- responses:
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁人员注册
- tags:
- - 门禁
- /Service/DistinguishWebSvr.assx/UploadCarData:
- post:
- consumes:
- - multipart/form-data
- description: 运渣车实时数据上传
- parameters:
- - description: ' '
- in: formData
- name: carInfo
- type: string
- - description: ' '
- in: formData
- name: image
- type: file
- - description: ' '
- in: formData
- name: image1
- type: file
- - description: ' '
- in: formData
- name: image2
- type: file
- - description: ' '
- in: formData
- name: image3
- type: file
- - description: ' '
- in: formData
- name: cleanImage
- type: file
- produces:
- - application/json
- responses:
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 运渣车实时数据上传
- tags:
- - 运渣车
- /httpserver/Service/DevivePacketWebSvr.assx/FeedBack:
- post:
- consumes:
- - multipart/form-data
- description: 确认信息
- parameters:
- - description: ' '
- in: query
- name: type
- type: integer
- - description: ' '
- in: query
- name: sn
- type: string
- - description: ' '
- in: query
- name: msg
- type: string
- produces:
- - application/json
- responses:
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 确认信息
- tags:
- - 门禁
- /httpserver/Service/DevivePacketWebSvr.assx/GetAddPerson:
- get:
- consumes:
- - multipart/form-data
- description: 门禁人员批量下发
- parameters:
- - description: ' '
- in: query
- name: sn
- type: string
- produces:
- - application/json
- responses:
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 门禁
- tags:
- - 门禁
- /httpserver/Service/DevivePacketWebSvr.assx/GetDelPerson:
- get:
- consumes:
- - multipart/form-data
- description: 删除员工
- parameters:
- - description: ' '
- in: query
- name: sn
- type: string
- produces:
- - application/json
- responses:
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 删除员工
- tags:
- - 门禁
- /httpserver/Service/DevivePacketWebSvr.assx/UploadAttendance:
- post:
- consumes:
- - multipart/form-data
- description: 上传实时数据
- parameters:
- - description: ' '
- in: query
- name: sn
- type: string
- - description: ' '
- in: query
- name: content
- type: string
- produces:
- - application/json
- responses:
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 上传实时数据
- tags:
- - 门禁
- swagger: "2.0"
|