修改逻辑删除 参数错误问题

This commit is contained in:
zk
2026-05-19 11:49:38 +08:00
parent 84276dec05
commit 512e3cbf00
5 changed files with 5 additions and 5 deletions
@@ -53,6 +53,6 @@ public class FuncPermission {
/**
* 删除标识 0正常 非0删除
*/
@TableLogic(value = "0", delval = "new()")
@TableLogic(value = "0", delval = "UNIX_TIMESTAMP()")
private Long isDelete;
}
@@ -58,6 +58,6 @@ public class MemberProduct {
private Instant updateTime;
/** 逻辑删除 0=正常 非0=已删除 */
@TableLogic(value = "0", delval = "new()")
@TableLogic(value = "0", delval = "UNIX_TIMESTAMP()")
private Long isDelete;
}
@@ -78,6 +78,6 @@ public class RouteMenu {
/**
* 删除标识 0正常 非0删除
*/
@TableLogic(value = "0", delval = "new()")
@TableLogic(value = "0", delval = "UNIX_TIMESTAMP()")
private Long isDelete;
}
@@ -102,7 +102,7 @@ public class User {
/**
* 删除标识 0正常 非0 删除
*/
@TableLogic(value = "0", delval = "new()")
@TableLogic(value = "0", delval = "UNIX_TIMESTAMP()")
private Long isDelete;
}