123
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.ruoyi.cai.dto.app.vo.user;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Schema(description = "群打招呼")
|
||||
public class UserGreetListVo {
|
||||
|
||||
@Schema(description = "ID")
|
||||
private Long id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "用户ID")
|
||||
private Long userId;
|
||||
/**
|
||||
* 标题
|
||||
*/
|
||||
@Schema(description = "内容")
|
||||
private String title;
|
||||
/**
|
||||
* 审核状态
|
||||
*/
|
||||
@Schema(description = "审核状态 1 审核中, 2 审核通过, 3 审核不通过")
|
||||
private Integer auditStatus;
|
||||
|
||||
}
|
||||
@@ -1,28 +1,14 @@
|
||||
package com.ruoyi.cai.dto.app.vo.user;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Schema(description = "群打招呼")
|
||||
public class UserGreetVo {
|
||||
import java.util.List;
|
||||
|
||||
@Schema(description = "ID")
|
||||
private Long id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "用户ID")
|
||||
private Long userId;
|
||||
/**
|
||||
* 标题
|
||||
*/
|
||||
@Schema(description = "内容")
|
||||
private String title;
|
||||
/**
|
||||
* 审核状态
|
||||
*/
|
||||
@Schema(description = "审核状态 1 审核中, 2 审核通过, 3 审核不通过")
|
||||
private Integer auditStatus;
|
||||
@Data
|
||||
public class UserGreetVo {
|
||||
private Integer allowSend;
|
||||
private Integer count;
|
||||
|
||||
private List<UserGreetListVo> list;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user