对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.gk.firework.Domain.Enum.CertificateStatus; |
| | | import com.gk.firework.Domain.TransportCertFile; |
| | | import com.gk.firework.Domain.TransportCertProduct; |
| | | import com.gk.firework.Domain.TransportCertificatePerson; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public class TransportCertVo implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | private Long id; |
| | | |
| | | /** 运输证单号 code **/ |
| | | private String code; |
| | | |
| | | /** 企业单位编号 enterprisenumber **/ |
| | | private String enterprisenumber; |
| | | |
| | | /** 运输车辆牌号 carnumber **/ |
| | | private String carnumber; |
| | | |
| | | /** 收货人:单位名称 receivercompanyname **/ |
| | | private String receivercompanyname; |
| | | |
| | | /** 收货人:地址 receiveraddress **/ |
| | | private String receiveraddress; |
| | | |
| | | /** 收货人:负责人姓名 receiverprincipalname **/ |
| | | private String receiverprincipalname; |
| | | |
| | | /** 收货人:负责人电话 receiverprincipalphone **/ |
| | | private String receiverprincipalphone; |
| | | |
| | | /** 电子合同 逗号分割 contractcode **/ |
| | | private String contractcode; |
| | | //审批时间 |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | private Date processtime; |
| | | |
| | | //驾驶人|押运人 |
| | | private String transportPerson; |
| | | |
| | | //产品信息 |
| | | private String transportProduct; |
| | | |
| | | private MultipartFile[] file; |
| | | |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public void setCode(String code) { |
| | | this.code = code; |
| | | } |
| | | |
| | | public String getEnterprisenumber() { |
| | | return enterprisenumber; |
| | | } |
| | | |
| | | public void setEnterprisenumber(String enterprisenumber) { |
| | | this.enterprisenumber = enterprisenumber; |
| | | } |
| | | |
| | | |
| | | public String getCarnumber() { |
| | | return carnumber; |
| | | } |
| | | |
| | | public void setCarnumber(String carnumber) { |
| | | this.carnumber = carnumber; |
| | | } |
| | | |
| | | public String getReceivercompanyname() { |
| | | return receivercompanyname; |
| | | } |
| | | |
| | | public void setReceivercompanyname(String receivercompanyname) { |
| | | this.receivercompanyname = receivercompanyname; |
| | | } |
| | | |
| | | public String getReceiveraddress() { |
| | | return receiveraddress; |
| | | } |
| | | |
| | | public void setReceiveraddress(String receiveraddress) { |
| | | this.receiveraddress = receiveraddress; |
| | | } |
| | | |
| | | public String getReceiverprincipalname() { |
| | | return receiverprincipalname; |
| | | } |
| | | |
| | | public void setReceiverprincipalname(String receiverprincipalname) { |
| | | this.receiverprincipalname = receiverprincipalname; |
| | | } |
| | | |
| | | public String getReceiverprincipalphone() { |
| | | return receiverprincipalphone; |
| | | } |
| | | |
| | | public void setReceiverprincipalphone(String receiverprincipalphone) { |
| | | this.receiverprincipalphone = receiverprincipalphone; |
| | | } |
| | | |
| | | public String getContractcode() { |
| | | return contractcode; |
| | | } |
| | | |
| | | public void setContractcode(String contractcode) { |
| | | this.contractcode = contractcode; |
| | | } |
| | | |
| | | public String getTransportPerson() { |
| | | return transportPerson; |
| | | } |
| | | |
| | | public void setTransportPerson(String transportPerson) { |
| | | this.transportPerson = transportPerson; |
| | | } |
| | | |
| | | public String getTransportProduct() { |
| | | return transportProduct; |
| | | } |
| | | |
| | | public void setTransportProduct(String transportProduct) { |
| | | this.transportProduct = transportProduct; |
| | | } |
| | | |
| | | public MultipartFile[] getFile() { |
| | | return file; |
| | | } |
| | | |
| | | public void setFile(MultipartFile[] file) { |
| | | this.file = file; |
| | | } |
| | | |
| | | public Date getProcesstime() { |
| | | return processtime; |
| | | } |
| | | |
| | | public void setProcesstime(Date processtime) { |
| | | this.processtime = processtime; |
| | | } |
| | | } |