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

170 lines
3.5 KiB

///**
// *
// */
//package com.ynxbd.common.bean;
//
//import java.io.Serializable;
//import java.util.List;
//
//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年8月3日下午6:02:11
// * @version v1.0.0
// * @Copyright: 2017云南新八达科技有限公司 All rights reserved.
// */
//@XmlAccessorType(XmlAccessType.FIELD)
//@XmlRootElement(name = "Recipe")
//@XmlType(propOrder = { "ID", "Name", "DeptCode", "DeptName", "DoctCode", "DoctName", "Date", "ExecDate", "MZNum",
// "Amount", "Address", "Note", "Item" })
//public class RecipeBean implements Serializable {
// /**
// *
// */
// private static final long serialVersionUID = 1L;
// String ID;
// String Name;
// String DeptCode;
// String DeptName;
// String DoctCode;
// String DoctName;
// String Date;
// String ExecDate;
// String MZNum;
// String Amount;
// String Address;
// String Note;
// List<RecipeItemBean> Item;
//
// public RecipeBean() {
// super();
// }
//
// public RecipeBean(String ID, String Name, String DeptCode, String DeptName, String DoctCode, String DoctName,
// String Date, String ExecDate, String MZNum, String Amount, String Address, String Note,
// List<RecipeItemBean> Item) {
// this.ID = ID;
// this.Name = Name;
// this.DeptCode = DeptCode;
// this.DeptName = DeptName;
// this.DoctCode = DoctCode;
// this.DoctName = DoctName;
// this.Date = Date;
// this.ExecDate = ExecDate;
// this.MZNum = MZNum;
// this.Amount = Amount;
// this.Address = Address;
// this.Note = Note;
// this.Item = Item;
// }
//
// public String getID() {
// return ID;
// }
//
// public void setId(String ID) {
// ID = ID;
// }
//
// public String getName() {
// return Name;
// }
//
// public void setName(String name) {
// Name = name;
// }
//
// 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 getExecDate() {
// return ExecDate;
// }
//
// public void setExecDate(String execDate) {
// ExecDate = execDate;
// }
//
// public String getMZNum() {
// return MZNum;
// }
//
// public void setMZNum(String mZNum) {
// MZNum = mZNum;
// }
//
// public String getAmount() {
// return Amount;
// }
//
// public void setAmount(String amount) {
// Amount = amount;
// }
//
// public String getAddress() {
// return Address;
// }
//
// public void setAddress(String address) {
// Address = address;
// }
//
// public String getNote() {
// return Note;
// }
//
// public void setNote(String note) {
// Note = note;
// }
//
// public List<RecipeItemBean> getItem() {
// return Item;
// }
//
// public void setItem(List<RecipeItemBean> item) {
// Item = item;
// }
//
//}