Files
cai-server/ruoyi-yunxin/src/main/java/com/ruoyi/yunxin/req/SetSpecialRelationReq.java
2024-04-21 23:16:10 +08:00

14 lines
279 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.yunxin.req;
import lombok.Data;
@Data
public class SetSpecialRelationReq {
private String accid;
private String targetAcc;
private Integer relationType = 1;
// 0 取消拉黑或静音1 加入黑名单或静音
private Integer value;
}