feature:修改电子税局账号登陆日志为info

jianshui-ui
路明慧 9 months ago
parent 06630148a7
commit 13fa1d64b1
  1. 8
      jianshui-admin/src/main/java/com/jianshui/api/controller/http/invoice/v1/InvoiceFrontController.java

@ -51,7 +51,7 @@ public class InvoiceFrontController {
JSONObject paramJson = new JSONObject(params);
log.debug("rpaLogin param{}", paramJson.toJSONString());
log.info("rpaLogin param{}", paramJson.toJSONString());
//参数校验
if (StringUtils.isBlank(paramJson.getString("identity"))){
@ -118,7 +118,7 @@ public class InvoiceFrontController {
String identity = paramJson.getString("identity");
String secret = paramJson.getString("secret");
log.debug("queryRpaTaxAccount param identity:{} secret:{}",identity,secret);
log.info("queryRpaTaxAccount param identity:{} secret:{}",identity,secret);
//参数校验
if (StringUtils.isBlank(identity)){
return AjaxResult.error("公司ID不能为空");
@ -149,7 +149,7 @@ public class InvoiceFrontController {
public Object getRpaQrCode(@RequestBody Map<String,Object> params) {
JSONObject paramJson = new JSONObject(params);
log.debug("getRpaQrCode param params:{}", paramJson);
log.info("getRpaQrCode param params:{}", paramJson);
String identity = paramJson.getString("identity");
String secret = paramJson.getString("secret");
@ -190,7 +190,7 @@ public class InvoiceFrontController {
JSONObject paramJson = new JSONObject(params);
log.debug("getRpaAuthStatus param{}", paramJson.toJSONString());
log.info("getRpaAuthStatus param{}", paramJson.toJSONString());
String identity = paramJson.getString("identity");
String secret = paramJson.getString("secret");

Loading…
Cancel
Save