微信后端代码
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.

79 lines
2.1 KiB

//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;
//
//@XmlAccessorType(XmlAccessType.FIELD)
//@XmlRootElement(name = "Response")
//@XmlType(propOrder = { "TransactionCode", "ResponseCode", "ResponseMessage", "PatientName", "Report" })
//public class InspectionResponseBean implements Serializable {
//
// /**
// *
// */
// private static final long serialVersionUID = 1L;
// String TransactionCode;
// String ResponseCode;
// String ResponseMessage;
// String PatientName;
// List<InspectionReportBean> Report;
//
// public InspectionResponseBean() {
// super();
// }
//
// public InspectionResponseBean(String TransactionCode, String ResponseCode, String ResponseMessage,
// String PatientName, List<InspectionReportBean> Report) {
// this.TransactionCode = TransactionCode;
// this.ResponseCode = ResponseCode;
// this.ResponseMessage = ResponseMessage;
// this.PatientName = PatientName;
// this.Report = Report;
// }
//
// 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 String getPatientName() {
// return PatientName;
// }
//
// public void setPatientName(String patientName) {
// PatientName = patientName;
// }
//
// public List<InspectionReportBean> getReport() {
// return Report;
// }
//
// public void setReport(List<InspectionReportBean> report) {
// Report = report;
// }
//
//}