package com.xinquan.meditation.domain.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import lombok.Data;
|
|
/**
|
* @author mitao
|
* @date 2024/9/4
|
*/
|
@Data
|
@ApiModel(value = "冥想视图对象")
|
public class ClientMeditationVO implements Serializable {
|
|
private static final long serialVersionUID = -1776068531441762518L;
|
|
@ApiModelProperty(value = "冥想id")
|
private Long id;
|
|
@ApiModelProperty(value = "冥想音频分类id")
|
private Long cateId;
|
|
@ApiModelProperty(value = "冥想标题")
|
private String meditationTitle;
|
|
@ApiModelProperty(value = "上架状态 1=上架 2=下架")
|
private Integer listingStatus;
|
|
@ApiModelProperty(value = "梵文 1=是 2否")
|
private Integer sanskrit;
|
|
@ApiModelProperty(value = "价格设定 1=免费 2=会员免费 3=单独收费")
|
private Integer chargeType;
|
|
@ApiModelProperty(value = "是否已付费 1:是 2:否")
|
private Integer paidStatus = 2;
|
|
@ApiModelProperty(value = "通用价格", notes = "价格设定为单独收费")
|
private BigDecimal generalPrice;
|
|
@ApiModelProperty(value = "IOS内购价格", notes = "价格设定为单独收费")
|
private BigDecimal iosPrice;
|
|
@ApiModelProperty(value = "排序权重")
|
private Integer sortNum;
|
|
@ApiModelProperty(value = "实际已学习数")
|
private Integer realLearnedNum;
|
|
@ApiModelProperty(value = "虚拟已学习数")
|
private Integer virtualLearnedNum;
|
|
@ApiModelProperty(value = "icon封面图")
|
private String iconUrl;
|
|
@ApiModelProperty(value = "封面图")
|
private String coverUrl;
|
|
@ApiModelProperty(value = "背景图")
|
private String backgroundUrl;
|
|
@ApiModelProperty(value = "详情描述")
|
private String detailDescription;
|
|
@ApiModelProperty(value = "封面描述")
|
private String coverDescription;
|
|
@ApiModelProperty(value = "导师音频")
|
private String tutorAudioUrl;
|
|
@ApiModelProperty(value = "被收藏数")
|
private Integer favoriteCount;
|
|
}
|