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.
91 lines
2.2 KiB
91 lines
2.2 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年8月3日下午6:04:49
|
|
// * @version v1.0.0
|
|
// * @Copyright: 2017云南新八达科技有限公司 All rights reserved.
|
|
// */
|
|
//
|
|
//@XmlAccessorType(XmlAccessType.FIELD)
|
|
//@XmlRootElement(name = "Item")
|
|
//@XmlType(propOrder = { "ItemId", "ItemName", "ItemType", "Specs", "Unit", "Price", "Quantity"})
|
|
//public class RecipeItemBean implements Serializable {
|
|
// /**
|
|
// *
|
|
// */
|
|
// private static final long serialVersionUID = 1L;
|
|
// String ItemId;
|
|
// String ItemName;
|
|
// String ItemType;
|
|
// String Specs;
|
|
// String Unit;
|
|
// String Price;
|
|
// String Quantity;
|
|
//
|
|
// public RecipeItemBean(){
|
|
// super();
|
|
// }
|
|
//
|
|
// public RecipeItemBean(String ItemId, String ItemName, String ItemType, String Specs, String Unit, String Price, String Quantity){
|
|
// this.ItemId = ItemId;
|
|
// this.ItemName = ItemName;
|
|
// this.ItemType = ItemType;
|
|
// this.Specs = Specs;
|
|
// this.Unit = Unit;
|
|
// this.Price = Price;
|
|
// this.Quantity = Quantity;
|
|
// }
|
|
//
|
|
// 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 getSpecs() {
|
|
// return Specs;
|
|
// }
|
|
// public void setSpecs(String specs) {
|
|
// Specs = specs;
|
|
// }
|
|
// 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 getQuantity() {
|
|
// return Quantity;
|
|
// }
|
|
// public void setQuantity(String quantity) {
|
|
// Quantity = quantity;
|
|
// }
|
|
//
|
|
//}
|
|
|