update modules/core: mod 2 files

This commit is contained in:
jack ning
2025-06-04 15:41:25 +08:00
parent 41957021e1
commit ebdbb8d424
2 changed files with 5 additions and 5 deletions

View File

@@ -44,14 +44,14 @@ public class TagEntity extends BaseEntity {
private String description = I18Consts.I18N_DESCRIPTION;
@Builder.Default
@Column(name = "tag_type", nullable = false)
@Column(name = "tag_type")
private String type = TagTypeEnum.CUSTOMER.name();
@Builder.Default
@Column(name = "tag_color", nullable = false)
@Column(name = "tag_color")
private String color = "red";
@Builder.Default
@Column(name = "tag_order", nullable = false)
@Column(name = "tag_order")
private Integer order = 0;
}

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-05-11 18:26:12
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-06-04 15:35:13
* @LastEditTime: 2025-06-04 15:36:28
* @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.
@@ -39,6 +39,6 @@ public class TagResponse extends BaseResponse {
private String color;
// private Integer order;
private Integer order;
}