update modules/core: mod 7 files

This commit is contained in:
jack ning
2025-04-09 22:06:01 +08:00
parent 2c488d9264
commit 2d6a691ec1
5 changed files with 30 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-01-29 16:21:24
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-03-20 12:39:40
* @LastEditTime: 2025-04-09 21:37:11
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesa
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
@@ -93,6 +93,7 @@ public abstract class BaseEntity implements Serializable {
private LocalDateTime updatedAt;
// soft delete
@Builder.Default
@Column(name = "is_deleted")
private boolean deleted = false;

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-01-29 16:21:24
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-03-20 12:39:49
* @LastEditTime: 2025-04-09 21:37:34
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesa
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
@@ -93,6 +93,7 @@ public abstract class BaseEntityNoOrg implements Serializable {
/**
* soft delete
*/
@Builder.Default
@Column(name = "is_deleted")
private boolean deleted = false;

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-01-29 16:21:24
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-03-21 12:53:56
* @LastEditTime: 2025-04-09 21:37:46
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
@@ -62,6 +62,7 @@ public abstract class BaseRequest implements Serializable {
/**
* 每页大小默认10
*/
@Builder.Default
protected int pageSize = 10;
/**