///* // * * // * * @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; // //@XmlAccessorType(XmlAccessType.FIELD) //@XmlRootElement(name = "Item") //@XmlType(propOrder = {"ThatDayFee", "FeeDate"}) //public class InPatientSummaryFeeItemBean implements Serializable { // String ThatDayFee; // 查询日期内总费用 // String FeeDate; // 查询日期 // // public InPatientSummaryFeeItemBean() { // super(); // } // // public InPatientSummaryFeeItemBean(String ThatDayFee, String FeeDate) { // super(); // this.ThatDayFee = ThatDayFee; // this.FeeDate = FeeDate; // } // // public String getThatDayFee() { // return ThatDayFee; // } // // public void setThatDayFee(String thatDayFee) { // ThatDayFee = thatDayFee; // } // // public String getFeeDate() { // return FeeDate; // } // // public void setFeeDate(String feeDate) { // FeeDate = feeDate; // } // // @Override // public String toString() { // return String.format("ThatDayFee=%s, FeeDate=%s", this.ThatDayFee, this.FeeDate); // } //}