微信后端代码
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.

72 lines
1.6 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: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<Time_DoctBean> Doct;
//
// public Time_DeptBean() {
// super();
// }
//
// public Time_DeptBean(String DeptCode, String DeptName, List<Time_DoctBean> 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<Time_DoctBean> getDoct() {
// return Doct;
// }
//
// public void setDoct(List<Time_DoctBean> doct) {
// Doct = doct;
// }
//
//}