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

169 lines
5.3 KiB

///*
// * *
// * * @Project 微信公众号
// * * @Author 张剑峰
// * * @Date 2020/10/29 下午12:15
// * * @Description
// * * @Version v1.0.0
// * * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
// *
// */
//
//package com.ynxbd.common.bean;
//
//import javax.xml.bind.annotation.XmlAccessType;
//import javax.xml.bind.annotation.XmlAccessorType;
//import javax.xml.bind.annotation.XmlRootElement;
//import javax.xml.bind.annotation.XmlType;
//import java.io.Serializable;
//import java.util.List;
//
//@XmlAccessorType(XmlAccessType.FIELD)
//@XmlRootElement(name = "Response")
//@XmlType(propOrder = {"TransactionCode", "ResponseCode", "ResponseMessage", "PatientId", "ZYNum", "PatientName", "Sex", "StayDeptName", "DischargeDate", "AdmissionDate", "LengthOfStay", "SummaryFee", "Item"})
//public class InPatientSummaryFeeResponseBean implements Serializable {
// String TransactionCode;
// String ResponseCode;
// String ResponseMessage;
// String PatientId; // 患者ID
// String ZYNum; // 住院号
// String PatientName; // 患者姓名
// String Sex; // 性别
// String StayDeptName; // 当前留院科室
// String AdmissionDate; // 入院日期
// String DischargeDate; // 出院日期
// String LengthOfStay; // 在院天数
// String SummaryFee; // 总费用
// List<InPatientSummaryFeeItemBean> Item; // 费用明细项
//
//
// public InPatientSummaryFeeResponseBean() {
// super();
// }
//
// public InPatientSummaryFeeResponseBean(String TransactionCode, String ResponseCode, String ResponseMessage, String PatientId, String ZYNum, String PatientName, String Sex, String StayDeptName, String AdmissionDate, String DischargeDate, String LengthOfStay, String SummaryFee, List<InPatientSummaryFeeItemBean> Item) {
// this.TransactionCode = TransactionCode;
// this.ResponseCode = ResponseCode;
// this.ResponseMessage = ResponseMessage;
// this.PatientId = PatientId;
// this.ZYNum = ZYNum;
// this.PatientName = PatientName;
// this.Sex = Sex;
// this.StayDeptName = StayDeptName;
// this.AdmissionDate = AdmissionDate;
// this.DischargeDate = DischargeDate;
// this.LengthOfStay = LengthOfStay;
// this.SummaryFee = SummaryFee;
// this.Item = Item;
// }
//
// @Override
// public String toString() {
// return String.format("PatientId=%s, ZYNum=%s, PatientName=%s, Sex=%s, StayDeptNaem=%s, AdmissionDate=%s, DischargeDate=%s, LengthOfStay=%s, SummaryFee=%s, Item=%s",
// this.PatientId, this.ZYNum, this.PatientName, this.Sex, this.StayDeptName, this.AdmissionDate, this.DischargeDate, this.LengthOfStay, this.SummaryFee, this.Item.toString());
// }
//
// 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 getZYNum() {
// return ZYNum;
// }
//
// public void setZYNum(String ZYNum) {
// this.ZYNum = ZYNum;
// }
//
// public String getPatientName() {
// return PatientName;
// }
//
// public void setPatientName(String patientName) {
// PatientName = patientName;
// }
//
// public String getSex() {
// return Sex;
// }
//
// public void setSex(String sex) {
// Sex = sex;
// }
//
// public String getStayDeptName() {
// return StayDeptName;
// }
//
// public void setStayDeptName(String stayDeptName) {
// StayDeptName = stayDeptName;
// }
//
// public String getAdmissionDate() {
// return AdmissionDate;
// }
//
// public void setAdmissionDate(String admissionDate) {
// AdmissionDate = admissionDate;
// }
//
// public String getDischargeDate() {
// return DischargeDate;
// }
//
// public void setDischargeDate(String dischargeDate) {
// DischargeDate = dischargeDate;
// }
//
// public String getLengthOfStay() {
// return LengthOfStay;
// }
//
// public void setLengthOfStay(String lengthOfStay) {
// LengthOfStay = lengthOfStay;
// }
//
// public String getSummaryFee() {
// return SummaryFee;
// }
//
// public void setSummaryFee(String summaryFee) {
// SummaryFee = summaryFee;
// }
//
// public List<InPatientSummaryFeeItemBean> getItem() {
// return Item;
// }
//
// public void setItem(List<InPatientSummaryFeeItemBean> item) {
// Item = item;
// }
//}