feat(content): 为 IndexVlogVO 添加用户手机号和创建时间字段
This commit is contained in:
parent
800ee8e8d5
commit
3354e5e410
@ -7,6 +7,8 @@ import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.ToString;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@ -17,6 +19,8 @@ public class IndexVlogVO {
|
||||
private String memberId;
|
||||
private String avatar;
|
||||
private String nickname;
|
||||
private String phone;
|
||||
private LocalDateTime createTime;
|
||||
private String title;
|
||||
private String content;
|
||||
private String url;
|
||||
|
@ -8,6 +8,8 @@
|
||||
v.member_id,
|
||||
m.avatar,
|
||||
m.nickname,
|
||||
m.phone_encrypted as phone,
|
||||
v.create_time,
|
||||
v.title as content,
|
||||
v.url as url,
|
||||
v.cover as cover,
|
||||
@ -21,8 +23,7 @@
|
||||
v.reason as reason,
|
||||
v.file_id as fileId,
|
||||
v.status as status,
|
||||
v.first_frame_img as firstFrameImg,
|
||||
v.id as vlogId
|
||||
v.first_frame_img as firstFrameImg
|
||||
FROM
|
||||
cont_vlog v
|
||||
LEFT JOIN
|
||||
|
Loading…
x
Reference in New Issue
Block a user