package com.xinquan.system.domain.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "ContentSettingVO对象", description = "内容设置视图对象")
|
public class ContentSettingVO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty(value = "内容id")
|
private Long id;
|
|
@ApiModelProperty(value = "内容类型 1=用户协议 2=隐私协议 3=关于心泉 4= 新手冥想指南 5=课程/冥想音频购买协议")
|
private Integer contentType;
|
|
@ApiModelProperty(value = "内容")
|
private String content;
|
|
}
|