日志切面功能整合

This commit is contained in:
Tankaikai
2025-02-13 14:33:22 +08:00
parent 8d8e338da8
commit ab5aa954ad
7 changed files with 35 additions and 27 deletions

View File

@@ -22,6 +22,10 @@ public class OperationLogDTO implements Serializable {
* id
*/
private Long id;
/**
* 店铺id
*/
private Long shopId;
/**
* 日志类型 info-正常日志 error-异常日志
*/

View File

@@ -28,6 +28,10 @@ public class OperationLog implements Serializable {
*/
@Id(keyType = KeyType.Generator, value = KeyGenerators.snowFlakeId)
private Long id;
/**
* 店铺id
*/
private Long shopId;
/**
* 日志类型 info-正常日志 error-异常日志
*/