// //package com.ynxbd.common.bean; // //import javax.xml.bind.annotation.XmlAccessType; //import javax.xml.bind.annotation.XmlAccessorType; //import javax.xml.bind.annotation.XmlRootElement; //import javax.xml.bind.annotation.XmlType; //import java.io.Serializable; //import java.util.List; // ///** // * 按时间点挂号,时间点实体类 // * @Project:微信公众号 // * @author 张剑峰 // * @date 2018年10月16日下午3:49:23 // * @version v1.0.0 // * @Copyright: 2018云南新八达科技有限公司 All rights reserved. // */ // //@XmlAccessorType(XmlAccessType.FIELD) //@XmlRootElement(name = "TimeInterval") //@XmlType(propOrder = { "TID", "TName", "Source" }) //public class Time_TimeIntervalBean implements Serializable { // // private static final long serialVersionUID = 7030202123018122910L; // private String TID; // private String TName; // private List Source; // // public Time_TimeIntervalBean() { // super(); // } // // public Time_TimeIntervalBean(String TID, String TName, List Source) { // super(); // this.TID = TID; // this.TName = TName; // this.Source = Source; // } // // public String getTID() { // return TID; // } // // public void setTID(String tID) { // TID = tID; // } // // public String getTName() { // return TName; // } // // public void setTName(String tName) { // TName = tName; // } // // public List getSource() { // return Source; // } // // public void setSource(List source) { // Source = source; // } // //}