微信后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.6 KiB

//
//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<Time_SourceBean> Source;
//
// public Time_TimeIntervalBean() {
// super();
// }
//
// public Time_TimeIntervalBean(String TID, String TName, List<Time_SourceBean> 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<Time_SourceBean> getSource() {
// return Source;
// }
//
// public void setSource(List<Time_SourceBean> source) {
// Source = source;
// }
//
//}