装修接口

This commit is contained in:
shuo.wang
2025-07-25 09:35:08 +08:00
parent 3ab154600c
commit e93ec15dc2
7 changed files with 99 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
package com.cool.store.dto;
import lombok.Data;
/**
* @Author: WangShuo
* @Date: 2025/07/24/17:19
* @Version 1.0
* @注释:
*/
@Data
public class HqtTokenDTO {
private String access_token;
private String token_type;
private Long expires_in;
private String scope;
private String endPoint;
private String client_id;
}