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.
		
		
		
		
			
				
					
					
						
							136 lines
						
					
					
						
							2.9 KiB
						
					
					
				
			
		
		
	
	
							136 lines
						
					
					
						
							2.9 KiB
						
					
					
				| package com.bocom.api.response.pmssMpng;
 | |
| 
 | |
| import com.bocom.api.BocomResponse;
 | |
| import com.fasterxml.jackson.annotation.JsonProperty;
 | |
| 
 | |
| public class MPNG210106ResponseV1 extends BocomResponse {
 | |
|     /**
 | |
|      * "rsp_body"
 | |
|      */
 | |
|     @JsonProperty("rsp_body")
 | |
|     private RspBody rspBody;
 | |
| 
 | |
|     public static class RspBody {
 | |
|         /**
 | |
|          * 用户标识
 | |
|          */
 | |
|         @JsonProperty("open_id")
 | |
|         private String openId;
 | |
| 
 | |
|         /**
 | |
|          * 用户子标识
 | |
|          */
 | |
|         @JsonProperty("sub_open_id")
 | |
|         private String subOpenId;
 | |
| 
 | |
|         public String getOpenId() {
 | |
|             return openId;
 | |
|         }
 | |
| 
 | |
|         public void setOpenId(String openId) {
 | |
|             this.openId = openId;
 | |
|         }
 | |
| 
 | |
|         public String getSubOpenId() {
 | |
|             return subOpenId;
 | |
|         }
 | |
| 
 | |
|         public void setSubOpenId(String subOpenId) {
 | |
|             this.subOpenId = subOpenId;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * "rsp_head"
 | |
|      */
 | |
|     @JsonProperty("rsp_head")
 | |
|     private RspHead rspHead;
 | |
| 
 | |
|     public static class RspHead {
 | |
|         /**
 | |
|          * 交易标识
 | |
|          */
 | |
|         @JsonProperty("trans_code")
 | |
|         private String transCode;
 | |
| 
 | |
|         /**
 | |
|          * 返回码
 | |
|          */
 | |
|         @JsonProperty("response_code")
 | |
|         private String responseCode;
 | |
| 
 | |
|         /**
 | |
|          * 交易状态 P-处理中  F-失败  S-成功
 | |
|          */
 | |
|         @JsonProperty("response_status")
 | |
|         private String responseStatus;
 | |
| 
 | |
|         /**
 | |
|          * 响应时间
 | |
|          */
 | |
|         @JsonProperty("response_time")
 | |
|         private String responseTime;
 | |
| 
 | |
|         /**
 | |
|          * 返回码描述
 | |
|          */
 | |
|         @JsonProperty("response_msg")
 | |
|         private String responseMsg;
 | |
| 
 | |
|         public String getTransCode() {
 | |
|             return transCode;
 | |
|         }
 | |
| 
 | |
|         public void setTransCode(String transCode) {
 | |
|             this.transCode = transCode;
 | |
|         }
 | |
| 
 | |
|         public String getResponseCode() {
 | |
|             return responseCode;
 | |
|         }
 | |
| 
 | |
|         public void setResponseCode(String responseCode) {
 | |
|             this.responseCode = responseCode;
 | |
|         }
 | |
| 
 | |
|         public String getResponseStatus() {
 | |
|             return responseStatus;
 | |
|         }
 | |
| 
 | |
|         public void setResponseStatus(String responseStatus) {
 | |
|             this.responseStatus = responseStatus;
 | |
|         }
 | |
| 
 | |
|         public String getResponseTime() {
 | |
|             return responseTime;
 | |
|         }
 | |
| 
 | |
|         public void setResponseTime(String responseTime) {
 | |
|             this.responseTime = responseTime;
 | |
|         }
 | |
| 
 | |
|         public String getResponseMsg() {
 | |
|             return responseMsg;
 | |
|         }
 | |
| 
 | |
|         public void setResponseMsg(String responseMsg) {
 | |
|             this.responseMsg = responseMsg;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public RspBody getRspBody() {
 | |
|         return rspBody;
 | |
|     }
 | |
| 
 | |
|     public void setRspBody(RspBody rspBody) {
 | |
|         this.rspBody = rspBody;
 | |
|     }
 | |
| 
 | |
|     public RspHead getRspHead() {
 | |
|         return rspHead;
 | |
|     }
 | |
| 
 | |
|     public void setRspHead(RspHead rspHead) {
 | |
|         this.rspHead = rspHead;
 | |
|     }
 | |
| } |