文档
测试

签到添加

POST
{{url_public}}/visit/customer/sign/in

请求参数

```json /** * 医生id */ private Long doctorId; /** * 机器使用情况(最多3张) */ @ColumnType(column = "img_list", jdbcType = JdbcType.VARCHAR, typeHandler = EntityJsonListTypeHandler.class) private List<String> machineImgList; /** * 位置列表:医生经度,医生纬度,服务商经度,服务商医生纬度 { "doctorPos": { // 医生经纬度,只会存在一个 0: [101.11, 23.1212], // 医生(经度, 纬度), 正常值 1: [101.11, 23.1212] // 医生经度, 纬度, 腾讯经纬度 } "factorPos": { 0: [101.11, 23.1212] // 服务商(经度, 纬度), 正常值 } } */ private Map<String, Map<Integer, List<Double>>> positionMap; ```

响应数据

```json ```