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

189 lines
4.4 KiB

//package com.ynxbd.common.bean;
//
//import java.io.Serializable;
//
//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 2017年5月24日下午6:29:28
// * @version v1.0.0
// * @Copyright: 2017 云南新八达科技有限公司 All rights reserved.
// */
//
//@XmlAccessorType(XmlAccessType.FIELD)
//@XmlRootElement(name = "Doctor")
//@XmlType(propOrder = { "DoctCode", "DoctName", "TitleCode", "Title", "Spec", "ClinicCode", "ClinicName",
// "IsExpertRegistion", "RegFee", "ClinicFee", "TID", "TotalCount", "RemainCount", "AllowRegist", "Address" })
//public class RegDoctBean implements Serializable {
//
// /**
// *
// */
// private static final long serialVersionUID = 1L;
//
// String DoctCode;// 医师代码
// String DoctName;// 医师姓名
// String TitleCode;// 医师职称编码
// String Title;// 医师职称
// String Spec;// 医师特长
// String ClinicCode;// 排班类型代码
// String ClinicName;// 排班类型名称
// int IsExpertRegistion;// 是否是专家
// double RegFee;// 挂号费
// double ClinicFee;// 诊疗费
// String TID;// 时段
// int TotalCount;// 总号源数
// int RemainCount;// 剩余号源数
// int AllowRegist;// 允许挂号 0:没有号源不允许挂号;1:有号源可以挂号
// String Address;// 就诊地址
//
// public RegDoctBean() {
// super();
// }
//
// public RegDoctBean(String DoctCode, String DoctName, String TitleCode, String Title, String Spec, String ClinicCode,
// String ClinicName, int IsExpertRegistion, double RegFee, double ClinicFee, String TID, int TotalCount,
// int RemainCount, int AllowRegist, String Address) {
// super();
// this.DoctCode = DoctCode;
// this.DoctName = DoctName;
// this.TitleCode = TitleCode;
// this.Title = Title;
// this.Spec = Spec;
// this.ClinicCode = ClinicCode;
// this.ClinicName = ClinicName;
// this.IsExpertRegistion = IsExpertRegistion;
// this.RegFee = RegFee;
// this.ClinicFee = ClinicFee;
// this.TID = TID;
// this.TotalCount = TotalCount;
// this.RemainCount = RemainCount;
// this.AllowRegist = AllowRegist;
// this.Address = Address;
// }
//
// 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 String getTitleCode() {
// return TitleCode;
// }
//
// public void setTitleCode(String titleCode) {
// TitleCode = titleCode;
// }
//
// public String getTitle() {
// return Title;
// }
//
// public void setTitle(String title) {
// Title = title;
// }
//
// public String getSpec() {
// return Spec;
// }
//
// public void setSpec(String spec) {
// Spec = spec;
// }
//
// public String getClinicCode() {
// return ClinicCode;
// }
//
// public void setClinicCode(String clinicCode) {
// ClinicCode = clinicCode;
// }
//
// public String getClinicName() {
// return ClinicName;
// }
//
// public void setClinicName(String clinicName) {
// ClinicName = clinicName;
// }
//
// public int getIsExpertRegistion() {
// return IsExpertRegistion;
// }
//
// public void setIsExpertRegistion(int isExpertRegistion) {
// IsExpertRegistion = isExpertRegistion;
// }
//
// public double getRegFee() {
// return RegFee;
// }
//
// public void setRegFee(double regFee) {
// RegFee = regFee;
// }
//
// public double getClinicFee() {
// return ClinicFee;
// }
//
// public void setClinicFee(double clinicFee) {
// ClinicFee = clinicFee;
// }
//
// public String getTID() {
// return TID;
// }
//
// public void setTID(String tID) {
// TID = tID;
// }
//
// public int getTotalCount() {
// return TotalCount;
// }
//
// public void setTotalCount(int totalCount) {
// TotalCount = totalCount;
// }
//
// public int getRemainCount() {
// return RemainCount;
// }
//
// public void setRemainCount(int remainCount) {
// RemainCount = remainCount;
// }
//
// public int getAllowRegist() {
// return AllowRegist;
// }
//
// public void setAllowRegist(int allowRegist) {
// AllowRegist = allowRegist;
// }
//
// public String getAddress() {
// return Address;
// }
//
// public void setAddress(String address) {
// Address = address;
// }
//}