TokenResponseVo.java 368 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 package com.ruoyi.pojo.response; import lombok.Data; /** * token接收 * @author 20412 */ @Data public class TokenResponseVo { /** * 生成的accessToken(此Token仅用于获取员工数据及获取临时照片下载地址) */ String accessToken; /** * :accessToken的有效期为7200秒(2小时) */ Long expireIn; }