27 lines
607 B
Java
27 lines
607 B
Java
package com.bao.dating.pojo.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 用户信息更新数据传输对象
|
|
* @author KilLze
|
|
*/
|
|
@Data
|
|
public class UserInfoUpdateDTO implements Serializable {
|
|
private Long userId;
|
|
private String userName;
|
|
private String nickname;
|
|
private String avatarUrl;
|
|
private String backgroundUrl;
|
|
private Integer gender;
|
|
private LocalDate birthday;
|
|
private List<String> hobbies;
|
|
private String signature;
|
|
private LocalDateTime updatedAt;
|
|
}
|