///** // * 按时间点挂号,部门实体类 // */ //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:59:29 // * @version v1.0.0 // * @Copyright: 2018云南新八达科技有限公司 All rights reserved. // */ // //@XmlAccessorType(XmlAccessType.FIELD) //@XmlRootElement(name = "Dept") //@XmlType(propOrder = { "DeptCode", "DeptName", "Doct" }) //public class Time_DeptBean implements Serializable { // // /** // * // */ // private static final long serialVersionUID = 3765986260715637424L; // private String DeptCode; // private String DeptName; // private List Doct; // // public Time_DeptBean() { // super(); // } // // public Time_DeptBean(String DeptCode, String DeptName, List Doct) { // super(); // this.DeptCode = DeptCode; // this.DeptName = DeptName; // this.Doct = Doct; // // } // // public String getDeptCode() { // return DeptCode; // } // // public void setDeptCode(String deptCode) { // DeptCode = deptCode; // } // // public String getDeptName() { // return DeptName; // } // // public void setDeptName(String deptName) { // DeptName = deptName; // } // // public List getDoct() { // return Doct; // } // // public void setDoct(List doct) { // Doct = doct; // } // //}