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.
70 lines
1.7 KiB
70 lines
1.7 KiB
///**
|
|
// * 按时间点挂号,医生对象
|
|
// */
|
|
//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<Time_TimeIntervalBean> TimeInterval;
|
|
//
|
|
// public Time_DoctBean() {
|
|
// super();
|
|
// }
|
|
//
|
|
// public Time_DoctBean(String DoctCode, String DoctName, List<Time_TimeIntervalBean> 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<Time_TimeIntervalBean> getTimeInterval() {
|
|
// return TimeInterval;
|
|
// }
|
|
//
|
|
// public void setTimeInterval(List<Time_TimeIntervalBean> timeInterval) {
|
|
// TimeInterval = timeInterval;
|
|
// }
|
|
//
|
|
//}
|
|
|