正在显示
2 个修改的文件
包含
211 行增加
和
16 行删除
base.iml
已删除
100644 → 0
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | -<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> | ||
| 3 | - <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5"> | ||
| 4 | - <output url="file://$MODULE_DIR$/target/classes" /> | ||
| 5 | - <output-test url="file://$MODULE_DIR$/target/test-classes" /> | ||
| 6 | - <content url="file://$MODULE_DIR$"> | ||
| 7 | - <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> | ||
| 8 | - <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> | ||
| 9 | - <excludeFolder url="file://$MODULE_DIR$/target" /> | ||
| 10 | - </content> | ||
| 11 | - <orderEntry type="inheritedJdk" /> | ||
| 12 | - <orderEntry type="sourceFolder" forTests="false" /> | ||
| 13 | - <orderEntry type="library" name="Maven: org.projectlombok:lombok:1.18.8" level="project" /> | ||
| 14 | - <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.10.0" level="project" /> | ||
| 15 | - </component> | ||
| 16 | -</module> |
| 1 | +package com.sunyo.wlpt.base.model; | ||
| 2 | + | ||
| 3 | +import com.fasterxml.jackson.annotation.JsonFormat; | ||
| 4 | + | ||
| 5 | +import java.math.BigDecimal; | ||
| 6 | +import java.util.Date; | ||
| 7 | + | ||
| 8 | +public class SecurityDeclaration { | ||
| 9 | + private Integer id; | ||
| 10 | + | ||
| 11 | + private String sdWaybill; | ||
| 12 | + | ||
| 13 | + private String sdCargoShipperName; | ||
| 14 | + | ||
| 15 | + private String sdCargoAgentName; | ||
| 16 | + | ||
| 17 | + private String sdIataNumber; | ||
| 18 | + | ||
| 19 | + private String sdTransportCertificate; | ||
| 20 | + | ||
| 21 | + private String sdTransportationProve; | ||
| 22 | + | ||
| 23 | + private Integer userId; | ||
| 24 | + | ||
| 25 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
| 26 | + private Date operationTime; | ||
| 27 | + | ||
| 28 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
| 29 | + private Date updateTime; | ||
| 30 | + | ||
| 31 | + private Integer piece; | ||
| 32 | + | ||
| 33 | + private BigDecimal weight; | ||
| 34 | + | ||
| 35 | + private String destination; | ||
| 36 | + | ||
| 37 | + private String carrier; | ||
| 38 | + | ||
| 39 | + private String flightno; | ||
| 40 | + | ||
| 41 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
| 42 | + private Date flightdate; | ||
| 43 | + | ||
| 44 | + private String customcode; | ||
| 45 | + | ||
| 46 | + private String cargoName; | ||
| 47 | + | ||
| 48 | + private String cargoType; | ||
| 49 | + | ||
| 50 | + private String status; | ||
| 51 | + | ||
| 52 | + public Integer getId() { | ||
| 53 | + return id; | ||
| 54 | + } | ||
| 55 | + | ||
| 56 | + public void setId(Integer id) { | ||
| 57 | + this.id = id; | ||
| 58 | + } | ||
| 59 | + | ||
| 60 | + public String getSdWaybill() { | ||
| 61 | + return sdWaybill; | ||
| 62 | + } | ||
| 63 | + | ||
| 64 | + public void setSdWaybill(String sdWaybill) { | ||
| 65 | + this.sdWaybill = sdWaybill == null ? null : sdWaybill.trim(); | ||
| 66 | + } | ||
| 67 | + | ||
| 68 | + public String getSdCargoShipperName() { | ||
| 69 | + return sdCargoShipperName; | ||
| 70 | + } | ||
| 71 | + | ||
| 72 | + public void setSdCargoShipperName(String sdCargoShipperName) { | ||
| 73 | + this.sdCargoShipperName = sdCargoShipperName == null ? null : sdCargoShipperName.trim(); | ||
| 74 | + } | ||
| 75 | + | ||
| 76 | + public String getSdCargoAgentName() { | ||
| 77 | + return sdCargoAgentName; | ||
| 78 | + } | ||
| 79 | + | ||
| 80 | + public void setSdCargoAgentName(String sdCargoAgentName) { | ||
| 81 | + this.sdCargoAgentName = sdCargoAgentName == null ? null : sdCargoAgentName.trim(); | ||
| 82 | + } | ||
| 83 | + | ||
| 84 | + public String getSdIataNumber() { | ||
| 85 | + return sdIataNumber; | ||
| 86 | + } | ||
| 87 | + | ||
| 88 | + public void setSdIataNumber(String sdIataNumber) { | ||
| 89 | + this.sdIataNumber = sdIataNumber == null ? null : sdIataNumber.trim(); | ||
| 90 | + } | ||
| 91 | + | ||
| 92 | + public String getSdTransportCertificate() { | ||
| 93 | + return sdTransportCertificate; | ||
| 94 | + } | ||
| 95 | + | ||
| 96 | + public void setSdTransportCertificate(String sdTransportCertificate) { | ||
| 97 | + this.sdTransportCertificate = sdTransportCertificate == null ? null : sdTransportCertificate.trim(); | ||
| 98 | + } | ||
| 99 | + | ||
| 100 | + public String getSdTransportationProve() { | ||
| 101 | + return sdTransportationProve; | ||
| 102 | + } | ||
| 103 | + | ||
| 104 | + public void setSdTransportationProve(String sdTransportationProve) { | ||
| 105 | + this.sdTransportationProve = sdTransportationProve == null ? null : sdTransportationProve.trim(); | ||
| 106 | + } | ||
| 107 | + | ||
| 108 | + public Integer getUserId() { | ||
| 109 | + return userId; | ||
| 110 | + } | ||
| 111 | + | ||
| 112 | + public void setUserId(Integer userId) { | ||
| 113 | + this.userId = userId; | ||
| 114 | + } | ||
| 115 | + | ||
| 116 | + public Date getOperationTime() { | ||
| 117 | + return operationTime; | ||
| 118 | + } | ||
| 119 | + | ||
| 120 | + public void setOperationTime(Date operationTime) { | ||
| 121 | + this.operationTime = operationTime; | ||
| 122 | + } | ||
| 123 | + | ||
| 124 | + public Date getUpdateTime() { | ||
| 125 | + return updateTime; | ||
| 126 | + } | ||
| 127 | + | ||
| 128 | + public void setUpdateTime(Date updateTime) { | ||
| 129 | + this.updateTime = updateTime; | ||
| 130 | + } | ||
| 131 | + | ||
| 132 | + public Integer getPiece() { | ||
| 133 | + return piece; | ||
| 134 | + } | ||
| 135 | + | ||
| 136 | + public void setPiece(Integer piece) { | ||
| 137 | + this.piece = piece; | ||
| 138 | + } | ||
| 139 | + | ||
| 140 | + public BigDecimal getWeight() { | ||
| 141 | + return weight; | ||
| 142 | + } | ||
| 143 | + | ||
| 144 | + public void setWeight(BigDecimal weight) { | ||
| 145 | + this.weight = weight; | ||
| 146 | + } | ||
| 147 | + | ||
| 148 | + public String getDestination() { | ||
| 149 | + return destination; | ||
| 150 | + } | ||
| 151 | + | ||
| 152 | + public void setDestination(String destination) { | ||
| 153 | + this.destination = destination == null ? null : destination.trim(); | ||
| 154 | + } | ||
| 155 | + | ||
| 156 | + public String getCarrier() { | ||
| 157 | + return carrier; | ||
| 158 | + } | ||
| 159 | + | ||
| 160 | + public void setCarrier(String carrier) { | ||
| 161 | + this.carrier = carrier == null ? null : carrier.trim(); | ||
| 162 | + } | ||
| 163 | + | ||
| 164 | + public String getFlightno() { | ||
| 165 | + return flightno; | ||
| 166 | + } | ||
| 167 | + | ||
| 168 | + public void setFlightno(String flightno) { | ||
| 169 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
| 170 | + } | ||
| 171 | + | ||
| 172 | + public Date getFlightdate() { | ||
| 173 | + return flightdate; | ||
| 174 | + } | ||
| 175 | + | ||
| 176 | + public void setFlightdate(Date flightdate) { | ||
| 177 | + this.flightdate = flightdate; | ||
| 178 | + } | ||
| 179 | + | ||
| 180 | + public String getCustomcode() { | ||
| 181 | + return customcode; | ||
| 182 | + } | ||
| 183 | + | ||
| 184 | + public void setCustomcode(String customcode) { | ||
| 185 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
| 186 | + } | ||
| 187 | + | ||
| 188 | + public String getCargoName() { | ||
| 189 | + return cargoName; | ||
| 190 | + } | ||
| 191 | + | ||
| 192 | + public void setCargoName(String cargoName) { | ||
| 193 | + this.cargoName = cargoName == null ? null : cargoName.trim(); | ||
| 194 | + } | ||
| 195 | + | ||
| 196 | + public String getCargoType() { | ||
| 197 | + return cargoType; | ||
| 198 | + } | ||
| 199 | + | ||
| 200 | + public void setCargoType(String cargoType) { | ||
| 201 | + this.cargoType = cargoType == null ? null : cargoType.trim(); | ||
| 202 | + } | ||
| 203 | + | ||
| 204 | + public String getStatus() { | ||
| 205 | + return status; | ||
| 206 | + } | ||
| 207 | + | ||
| 208 | + public void setStatus(String status) { | ||
| 209 | + this.status = status == null ? null : status.trim(); | ||
| 210 | + } | ||
| 211 | +} |
-
请 注册 或 登录 后发表评论