forked from luyan/epmet-cloud-lingshan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
376 B
27 lines
376 B
6 years ago
|
package com.epmet.dto;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
/**
|
||
|
* @Auther zxc
|
||
|
* @Create 2020-04-26 17:52
|
||
|
*/
|
||
|
@Data
|
||
|
public class UserHeadPhotoDTO implements Serializable {
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* 用户id
|
||
|
*/
|
||
|
private String userId;
|
||
|
|
||
|
/**
|
||
|
* 头像地址
|
||
|
*/
|
||
|
private String userHeadPhoto;
|
||
|
|
||
|
}
|