//package com.ynxbd.common.bean; // //import java.io.Serializable; //import java.util.List; // //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 2017年8月28日下午2:37:26 // * @version v1.0.0 // * @Copyright: 2017云南新八达科技有限公司 All rights reserved. // */ //@XmlAccessorType(XmlAccessType.FIELD) //@XmlRootElement(name = "Response") //@XmlType(propOrder = { "TransactionCode", "ResponseCode", "ResponseMessage", "PatientName", "Report" }) //public class CheckResponseBean implements Serializable { // // /** // * // */ // private static final long serialVersionUID = 1L; // String TransactionCode; // String ResponseCode; // String ResponseMessage; // String PatientName; // List Report; // // public String getResponseMessage() { // return ResponseMessage; // } // // public void setResponseMessage(String responseMessage) { // ResponseMessage = responseMessage; // } // // // // public CheckResponseBean() { // super(); // } // // public CheckResponseBean(String TransactionCode, String ResponseCode, String ResponseMessage, String PatientName, List Report) { // this.TransactionCode = TransactionCode; // this.ResponseCode = ResponseCode; // this.Report = Report; // this.PatientName = PatientName; // this.ResponseMessage = getResponseMessage(); // } // // 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 getPatientName() { // return PatientName; // } // // public void setPatientName(String patientName) { // PatientName = patientName; // } // // public List getReport() { // return Report; // } // // public void setReport(List report) { // Report = report; // } // //}