| | |
| | | package com.xinquan.meditation.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.xinquan.meditation.domain.MeditationVideo; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.io.Serializable; |
| | |
| | | |
| | | @ApiModelProperty(value = "每日冥想背景图片") |
| | | private String imageUrl; |
| | | @ApiModelProperty(value = "音频时长") |
| | | private Integer time; |
| | | |
| | | @ApiModelProperty(value = "每日冥想") |
| | | private ClientMeditationVO clientMeditationVO; |
| | | @ApiModelProperty(value = "0展示每日疗愈 1展示微电影") |
| | | private Integer isShow; |
| | | @ApiModelProperty(value = "微电影") |
| | | private MeditationVideo meditationVideo; |
| | | } |