修复jsonfield
This commit is contained in:
parent
6c98e89337
commit
ebb37a4810
@ -1,12 +1,15 @@
|
|||||||
package com.stdiet.custom.domain.wechat;
|
package com.stdiet.custom.domain.wechat;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.annotation.JSONField;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class WxAccessToken implements Serializable {
|
public class WxAccessToken implements Serializable {
|
||||||
|
@JSONField(name = "access_token")
|
||||||
private String accessToken;
|
private String accessToken;
|
||||||
|
|
||||||
|
@JSONField(name = "expires_in")
|
||||||
private Integer expiresIn;
|
private Integer expiresIn;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user