File was renamed from xinquan-api/xinquan-api-system/src/main/java/com/xinquan/system/api/domain/MeditationQuestion.java |
| | |
| | | package com.xinquan.system.api.domain; |
| | | package com.xinquan.meditation.api.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | |
| | | @ApiModelProperty(value = "是否收藏 1=是 2=否") |
| | | @TableField("favorite") |
| | | private Integer favorite; |
| | | @ApiModelProperty(value = "1回复 2编辑") |
| | | @TableField(exist = false) |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "提问内容") |
| | | @TableField("content") |
| | | private String content; |
| | | |
| | | @ApiModelProperty(value = "uid") |
| | | @TableField(exist = false) |
| | | private String uid; |
| | |
| | | @ApiModelProperty(value = "用户手机号") |
| | | @TableField(exist = false) |
| | | private String cellPhone; |
| | | @ApiModelProperty(value = "提问内容") |
| | | @TableField("content") |
| | | private String content; |
| | | @ApiModelProperty(value = "回复内容") |
| | | @TableField("reply_content") |
| | | private String replyContent; |
| | | @ApiModelProperty(value = "疗愈封面图") |
| | | @TableField(exist = false) |
| | | private String coverUrl; |
| | | @ApiModelProperty(value = "疗愈名称") |
| | | @TableField(exist = false) |
| | | private String meditationName; |
| | |
| | | @TableField("app_user_id") |
| | | private Long appUserId; |
| | | |
| | | @ApiModelProperty(value = "回复内容") |
| | | @TableField("reply_content") |
| | | private String replyContent; |
| | | |
| | | |
| | | @ApiModelProperty(value = "回复时间") |
| | | @TableField("reply_time") |