123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package com.ruoyi.shipping.excel;
- import com.ruoyi.common.annotation.Excel;
- import java.util.Date;
- /**
- * 凯和单航次配船
- */
- public class singleVoyageByShipExcel {
- private static final long serialVersionUID = 1L;
- @Excel(name = "船名")
- private String vslName;
- @Excel(name = "航次")
- private String voyNo;
- @Excel(name = "开船日期")
- private Date fAtd;
- @Excel(name = "到港日期")
- private Date fAta;
- @Excel(name = "航线")
- private String fName;
- @Excel(name = "装港")
- private String loadportName;
- @Excel(name = "卸港")
- private String destportName;
- public String getVslName() {
- return vslName;
- }
- public void setVslName(String vslName) {
- this.vslName = vslName;
- }
- public String getVoyNo() {
- return voyNo;
- }
- public void setVoyNo(String voyNo) {
- this.voyNo = voyNo;
- }
- public Date getfAtd() {
- return fAtd;
- }
- public void setfAtd(Date fAtd) {
- this.fAtd = fAtd;
- }
- public Date getfAta() {
- return fAta;
- }
- public void setfAta(Date fAta) {
- this.fAta = fAta;
- }
- public String getfName() {
- return fName;
- }
- public void setfName(String fName) {
- this.fName = fName;
- }
- public String getLoadportName() {
- return loadportName;
- }
- public void setLoadportName(String loadportName) {
- this.loadportName = loadportName;
- }
- public String getDestportName() {
- return destportName;
- }
- public void setDestportName(String destportName) {
- this.destportName = destportName;
- }
- @Override
- public String toString() {
- return "singleVoyageByShipExcel{" +
- "vslName='" + vslName + '\'' +
- ", voyNo='" + voyNo + '\'' +
- ", fAtd=" + fAtd +
- ", fAta=" + fAta +
- ", fName='" + fName + '\'' +
- ", loadportName='" + loadportName + '\'' +
- ", destportName='" + destportName + '\'' +
- '}';
- }
- }
|