对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | import com.gk.firework.Domain.TransportCertificateProduct; |
| | | import java.util.List; |
| | | |
| | | public class TransportArrivalVo { |
| | | |
| | | //运输证编号 |
| | | private String code; |
| | | //产品信息 |
| | | private List<TransportCertificateProduct> productList; |
| | | |
| | | public String getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public void setCode(String code) { |
| | | this.code = code; |
| | | } |
| | | |
| | | public List<TransportCertificateProduct> getProductList() { |
| | | return productList; |
| | | } |
| | | |
| | | public void setProductList(List<TransportCertificateProduct> productList) { |
| | | this.productList = productList; |
| | | } |
| | | } |