对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | import com.gk.firework.Domain.ProductInfo; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | |
| | | public class SaleNumVo extends ProductInfo { |
| | | |
| | | private BigDecimal num; |
| | | |
| | | private String itemcode; |
| | | |
| | | private String enterprisenumber; |
| | | |
| | | private String enterprisename; |
| | | |
| | | |
| | | public BigDecimal getNum() { |
| | | return num; |
| | | } |
| | | |
| | | public void setNum(BigDecimal num) { |
| | | this.num = num; |
| | | } |
| | | |
| | | public String getItemcode() { |
| | | return itemcode; |
| | | } |
| | | |
| | | public void setItemcode(String itemcode) { |
| | | this.itemcode = itemcode; |
| | | } |
| | | |
| | | public String getEnterprisenumber() { |
| | | return enterprisenumber; |
| | | } |
| | | |
| | | public void setEnterprisenumber(String enterprisenumber) { |
| | | this.enterprisenumber = enterprisenumber; |
| | | } |
| | | |
| | | public String getEnterprisename() { |
| | | return enterprisename; |
| | | } |
| | | |
| | | public void setEnterprisename(String enterprisename) { |
| | | this.enterprisename = enterprisename; |
| | | } |
| | | } |