This commit is contained in:
dute7liang
2023-12-30 21:19:44 +08:00
parent 6e56989d0f
commit 6c856eebfb
6 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.ruoyi.cai.dto.app.query;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
@Schema(description = "拉黑入参")
public class BlackQuery {
@Schema(description = "拉黑的用户的ID")
private Long blackUserId;
@Schema(description = "1-拉黑 2-取消拉黑")
private Integer actionType;
}