|
|
|
@ -1,19 +1,15 @@
|
|
|
|
|
package com.luoo.user.pojo;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.luoo.user.util.EmojiConverterUtil;
|
|
|
|
|
import lombok.*;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Id;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.luoo.user.util.EmojiConverterUtil;
|
|
|
|
|
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Getter
|
|
|
|
@ -186,5 +182,10 @@ public class UserInfo implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
private String userName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 用户type
|
|
|
|
|
*/
|
|
|
|
|
private Integer type;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|