1.修改测试环境配置

2.修改country_info 表名为server_country_info
3.修改new_hosts表名为
server_new_hosts
This commit is contained in:
2025-06-16 13:29:00 +08:00
parent 3d0c702034
commit 6268391baf
7 changed files with 36 additions and 27 deletions

View File

@@ -42,8 +42,10 @@ public class LogInterceptor {
Object[] args = point.getArgs();
String reqParam = "[" + StringUtils.join(args, ", ") + "]";
// 输出请求日志
log.info("request startid: {}, path: {}, ip: {}, params: {}", requestId, url,
httpServletRequest.getRemoteHost(), reqParam);
// log.info("request startid: {}, path: {}, ip: {}, params: {}", requestId, url,
// httpServletRequest.getRemoteHost(), reqParam);
log.info("request startid: {}, path: {}, ip: {}", requestId, url,
httpServletRequest.getRemoteHost());
// 执行原方法
Object result = point.proceed();
// 输出响应日志

View File

@@ -88,6 +88,12 @@ public class NewHosts {
@ApiModelProperty(value = "租户 Id", example = "1")
private Long tenantId;
/**
* 租户 Id
*/
@ApiModelProperty(value = "租户 Id", example = "1")
private Long userId;
/**
* 入库人
*/