Commit d7623caa authored by zhangyanduan's avatar zhangyanduan

add::上传接口增加日志输出

parent 5599ef16
package org.rcisoft.integration.jieLink.Controller;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
......@@ -30,6 +31,9 @@ public class JieLinkInterController {
@ApiOperation(value="捷顺对接集成-门禁数据上传", notes="门禁数据上传")
@PostMapping(value = "/doorrecord")
public JieLinkResultDto addDoorrecord(@RequestBody JieLinkDoorRecordDto recodeDto) {
log.info("=============================jieLink=====================================");
log.info(JSONObject.toJSONString(recodeDto));
log.info("=============================jieLink=====================================");
JieLinkResultDto result = new JieLinkResultDto();
if(recodeDto!=null && StringUtils.isNotBlank(recodeDto.getRecordId())){
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment