///** // * 按时间点挂号,医生对象 // */ //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 2018年10月16日下午3:55:52 // * @version v1.0.0 // * @Copyright: 2018云南新八达科技有限公司 All rights reserved. // */ // //@XmlAccessorType(XmlAccessType.FIELD) //@XmlRootElement(name = "Doct") //@XmlType(propOrder = { "DoctCode", "DoctName", "TimeInterval" }) //public class Time_DoctBean implements Serializable { // // /** // * // */ // private static final long serialVersionUID = -78908748187506088L; // private String DoctCode; // private String DoctName; // private List TimeInterval; // // public Time_DoctBean() { // super(); // } // // public Time_DoctBean(String DoctCode, String DoctName, List TimeInterval) { // super(); // this.DoctCode = DoctCode; // this.DoctName = DoctName; // this.TimeInterval = TimeInterval; // } // // 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 List getTimeInterval() { // return TimeInterval; // } // // public void setTimeInterval(List timeInterval) { // TimeInterval = timeInterval; // } // //}