|
|
package com.sunyo.wlpt.base.model;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
public class SecurityDeclaration {
|
|
|
private Integer id;
|
|
|
|
|
|
private String sdWaybill;
|
|
|
|
|
|
private String sdCargoShipperName;
|
|
|
|
|
|
private String sdCargoAgentName;
|
|
|
|
|
|
private String sdIataNumber;
|
|
|
|
|
|
private String sdTransportCertificate;
|
|
|
|
|
|
private String sdTransportationProve;
|
|
|
|
|
|
private Integer userId;
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
|
|
private Date operationTime;
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
|
|
private Date updateTime;
|
|
|
|
|
|
private Integer piece;
|
|
|
|
|
|
private BigDecimal weight;
|
|
|
|
|
|
private String destination;
|
|
|
|
|
|
private String carrier;
|
|
|
|
|
|
private String flightno;
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
|
|
private Date flightdate;
|
|
|
|
|
|
private String customcode;
|
|
|
|
|
|
private String cargoName;
|
|
|
|
|
|
private String cargoType;
|
|
|
|
|
|
private String status;
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
public String getSdWaybill() {
|
|
|
return sdWaybill;
|
|
|
}
|
|
|
|
|
|
public void setSdWaybill(String sdWaybill) {
|
|
|
this.sdWaybill = sdWaybill == null ? null : sdWaybill.trim();
|
|
|
}
|
|
|
|
|
|
public String getSdCargoShipperName() {
|
|
|
return sdCargoShipperName;
|
|
|
}
|
|
|
|
|
|
public void setSdCargoShipperName(String sdCargoShipperName) {
|
|
|
this.sdCargoShipperName = sdCargoShipperName == null ? null : sdCargoShipperName.trim();
|
|
|
}
|
|
|
|
|
|
public String getSdCargoAgentName() {
|
|
|
return sdCargoAgentName;
|
|
|
}
|
|
|
|
|
|
public void setSdCargoAgentName(String sdCargoAgentName) {
|
|
|
this.sdCargoAgentName = sdCargoAgentName == null ? null : sdCargoAgentName.trim();
|
|
|
}
|
|
|
|
|
|
public String getSdIataNumber() {
|
|
|
return sdIataNumber;
|
|
|
}
|
|
|
|
|
|
public void setSdIataNumber(String sdIataNumber) {
|
|
|
this.sdIataNumber = sdIataNumber == null ? null : sdIataNumber.trim();
|
|
|
}
|
|
|
|
|
|
public String getSdTransportCertificate() {
|
|
|
return sdTransportCertificate;
|
|
|
}
|
|
|
|
|
|
public void setSdTransportCertificate(String sdTransportCertificate) {
|
|
|
this.sdTransportCertificate = sdTransportCertificate == null ? null : sdTransportCertificate.trim();
|
|
|
}
|
|
|
|
|
|
public String getSdTransportationProve() {
|
|
|
return sdTransportationProve;
|
|
|
}
|
|
|
|
|
|
public void setSdTransportationProve(String sdTransportationProve) {
|
|
|
this.sdTransportationProve = sdTransportationProve == null ? null : sdTransportationProve.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getUserId() {
|
|
|
return userId;
|
|
|
}
|
|
|
|
|
|
public void setUserId(Integer userId) {
|
|
|
this.userId = userId;
|
|
|
}
|
|
|
|
|
|
public Date getOperationTime() {
|
|
|
return operationTime;
|
|
|
}
|
|
|
|
|
|
public void setOperationTime(Date operationTime) {
|
|
|
this.operationTime = operationTime;
|
|
|
}
|
|
|
|
|
|
public Date getUpdateTime() {
|
|
|
return updateTime;
|
|
|
}
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
|
|
|
public Integer getPiece() {
|
|
|
return piece;
|
|
|
}
|
|
|
|
|
|
public void setPiece(Integer piece) {
|
|
|
this.piece = piece;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getWeight() {
|
|
|
return weight;
|
|
|
}
|
|
|
|
|
|
public void setWeight(BigDecimal weight) {
|
|
|
this.weight = weight;
|
|
|
}
|
|
|
|
|
|
public String getDestination() {
|
|
|
return destination;
|
|
|
}
|
|
|
|
|
|
public void setDestination(String destination) {
|
|
|
this.destination = destination == null ? null : destination.trim();
|
|
|
}
|
|
|
|
|
|
public String getCarrier() {
|
|
|
return carrier;
|
|
|
}
|
|
|
|
|
|
public void setCarrier(String carrier) {
|
|
|
this.carrier = carrier == null ? null : carrier.trim();
|
|
|
}
|
|
|
|
|
|
public String getFlightno() {
|
|
|
return flightno;
|
|
|
}
|
|
|
|
|
|
public void setFlightno(String flightno) {
|
|
|
this.flightno = flightno == null ? null : flightno.trim();
|
|
|
}
|
|
|
|
|
|
public Date getFlightdate() {
|
|
|
return flightdate;
|
|
|
}
|
|
|
|
|
|
public void setFlightdate(Date flightdate) {
|
|
|
this.flightdate = flightdate;
|
|
|
}
|
|
|
|
|
|
public String getCustomcode() {
|
|
|
return customcode;
|
|
|
}
|
|
|
|
|
|
public void setCustomcode(String customcode) {
|
|
|
this.customcode = customcode == null ? null : customcode.trim();
|
|
|
}
|
|
|
|
|
|
public String getCargoName() {
|
|
|
return cargoName;
|
|
|
}
|
|
|
|
|
|
public void setCargoName(String cargoName) {
|
|
|
this.cargoName = cargoName == null ? null : cargoName.trim();
|
|
|
}
|
|
|
|
|
|
public String getCargoType() {
|
|
|
return cargoType;
|
|
|
}
|
|
|
|
|
|
public void setCargoType(String cargoType) {
|
|
|
this.cargoType = cargoType == null ? null : cargoType.trim();
|
|
|
}
|
|
|
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(String status) {
|
|
|
this.status = status == null ? null : status.trim();
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|