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

161 lines
3.5 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年7月7日上午10:07:56
// * @version v1.0.0
// * @Copyright: 2017 云南新八达科技有限公司 All rights reserved.
// */
//
//@XmlAccessorType(XmlAccessType.FIELD)
//@XmlRootElement(name = "Response")
//@XmlType(propOrder = { "TransactionCode", "ResponseCode", "ResponseMessage", "PatientID", "Name", "Sex", "Age",
// "IDCardNo", "Birthday", "Tel", "Address", "Nation" })
//public class PatientResponseBean implements Serializable {
// /**
// *
// */
// private static final long serialVersionUID = 1L;
// String TransactionCode;// 交易代码
// String ResponseCode;// 返回代码
// String ResponseMessage;// 返回消息
// String PatientID;// 患者ID
// String Name;// 姓名
// String Sex;// 性别
// String Age;// 年龄
// String IDCardNo;// 身份证号
// String Birthday;// 出生日期
// String Tel;// 电话
// String Address;// 地址
// String Nation; // 民族
//
// public String getNation() {
// return Nation;
// }
//
// public void setNation(String nation) {
// Nation = nation;
// }
//
// public PatientResponseBean() {
// super();
// }
//
// public PatientResponseBean(String TransactionCode, String ResponseCode, String ResponseMessage, String PatientID,
// String Name, String Sex, String Age, String IDCardNo, String Birthday, String Tel, String Address,
// String Nation) {
// super();
// this.TransactionCode = TransactionCode;
// this.ResponseCode = ResponseCode;
// this.ResponseMessage = ResponseMessage;
// this.PatientID = PatientID;
// this.Name = Name;
// this.Sex = Sex;
// this.Age = Age;
// this.IDCardNo = IDCardNo;
// this.Birthday = Birthday;
// this.Tel = Tel;
// this.Address = Address;
// this.Nation = Nation;
// }
//
// public String getTransactionCode() {
// return TransactionCode;
// }
//
// public void setTransactionCode(String transactionCode) {
// TransactionCode = transactionCode;
// }
//
// public String getResponseCode() {
// return ResponseCode;
// }
//
// public void setResponseCode(String responseCode) {
// ResponseCode = responseCode;
// }
//
// public String getResponseMessage() {
// return ResponseMessage;
// }
//
// public void setResponseMessage(String responseMessage) {
// ResponseMessage = responseMessage;
// }
//
// public String getPatientID() {
// return PatientID;
// }
//
// public void setPatientID(String patientID) {
// PatientID = patientID;
// }
//
// public String getName() {
// return Name;
// }
//
// public void setName(String name) {
// Name = name;
// }
//
// public String getSex() {
// return Sex;
// }
//
// public void setSex(String sex) {
// Sex = sex;
// }
//
// public String getAge() {
// return Age;
// }
//
// public void setAge(String age) {
// Age = age;
// }
//
// public String getIDCardNo() {
// return IDCardNo;
// }
//
// public void setIDCardNo(String iDCardNo) {
// IDCardNo = iDCardNo;
// }
//
// public String getBirthday() {
// return Birthday;
// }
//
// public void setBirthday(String birthday) {
// Birthday = birthday;
// }
//
// public String getTel() {
// return Tel;
// }
//
// public void setTel(String tel) {
// Tel = tel;
// }
//
// public String getAddress() {
// return Address;
// }
//
// public void setAddress(String address) {
// Address = address;
// }
//}