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

com.lframework.starter.web.dto.UserInfoDto Maven / Gradle / Ivy

package com.lframework.starter.web.dto;

import java.io.Serializable;
import lombok.Data;

/**
 * 用户信息 Dto
 *
 * @author zmj
 */
@Data
public class UserInfoDto implements BaseDto, Serializable {

  public static final String CACHE_NAME = "UserInfoDto";

  /**
   * ID
   */
  private String id;

  /**
   * 登录名
   */
  private String username;

  /**
   * 编号
   */
  private String code;

  /**
   * 姓名
   */
  private String name;

  /**
   * 邮箱
   */
  private String email;

  /**
   * 联系电话
   */
  private String telephone;

  /**
   * 性别
   */
  private Integer gender;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy