liulin
2025-07-02 b9f0f641b85bbbfe74fc23efe4f4965586d9e3af
1
2
3
4
5
6
7
8
9
10
11
12
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;
}