Commit 5d95d33c by “Kongxiangkun”

留言管理增加图片和视频链接地址

parent aca2f733
......@@ -78,6 +78,12 @@ public class LeaveWordVo extends Model<LeaveWordVo> {
@ApiModelProperty(value = "姓名")
private String fullName;
@ApiModelProperty(value = "图片链接地址")
private String ossPicUrl;
@ApiModelProperty(value = "视频链接地址")
private String ossVideoUrl;
@Override
protected Serializable pkVal() {
......
......@@ -107,4 +107,12 @@ public class LeaveWord extends Model<LeaveWord> {
@ApiModelProperty(value = "是否删除(0:否,1:是)")
@TableLogic
private Integer deleted;
@ApiModelProperty(value = "视频链接地址")
@TableField("oss_video_url")
private String ossVideoUrl;
@ApiModelProperty(value = "图片链接地址")
@TableField("oss_pic_url")
private String ossPicUrl;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment