接口文档更新
parent
8468308a01
commit
886be14516
@ -1,54 +0,0 @@
|
||||
package com.glxp.udidl.admin.controller.auth;
|
||||
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
||||
import com.glxp.udidl.admin.entity.auth.AuthAdmin;
|
||||
import com.glxp.udidl.admin.req.udid.TokenRequest;
|
||||
import com.glxp.udidl.admin.res.BaseResponse;
|
||||
import com.glxp.udidl.admin.res.auth.LoginUserInfoResponse;
|
||||
import com.glxp.udidl.admin.service.dataSync.DeviceDownloadService;
|
||||
import com.glxp.udidl.admin.util.ResultVOUtils;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import java.util.List;
|
||||
|
||||
@RestController
|
||||
public class AuthUdiTokenController {
|
||||
|
||||
|
||||
@Resource
|
||||
DeviceDownloadService deviceDownloadService;
|
||||
|
||||
|
||||
@AuthRuleAnnotation("")
|
||||
@PostMapping("/admin/auth/udi/token")
|
||||
public BaseResponse vailUdiToken(@RequestBody TokenRequest tokenRequest) {
|
||||
|
||||
|
||||
if (StrUtil.isEmpty(tokenRequest.getTyshxydm())) {
|
||||
return ResultVOUtils.error(500, "统一社会信用代码不能为空!");
|
||||
}
|
||||
|
||||
if (StrUtil.isEmpty(tokenRequest.getAppId())) {
|
||||
return ResultVOUtils.error(500, "appId不能为空!");
|
||||
}
|
||||
|
||||
if (StrUtil.isEmpty(tokenRequest.getAppSecret())) {
|
||||
return ResultVOUtils.error(500, "appSecret不能为空!");
|
||||
}
|
||||
String data = deviceDownloadService.getTokenNow(tokenRequest);
|
||||
if (data.contains("验证成功")) {
|
||||
return ResultVOUtils.success("验证成功!");
|
||||
} else {
|
||||
return ResultVOUtils.error(500, data);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.glxp.udidl.admin.req;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SyncCompanyReuqest {
|
||||
|
||||
@ApiModelProperty(value = "更新时间", required = true)
|
||||
private String updateTime;
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package com.glxp.udidl.admin.req;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SyncUdiRequest extends ListPageRequest {
|
||||
@ApiModelProperty(value = "医疗器械注册备案人名称")
|
||||
private String ylqxzcrbarmc;
|
||||
|
||||
@ApiModelProperty(value = "统一社会信用代码")
|
||||
private String tyshxydm;
|
||||
|
||||
@ApiModelProperty(value = "更新时间", required = true)
|
||||
private String updateTime;
|
||||
|
||||
}
|
@ -1,13 +1,16 @@
|
||||
package com.glxp.udidl.admin.req.udid;
|
||||
|
||||
import com.alibaba.fastjson.annotation.JSONField;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TokenRequest {
|
||||
|
||||
@ApiModelProperty(value = "应用码", required = true)
|
||||
private String appId;
|
||||
@ApiModelProperty(value = "应用授权码", required = true)
|
||||
private String appSecret;
|
||||
@ApiModelProperty(value = "统一社会信用代码", required = true)
|
||||
@JSONField(name = "TYSHXYDM")
|
||||
private String tyshxydm;//统一社会信用代码 必须大写
|
||||
}
|
||||
|
Loading…
Reference in New Issue