对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | import java.util.List; |
| | | |
| | | public class ProductCodePrint { |
| | | |
| | | private String orderCode; |
| | | |
| | | private Integer batchCode; |
| | | |
| | | private String startCode; |
| | | |
| | | private String endCode; |
| | | |
| | | private List<ProductCodeVo> productCodeVos; |
| | | |
| | | public String getOrderCode() { |
| | | return orderCode; |
| | | } |
| | | |
| | | public void setOrderCode(String orderCode) { |
| | | this.orderCode = orderCode; |
| | | } |
| | | |
| | | public Integer getBatchCode() { |
| | | return batchCode; |
| | | } |
| | | |
| | | public void setBatchCode(Integer batchCode) { |
| | | this.batchCode = batchCode; |
| | | } |
| | | |
| | | public List<ProductCodeVo> getProductCodeVos() { |
| | | return productCodeVos; |
| | | } |
| | | |
| | | public void setProductCodeVos(List<ProductCodeVo> productCodeVos) { |
| | | this.productCodeVos = productCodeVos; |
| | | } |
| | | |
| | | public String getStartCode() { |
| | | return startCode; |
| | | } |
| | | |
| | | public void setStartCode(String startCode) { |
| | | this.startCode = startCode; |
| | | } |
| | | |
| | | public String getEndCode() { |
| | | return endCode; |
| | | } |
| | | |
| | | public void setEndCode(String endCode) { |
| | | this.endCode = endCode; |
| | | } |
| | | } |