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.
78 lines
2.0 KiB
78 lines
2.0 KiB
2 years ago
|
//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 2019年5月5日下午4:16:17
|
||
|
// * @version v1.0.0
|
||
|
// * @Copyright: 2019云南新八达科技有限公司 All rights reserved.
|
||
|
// */
|
||
|
//
|
||
|
//@XmlAccessorType(XmlAccessType.FIELD)
|
||
|
//@XmlRootElement(name = "Response")
|
||
|
//@XmlType(propOrder = { "TransactionCode", "ResponseCode", "PatientName", "Enrollment" })
|
||
|
//public class QueryPEISReportBean implements Serializable {
|
||
|
//
|
||
|
// /**
|
||
|
// *
|
||
|
// */
|
||
|
// private static final long serialVersionUID = 7233022435405356656L;
|
||
|
// String TransactionCode;
|
||
|
// String ResponseCode;
|
||
|
// String PatientName;
|
||
|
// List<EnrollmentBean> Enrollment;
|
||
|
//
|
||
|
// public QueryPEISReportBean() {
|
||
|
// super();
|
||
|
// }
|
||
|
//
|
||
|
// public QueryPEISReportBean(String TransactionCode, String ResponseCode, String PatientName,
|
||
|
// List<EnrollmentBean> Enrollment) {
|
||
|
// this.TransactionCode = TransactionCode;
|
||
|
// this.ResponseCode = ResponseCode;
|
||
|
// this.PatientName = PatientName;
|
||
|
// this.Enrollment = Enrollment;
|
||
|
// }
|
||
|
//
|
||
|
// public String getTransactionCode() {
|
||
|
// return TransactionCode;
|
||
|
// }
|
||
|
//
|
||
|
// public void setTransactionCode(String transactionCode) {
|
||
|
// TransactionCode = transactionCode;
|
||
|
// }
|
||
|
//
|
||
|
// public String getResponseCode() {
|
||
|
// return ResponseCode;
|
||
|
// }
|
||
|
//
|
||
|
// public String getPatientName() {
|
||
|
// return PatientName;
|
||
|
// }
|
||
|
//
|
||
|
// public void setPatientName(String patientName) {
|
||
|
// PatientName = patientName;
|
||
|
// }
|
||
|
//
|
||
|
// public void setResponseCode(String responseCode) {
|
||
|
// ResponseCode = responseCode;
|
||
|
// }
|
||
|
//
|
||
|
// public List<EnrollmentBean> getEnrollment() {
|
||
|
// return Enrollment;
|
||
|
// }
|
||
|
//
|
||
|
// public void setEnrollment(List<EnrollmentBean> enrollment) {
|
||
|
// Enrollment = enrollment;
|
||
|
// }
|
||
|
//
|
||
|
//}
|