This commit is contained in:
jack ning
2025-09-01 13:42:47 +08:00
parent e83d673d26
commit ce76e39d74
4 changed files with 16 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2025-09-01 13:33:23
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-09-01 13:33:27
* @LastEditTime: 2025-09-01 13:41:19
* @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.
@@ -31,4 +31,7 @@ import lombok.experimental.SuperBuilder;
@NoArgsConstructor
public class LeaveMsgContent extends BaseContent {
private String content;
private String status;
}

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2025-09-01 13:32:57
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-09-01 13:35:58
* @LastEditTime: 2025-09-01 13:40:57
* @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.
@@ -15,7 +15,7 @@ package com.bytedesk.core.message.content;
import com.bytedesk.core.base.BaseContent;
// import lombok.AllArgsConstructor;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@@ -27,8 +27,11 @@ import lombok.experimental.SuperBuilder;
@Getter
@Setter
@SuperBuilder
// @AllArgsConstructor
@AllArgsConstructor
@NoArgsConstructor
public class RateContent extends BaseContent {
private String content;
private String status;
}

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2025-09-01 13:32:36
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-09-01 13:36:05
* @LastEditTime: 2025-09-01 13:41:43
* @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.
@@ -31,4 +31,5 @@ import lombok.experimental.SuperBuilder;
@NoArgsConstructor
public class RobotStreamContent extends BaseContent {
private String content;
}

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2025-09-01 13:33:44
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-09-01 13:36:09
* @LastEditTime: 2025-09-01 13:41:14
* @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.
@@ -31,4 +31,7 @@ import lombok.experimental.SuperBuilder;
@NoArgsConstructor
public class TransferContent extends BaseContent {
private String content;
private String status;
}