This commit is contained in:
77
2024-08-03 19:56:22 +08:00
parent 4fc5fdc77f
commit 3706411b80
14 changed files with 150 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package com.ruoyi.cai.dto.app.vo.top;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class AnchorTopResp {
@Schema(description = "置顶是否成功")
private boolean topSuccess;
@Schema(description = "下一次置顶间隔(秒)")
private Long nextTopDate = 0L;
}