mitao
2024-09-09 cf98926793932b132000e237a487ba4343084410
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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;
 
}