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.
83 lines
2.2 KiB
83 lines
2.2 KiB
///**
|
|
// *
|
|
// */
|
|
//package com.ynxbd.common.bean;
|
|
//
|
|
//import java.io.Serializable;
|
|
//
|
|
//import javax.xml.bind.annotation.XmlAccessType;
|
|
//import javax.xml.bind.annotation.XmlAccessorType;
|
|
//import javax.xml.bind.annotation.XmlRootElement;
|
|
//import javax.xml.bind.annotation.XmlType;
|
|
//
|
|
///**
|
|
// * @Project:微信公众号
|
|
// * @author 张剑峰
|
|
// * @date 2020年6月5日下午3:04:14
|
|
// * @version v1.0.0
|
|
// * @Copyright: 2020云南新八达科技有限公司 All rights reserved.
|
|
// */
|
|
//
|
|
//@XmlAccessorType(XmlAccessType.FIELD)
|
|
//@XmlRootElement(name = "Response")
|
|
//@XmlType(propOrder = { "TransactionCode", "ResponseCode", "ResponseMessage", "Records" })
|
|
//public class MZResponseBean implements Serializable {
|
|
// /**
|
|
// *
|
|
// */
|
|
// private static final long serialVersionUID = -3783363040845078304L;
|
|
// String TransactionCode;
|
|
// String ResponseCode;
|
|
// String ResponseMessage;
|
|
// MZRecordsBean Records;
|
|
//
|
|
// public MZResponseBean() {
|
|
// super();
|
|
// }
|
|
//
|
|
// public MZResponseBean(String transactionCode, String responseCode, String responseMessage, MZRecordsBean records) {
|
|
// this.TransactionCode = transactionCode;
|
|
// this.ResponseCode = responseCode;
|
|
// this.ResponseMessage = responseMessage;
|
|
// this.Records = records;
|
|
// }
|
|
//
|
|
// public String getTransactionCode() {
|
|
// return TransactionCode;
|
|
// }
|
|
//
|
|
// public void setTransactionCode(String transactionCode) {
|
|
// TransactionCode = transactionCode;
|
|
// }
|
|
//
|
|
// public String getResponseCode() {
|
|
// return ResponseCode;
|
|
// }
|
|
//
|
|
// public void setResponseCode(String responseCode) {
|
|
// ResponseCode = responseCode;
|
|
// }
|
|
//
|
|
// public String getResponseMessage() {
|
|
// return ResponseMessage;
|
|
// }
|
|
//
|
|
// public void setResponseMessage(String responseMessage) {
|
|
// ResponseMessage = responseMessage;
|
|
// }
|
|
//
|
|
// public MZRecordsBean getRecords() {
|
|
// return Records;
|
|
// }
|
|
//
|
|
// public void setRecords(MZRecordsBean records) {
|
|
// Records = records;
|
|
// }
|
|
//
|
|
// @Override
|
|
// public String toString() {
|
|
// return "MZResponseBean [TransactionCode=" + TransactionCode + ", ResponseCode=" + ResponseCode
|
|
// + ", ResponseMessage=" + ResponseMessage + ", Records=" + Records + "]";
|
|
// }
|
|
//
|
|
//}
|
|
|