| 123456789101112131415161718 |
- package space.anyi.serve.entity.post;
- import io.swagger.v3.oas.annotations.media.Schema;
- @Schema(description = "创建帖子结果视图")
- public class CreatePostVo {
- @Schema(description = "帖子ID")
- private String id;
- public CreatePostVo() {}
- public CreatePostVo(String id) {
- this.id = id;
- }
- public String getId() { return id; }
- public void setId(String id) { this.id = id; }
- }
|