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.
73 lines
2.1 KiB
73 lines
2.1 KiB
///*
|
|
// * *
|
|
// * * @Project 微信公众号
|
|
// * * @Author 张剑峰
|
|
// * * @Date 2020/10/29 上午11:09
|
|
// * * @Description
|
|
// * * @Version v1.0.0
|
|
// * * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
|
// *
|
|
// */
|
|
//
|
|
//package com.ynxbd.common.bean;
|
|
//
|
|
//import javax.xml.bind.annotation.XmlAccessType;
|
|
//import javax.xml.bind.annotation.XmlAccessorType;
|
|
//import javax.xml.bind.annotation.XmlRootElement;
|
|
//import javax.xml.bind.annotation.XmlType;
|
|
//import java.io.Serializable;
|
|
//import java.util.List;
|
|
//
|
|
//@XmlAccessorType(XmlAccessType.FIELD)
|
|
//@XmlRootElement(name = "Response")
|
|
//@XmlType(propOrder = {"TransactionCode", "ResponseCode", "ResponseMessage", "Item"})
|
|
//public class PrepayResponseBean implements Serializable {
|
|
// String TransactionCode;
|
|
// String ResponseCode;
|
|
// String ResponseMessage;
|
|
// List<PrepayItemBean> Item;
|
|
//
|
|
// public PrepayResponseBean() {
|
|
// super();
|
|
// }
|
|
//
|
|
// public PrepayResponseBean(String TransactionCode, String ResponseCode, String ResponseMessage, List<PrepayItemBean> Item) {
|
|
// super();
|
|
// this.TransactionCode = TransactionCode;
|
|
// this.ResponseCode = ResponseCode;
|
|
// this.ResponseMessage = ResponseMessage;
|
|
// this.Item = Item;
|
|
// }
|
|
//
|
|
// 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 List<PrepayItemBean> getItem() {
|
|
// return Item;
|
|
// }
|
|
//
|
|
// public void setItem(List<PrepayItemBean> item) {
|
|
// Item = item;
|
|
// }
|
|
//}
|
|
|