This commit is contained in:
77
2024-04-17 23:09:24 +08:00
parent 447ad89233
commit 5d9f189bee
11 changed files with 153 additions and 19 deletions

View File

@@ -0,0 +1,12 @@
package com.ruoyi.yunxin.req;
import lombok.Data;
@Data
public class MuteModuleReq {
private String accid;
private Boolean muteP2P;
private Boolean muteTeam = true;
private Boolean muteRoom = true;
private Boolean muteQChat = true;
}