//package com.ynxbd.common.bean; // //import java.io.Serializable; // //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:29:28 // * @version v1.0.0 // * @Copyright: 2017 云南新八达科技有限公司 All rights reserved. // */ // //@XmlAccessorType(XmlAccessType.FIELD) //@XmlRootElement(name = "Doctor") //@XmlType(propOrder = { "DoctCode", "DoctName", "TitleCode", "Title", "Spec", "ClinicCode", "ClinicName", // "IsExpertRegistion", "RegFee", "ClinicFee", "TID", "ReservationDate", "TotalCount", "RemainCount", "Address" }) //public class DoctBean implements Serializable { // // /** // * // */ // private static final long serialVersionUID = 1L; // // String DoctCode;// 医师代码 // String DoctName;// 医师姓名 // String TitleCode;// 医师职称编码 // String Title;// 医师职称 // String Spec;// 医师特长 // String ClinicCode;// 排班类型代码 // String ClinicName;// 排班类型名称 // int IsExpertRegistion;// 是否是专家 // double RegFee;// 挂号费 // double ClinicFee;// 诊疗费 // String TID;// 时段 // String ReservationDate;// 预约日期 // int TotalCount;// 总号源数 // int RemainCount;// 剩余号源数 // String Address;// 就诊地址 // // public DoctBean() { // super(); // } // // public DoctBean(String DoctCode, String DoctName, String TitleCode, String Title, String Spec, String ClinicCode, // String ClinicName, int IsExpertRegistion, double RegFee, double ClinicFee, String TID, // String ReservationDate, int TotalCount, int RemainCount, String Address) { // super(); // this.DoctCode = DoctCode; // this.DoctName = DoctName; // this.TitleCode = TitleCode; // this.Title = Title; // this.Spec = Spec; // this.ClinicCode = ClinicCode; // this.ClinicName = ClinicName; // this.IsExpertRegistion = IsExpertRegistion; // this.RegFee = RegFee; // this.ClinicFee = ClinicFee; // this.TID = TID; // this.ReservationDate = ReservationDate; // this.TotalCount = TotalCount; // this.RemainCount = RemainCount; // this.Address = Address; // } // // public String getDoctCode() { // return DoctCode; // } // // public void setDoctCode(String doctCode) { // DoctCode = doctCode; // } // // public String getDoctName() { // return DoctName; // } // // public void setDoctName(String doctName) { // DoctName = doctName; // } // // public String getTitleCode() { // return TitleCode; // } // // public void setTitleCode(String titleCode) { // TitleCode = titleCode; // } // // public String getTitle() { // return Title; // } // // public void setTitle(String title) { // Title = title; // } // // public String getSpec() { // return Spec; // } // // public void setSpec(String spec) { // Spec = spec; // } // // public String getClinicCode() { // return ClinicCode; // } // // public void setClinicCode(String clinicCode) { // ClinicCode = clinicCode; // } // // public String getClinicName() { // return ClinicName; // } // // public void setClinicName(String clinicName) { // ClinicName = clinicName; // } // // public int getIsExpertRegistion() { // return IsExpertRegistion; // } // // public void setIsExpertRegistion(int isExpertRegistion) { // IsExpertRegistion = isExpertRegistion; // } // // public double getRegFee() { // return RegFee; // } // // public void setRegFee(double regFee) { // RegFee = regFee; // } // // public double getClinicFee() { // return ClinicFee; // } // // public void setClinicFee(double clinicFee) { // ClinicFee = clinicFee; // } // // public String getTID() { // return TID; // } // // public void setTID(String tID) { // TID = tID; // } // // public String getReservationDate() { // return ReservationDate; // } // // public void setReservationDate(String reservationDate) { // ReservationDate = reservationDate; // } // // public int getTotalCount() { // return TotalCount; // } // // public void setTotalCount(int totalCount) { // TotalCount = totalCount; // } // // public int getRemainCount() { // return RemainCount; // } // // public void setRemainCount(int remainCount) { // RemainCount = remainCount; // } // // public String getAddress() { // return Address; // } // // public void setAddress(String address) { // Address = address; // } // //}