修改逻辑删除 参数错误问题
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user