应急大屏开屏动画接口

This commit is contained in:
feng
2025-12-29 13:46:04 +08:00
parent 1495841ad2
commit ab7fe2a199
5 changed files with 145 additions and 0 deletions
@@ -0,0 +1,26 @@
package com.renkang.emergency.entity.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
@Schema(title = "应急大屏开屏动画vo", description = "应急大屏开屏动画vo")
public class ScreenAnimationVO {
@Schema(title = "主键")
private String id;
/**
* 动画名称
*/
@Schema(title = "动画名称")
private String title;
/**
* 动画地址
*/
@Schema(title = "动画地址")
private String videoUrl;
/**
* 简介
*/
@Schema(title = "简介")
private String description;
}