///** // * 按时间点挂号,号源实体类 // */ //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 2018年10月16日下午2:58:54 // * @version v1.0.0 // * @Copyright: 2018云南新八达科技有限公司 All rights reserved. // */ // //@XmlAccessorType(XmlAccessType.FIELD) //@XmlRootElement(name = "Source") //@XmlType(propOrder = { "SourceId", "QueueNumber", "BegTime", "EndTime", "RegistCode", "RegistName", "RegistPrice", // "RegistDate", "ClinicAddress", "AllowOnline", "IsUsed" }) //public class Time_SourceBean implements Serializable { // // private static final long serialVersionUID = -2695764239548909806L; // // int SourceId; // int QueueNumber; // String BegTime; // String EndTime; // String RegistCode; // String RegistName; // double RegistPrice; // String RegistDate; // String ClinicAddress; // int AllowOnline; // int IsUsed; // // public Time_SourceBean() { // super(); // } // // public Time_SourceBean(int SourceId, int QueueNumber, String BegTime, String EndTime, String RegistCode, // String RegistName, double RegistPrice, String RegistDate, String ClinicAddress, int AllowOnline, // int IsUsed) { // super(); // this.SourceId = SourceId; // this.QueueNumber = QueueNumber; // this.BegTime = BegTime; // this.EndTime = EndTime; // this.RegistCode = RegistCode; // this.RegistName = RegistName; // this.RegistPrice = RegistPrice; // this.RegistDate = RegistDate; // this.ClinicAddress = ClinicAddress; // this.AllowOnline = AllowOnline; // this.IsUsed = IsUsed; // } // // public int getSourceId() { // return SourceId; // } // // public void setSourceId(int sourceId) { // SourceId = sourceId; // } // // public int getQueueNumber() { // return QueueNumber; // } // // public void setQueueNumber(int queueNumber) { // QueueNumber = queueNumber; // } // // public String getBegTime() { // return BegTime; // } // // public void setBegTime(String begTime) { // BegTime = begTime; // } // // public String getEndTime() { // return EndTime; // } // // public void setEndTime(String endTime) { // EndTime = endTime; // } // // public String getRegistCode() { // return RegistCode; // } // // public void setRegistCode(String registCode) { // RegistCode = registCode; // } // // public String getRegistName() { // return RegistName; // } // // public void setRegistName(String registName) { // RegistName = registName; // } // // public double getRegistPrice() { // return RegistPrice; // } // // public void setRegistPrice(double registPrice) { // RegistPrice = registPrice; // } // // public String getRegistDate() { // return RegistDate; // } // // public void setRegistDate(String registDate) { // RegistDate = registDate; // } // // public String getClinicAddress() { // return ClinicAddress; // } // // public void setClinicAddress(String clinicAddress) { // ClinicAddress = clinicAddress; // } // // public int getAllowOnline() { // return AllowOnline; // } // // public void setAllowOnline(int allowOnline) { // AllowOnline = allowOnline; // } // // public int getIsUsed() { // return IsUsed; // } // // public void setIsUsed(int isUsed) { // IsUsed = isUsed; // } // //}