File was renamed from xinquan-modules/xinquan-meditation/src/main/java/com/xinquan/meditation/domain/MeditationQuestion.java |
| | |
| | | package com.xinquan.meditation.domain; |
| | | package com.xinquan.system.api.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.xinquan.common.core.web.domain.BaseModel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @ApiModelProperty(value = "提问内容") |
| | | @TableField("content") |
| | | private String content; |
| | | @ApiModelProperty(value = "uid") |
| | | @TableField(exist = false) |
| | | private String uid; |
| | | @ApiModelProperty(value = "用户名称") |
| | | @TableField(exist = false) |
| | | private String userName; |
| | | @ApiModelProperty(value = "用户头像") |
| | | @TableField(exist = false) |
| | | private String avatar; |
| | | @ApiModelProperty(value = "用户手机号") |
| | | @TableField(exist = false) |
| | | private String cellPhone; |
| | | @ApiModelProperty(value = "疗愈名称") |
| | | @TableField(exist = false) |
| | | private String meditationName; |
| | | @ApiModelProperty(value = "关联疗愈所属分类名称") |
| | | @TableField(exist = false) |
| | | private String meditationCategoryName; |
| | | @ApiModelProperty(value = "价格设定 1=免费 2=会员免费 3=单独收费") |
| | | @TableField(exist = false) |
| | | private Integer chargeType; |
| | | |
| | | @ApiModelProperty(value = "提问时间") |
| | | @TableField("publish_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | private LocalDateTime publishTime; |
| | | |
| | | @ApiModelProperty(value = "用户id") |
| | |
| | | |
| | | @ApiModelProperty(value = "回复时间") |
| | | @TableField("reply_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | |
| | | private LocalDateTime replyTime; |
| | | |
| | | @ApiModelProperty(value = "是否显示 1= 是 2=否") |
| | |
| | | @TableField("report_status") |
| | | private Integer reportStatus; |
| | | |
| | | @ApiModelProperty(value = "举报原因") |
| | | @TableField("report_content") |
| | | private String reportContent; |
| | | |
| | | @ApiModelProperty(value = "举报人") |
| | | @TableField("report_user_id") |
| | | private Long reportUserId; |
| | | |
| | | |
| | | } |