package com.lunhan.water.entity.weixin; import lombok.Data; @Data public class AccessTokenDto { private String access_token; private String expires_in; private String refresh_token; private String openid; private String scope; }