fix: 修复网关启动找不到服务的问题,修复jwt问题,修复自动导入失败问题。
This commit is contained in:
@@ -19,7 +19,6 @@
|
||||
|
||||
package cn.meowrain.aioj.backend.upms.api.entity;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import jakarta.validation.constraints.NotBlank;
|
||||
@@ -41,14 +40,14 @@ import java.time.LocalDateTime;
|
||||
@Schema(description = "日志")
|
||||
public class SysLog implements Serializable {
|
||||
|
||||
@Serial
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 编号
|
||||
*/
|
||||
@TableId(type = IdType.ASSIGN_ID)
|
||||
// @ExcelProperty("日志编号")
|
||||
// @ExcelProperty("日志编号")
|
||||
@Schema(description = "日志编号")
|
||||
private Long id;
|
||||
|
||||
@@ -56,7 +55,7 @@ public class SysLog implements Serializable {
|
||||
* 日志类型
|
||||
*/
|
||||
@NotBlank(message = "日志类型不能为空")
|
||||
// @ExcelProperty("日志类型(0-正常 9-错误)")
|
||||
// @ExcelProperty("日志类型(0-正常 9-错误)")
|
||||
@Schema(description = "日志类型")
|
||||
private String logType;
|
||||
|
||||
@@ -64,14 +63,14 @@ public class SysLog implements Serializable {
|
||||
* 日志标题
|
||||
*/
|
||||
@NotBlank(message = "日志标题不能为空")
|
||||
// @ExcelProperty("日志标题")
|
||||
// @ExcelProperty("日志标题")
|
||||
@Schema(description = "日志标题")
|
||||
private String title;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
// @ExcelProperty("创建人")
|
||||
// @ExcelProperty("创建人")
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
@Schema(description = "创建人")
|
||||
private String createBy;
|
||||
@@ -79,7 +78,7 @@ public class SysLog implements Serializable {
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
// @ExcelProperty("创建时间")
|
||||
// @ExcelProperty("创建时间")
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
@Schema(description = "创建时间")
|
||||
private LocalDateTime createTime;
|
||||
@@ -87,7 +86,7 @@ public class SysLog implements Serializable {
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
// @ExcelIgnore
|
||||
// @ExcelIgnore
|
||||
@TableField(fill = FieldFill.UPDATE)
|
||||
@Schema(description = "更新时间")
|
||||
private LocalDateTime updateTime;
|
||||
@@ -95,7 +94,7 @@ public class SysLog implements Serializable {
|
||||
/**
|
||||
* 操作IP地址
|
||||
*/
|
||||
// @ExcelProperty("操作ip地址")
|
||||
// @ExcelProperty("操作ip地址")
|
||||
@Schema(description = "操作ip地址")
|
||||
private String remoteAddr;
|
||||
|
||||
@@ -108,42 +107,42 @@ public class SysLog implements Serializable {
|
||||
/**
|
||||
* 请求URI
|
||||
*/
|
||||
// @ExcelProperty("浏览器")
|
||||
// @ExcelProperty("浏览器")
|
||||
@Schema(description = "请求uri")
|
||||
private String requestUri;
|
||||
|
||||
/**
|
||||
* 操作方式
|
||||
*/
|
||||
// @ExcelProperty("操作方式")
|
||||
// @ExcelProperty("操作方式")
|
||||
@Schema(description = "操作方式")
|
||||
private String method;
|
||||
|
||||
/**
|
||||
* 操作提交的数据
|
||||
*/
|
||||
// @ExcelProperty("提交数据")
|
||||
// @ExcelProperty("提交数据")
|
||||
@Schema(description = "提交数据")
|
||||
private String params;
|
||||
|
||||
/**
|
||||
* 执行时间
|
||||
*/
|
||||
// @ExcelProperty("执行时间")
|
||||
// @ExcelProperty("执行时间")
|
||||
@Schema(description = "方法执行时间")
|
||||
private Long time;
|
||||
|
||||
/**
|
||||
* 异常信息
|
||||
*/
|
||||
// @ExcelProperty("异常信息")
|
||||
// @ExcelProperty("异常信息")
|
||||
@Schema(description = "异常信息")
|
||||
private String exception;
|
||||
|
||||
/**
|
||||
* 服务ID
|
||||
*/
|
||||
// @ExcelProperty("应用标识")
|
||||
// @ExcelProperty("应用标识")
|
||||
@Schema(description = "应用标识")
|
||||
private String serviceId;
|
||||
|
||||
@@ -151,7 +150,7 @@ public class SysLog implements Serializable {
|
||||
* 删除标记
|
||||
*/
|
||||
@TableLogic
|
||||
// @ExcelIgnore
|
||||
// @ExcelIgnore
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
@Schema(description = "删除标记,1:已删除,0:正常")
|
||||
private String delFlag;
|
||||
|
||||
@@ -10,12 +10,14 @@ import org.springframework.web.bind.annotation.RequestBody;
|
||||
|
||||
@FeignClient(contextId = "remoteLogService", value = ServiceNameConstants.UPMS_SERVICE)
|
||||
public interface RemoteLogService {
|
||||
/**
|
||||
* 保存日志 (异步多线程调用,无token)
|
||||
* @param sysLog 日志实体
|
||||
* @return succes、false
|
||||
*/
|
||||
@NoToken
|
||||
@PostMapping("/log/save")
|
||||
Result<Boolean> saveLog(@RequestBody SysLog sysLog);
|
||||
|
||||
/**
|
||||
* 保存日志 (异步多线程调用,无token)
|
||||
* @param sysLog 日志实体
|
||||
* @return succes、false
|
||||
*/
|
||||
@NoToken
|
||||
@PostMapping("/log/save")
|
||||
Result<Boolean> saveLog(@RequestBody SysLog sysLog);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user