ItemInfo.java
637 Bytes
package com.xiniunet.web.home.domain;
import com.xiniunet.master.domain.inventory.Item;
/**
* Created by 马燕 on 2015/1/14.
*/
public class ItemInfo extends Item {
/**
* 类别名称
*/
private String categoryName;
/**
* 库存成本价
*/
private Double oldCost;
public String getCategoryName() {
return categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public Double getOldCost() {
return oldCost;
}
public void setOldCost(Double oldCost) {
this.oldCost = oldCost;
}
}