All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cory.vo.UserVO Maven / Gradle / Ivy

There is a newer version: 0.0.35
Show newest version
package com.cory.vo;

import com.cory.context.CorySystemContext;
import lombok.Builder;
import lombok.Data;

import java.io.Serializable;
import java.util.Date;
import java.util.List;
import java.util.Set;

/**
 * Created by Cory on 2017/5/22.
 */
@Data
@Builder
public class UserVO implements Serializable {

    private static final long serialVersionUID = 1134850500408091656L;

    private Integer id;
    private String userName;
    private String nickName;
    private String phone;
    private String email;
    private String role;
    private String avatar;
    private Set resources;
    private List modelMetaList;
    private Set enumMetaSet;
    private Date lastLogonTime;
    private String lastLogonIp;
    private Boolean lastLogonSuccess;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy