对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | import com.gk.firework.Domain.ContractOrderInfo; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | |
| | | @ApiModel("合同订单扩展类") |
| | | public class ContractOrderVo extends ContractOrderInfo { |
| | | |
| | | @ApiModelProperty("合同文件") |
| | | private MultipartFile file; |
| | | |
| | | @ApiModelProperty("合同产品列表") |
| | | private List<ProductVo> productInfoList; |
| | | |
| | | private String productList; |
| | | |
| | | public String getProductList() { |
| | | return productList == null ? "" : productList; |
| | | } |
| | | |
| | | public void setProductList(String productList) { |
| | | this.productList = productList; |
| | | } |
| | | |
| | | public List<ProductVo> getProductInfoList() { |
| | | return productInfoList; |
| | | } |
| | | |
| | | public void setProductInfoList(List<ProductVo> productInfoList) { |
| | | this.productInfoList = productInfoList; |
| | | } |
| | | |
| | | public MultipartFile getFile() { |
| | | return file; |
| | | } |
| | | |
| | | public void setFile(MultipartFile file) { |
| | | this.file = file; |
| | | } |
| | | } |