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