应急大屏开屏动画接口
This commit is contained in:
+26
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user