singleVoyageByShipExcel.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package com.ruoyi.shipping.excel;
  2. import com.ruoyi.common.annotation.Excel;
  3. import java.util.Date;
  4. /**
  5. * 凯和单航次配船
  6. */
  7. public class singleVoyageByShipExcel {
  8. private static final long serialVersionUID = 1L;
  9. @Excel(name = "船名")
  10. private String vslName;
  11. @Excel(name = "航次")
  12. private String voyNo;
  13. @Excel(name = "开船日期")
  14. private Date fAtd;
  15. @Excel(name = "到港日期")
  16. private Date fAta;
  17. @Excel(name = "航线")
  18. private String fName;
  19. @Excel(name = "装港")
  20. private String loadportName;
  21. @Excel(name = "卸港")
  22. private String destportName;
  23. public String getVslName() {
  24. return vslName;
  25. }
  26. public void setVslName(String vslName) {
  27. this.vslName = vslName;
  28. }
  29. public String getVoyNo() {
  30. return voyNo;
  31. }
  32. public void setVoyNo(String voyNo) {
  33. this.voyNo = voyNo;
  34. }
  35. public Date getfAtd() {
  36. return fAtd;
  37. }
  38. public void setfAtd(Date fAtd) {
  39. this.fAtd = fAtd;
  40. }
  41. public Date getfAta() {
  42. return fAta;
  43. }
  44. public void setfAta(Date fAta) {
  45. this.fAta = fAta;
  46. }
  47. public String getfName() {
  48. return fName;
  49. }
  50. public void setfName(String fName) {
  51. this.fName = fName;
  52. }
  53. public String getLoadportName() {
  54. return loadportName;
  55. }
  56. public void setLoadportName(String loadportName) {
  57. this.loadportName = loadportName;
  58. }
  59. public String getDestportName() {
  60. return destportName;
  61. }
  62. public void setDestportName(String destportName) {
  63. this.destportName = destportName;
  64. }
  65. @Override
  66. public String toString() {
  67. return "singleVoyageByShipExcel{" +
  68. "vslName='" + vslName + '\'' +
  69. ", voyNo='" + voyNo + '\'' +
  70. ", fAtd=" + fAtd +
  71. ", fAta=" + fAta +
  72. ", fName='" + fName + '\'' +
  73. ", loadportName='" + loadportName + '\'' +
  74. ", destportName='" + destportName + '\'' +
  75. '}';
  76. }
  77. }