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

146 lines
3.7 KiB

///*
// * *
// * * @Project 微信公众号
// * * @Author 张剑峰
// * * @Date 2020/10/29 下午1:02
// * * @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;
//
//@XmlAccessorType(XmlAccessType.FIELD)
//@XmlRootElement(name = "Item")
//@XmlType(propOrder = {"DeptCode", "DeptName", "DoctCode", "DoctName", "Date", "ItemID", "ItemName", "ItemType", "Unit", "Price", "Count"})
//public class InPatientFeeItem {
// String DeptCode;
// String DeptName;
// String DoctCode;
// String DoctName;
// String Date;
// String ItemID;
// String ItemName;
// String ItemType;
// String Unit;
// String Price;
// String Count;
//
// public InPatientFeeItem() {
// super();
// }
//
// public InPatientFeeItem(String DeptCode, String DeptName, String DoctCode, String DoctName, String Date, String ItemID, String ItemName, String ItemType, String Unit, String Price, String Count) {
// super();
// this.DeptCode = DeptCode;
// this.DeptName = DeptName;
// this.DoctCode = DoctCode;
// this.DoctName = DoctName;
// this.Date = Date;
// this.ItemID = ItemID;
// this.ItemName = ItemName;
// this.ItemType = ItemType;
// this.Unit = Unit;
// this.Price = Price;
// this.Count = Count;
// }
//
// 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 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 getDate() {
// return Date;
// }
//
// public void setDate(String date) {
// Date = date;
// }
//
// public String getItemID() {
// return ItemID;
// }
//
// public void setItemID(String itemID) {
// ItemID = itemID;
// }
//
// public String getItemName() {
// return ItemName;
// }
//
// public void setItemName(String itemName) {
// ItemName = itemName;
// }
//
// public String getItemType() {
// return ItemType;
// }
//
// public void setItemType(String itemType) {
// ItemType = itemType;
// }
//
// public String getUnit() {
// return Unit;
// }
//
// public void setUnit(String unit) {
// Unit = unit;
// }
//
// public String getPrice() {
// return Price;
// }
//
// public void setPrice(String price) {
// Price = price;
// }
//
// public String getCount() {
// return Count;
// }
//
// public void setCount(String count) {
// Count = count;
// }
//
// @Override
// public String toString() {
// return String.format("DeptCode=%s, DeptName=%s, DoctCode=%s, DoctName=%s, Date=%s, ItemID=%s, ItemName=%s, ItemType=%s, Unit=%s, Price=%s, Count=%s", DeptCode, DeptName, DoctCode, DoctName, Date, ItemID, ItemName, ItemType, Unit, Price, Count);
// }
//}