You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					
					
						
							29 lines
						
					
					
						
							560 B
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							560 B
						
					
					
				package com.ynxbd.wx.wxfactory.base.auth.models;
 | 
						|
 | 
						|
import lombok.Getter;
 | 
						|
import lombok.NoArgsConstructor;
 | 
						|
import lombok.Setter;
 | 
						|
import lombok.ToString;
 | 
						|
 | 
						|
/**
 | 
						|
 * @author 李进才
 | 
						|
 * @ClassName RespJsapiTicket
 | 
						|
 * @Description TODO
 | 
						|
 * @date 2023/07/26 10:16:00
 | 
						|
 */
 | 
						|
 | 
						|
 | 
						|
@Getter
 | 
						|
@Setter
 | 
						|
@ToString(callSuper = true)
 | 
						|
@NoArgsConstructor
 | 
						|
public class RespJsapiTicket {
 | 
						|
    // https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html#62
 | 
						|
    private Integer errCode;
 | 
						|
 | 
						|
    private String errMsg;
 | 
						|
 | 
						|
    private String ticket;
 | 
						|
 | 
						|
    private Integer expires_in;
 | 
						|
}
 | 
						|
 |