///** // * // */ //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年5月24日下午6:27:59 // * @version v1.0.0 // * @Copyright: 2017 云南新八达科技有限公司 All rights reserved. // */ // //@XmlAccessorType(XmlAccessType.FIELD) //@XmlRootElement(name = "Response") //@XmlType(propOrder = { "TransactionCode", "ResponseCode", "ResponseMessage", "DeptCode", "DeptName", "Doctor" }) //public class DoctResponseBean implements Serializable { // /** // * // */ // private static final long serialVersionUID = 1L; // String TransactionCode; // String ResponseCode; // String ResponseMessage; // String DeptCode; // String DeptName; // List Doctor; // // public DoctResponseBean() { // super(); // } // // public DoctResponseBean(String TransactionCode, String ResponseCode, String ResponseMessage, String DeptCode, // String DeptName, List Doctor) { // super(); // this.TransactionCode = TransactionCode; // this.ResponseCode = ResponseCode; // this.ResponseMessage = ResponseMessage; // this.DeptCode = DeptCode; // this.DeptName = DeptName; // this.Doctor = Doctor; // } // // 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 getDeptCode() { // return DeptCode; // } // // public void setDeptCode(String deptCode) { // DeptCode = deptCode; // } // // public String getDeptName() { // return DeptName; // } // // public void setDeptName(String deptName) { // DeptName = deptName; // } // // public List getDoctor() { // return Doctor; // } // // public void setDoctor(List doctor) { // Doctor = doctor; // } // //}