InterfaceUserVo.java 513 B

12345678910111213141516171819202122232425
  1. package jnpf.base.model.InterfaceOauth;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * 授权用户展示
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.4.7
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2021/9/20 9:22
  11. */
  12. @Data
  13. public class InterfaceUserVo {
  14. @Schema(description = "用户id")
  15. private String userId;
  16. @Schema(description = "用户名称")
  17. private String userName;
  18. @Schema(description = "用户密钥")
  19. private String userKey;
  20. }