|
|
package com.agent.vo.agent;
|
|
|
|
|
|
/**
|
|
|
* @Auther: shenhl
|
|
|
* @Date: 2019/4/28 11:22
|
|
|
*/
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* 生成报文 安检申报Vo
|
|
|
*/
|
|
|
public class SDVo {
|
|
|
|
|
|
/**
|
|
|
* 运单号
|
|
|
*/
|
|
|
private String sd_waybill;
|
|
|
|
|
|
/**
|
|
|
* 货物托运人名称
|
|
|
*/
|
|
|
private String sd_cargo_shipper_name;
|
|
|
|
|
|
/**
|
|
|
* 货物代理人名称
|
|
|
*/
|
|
|
private String sd_cargo_agent_name;
|
|
|
|
|
|
/**
|
|
|
* 航协编号
|
|
|
*/
|
|
|
private String sd_iata_number;
|
|
|
|
|
|
/**
|
|
|
* 运输条件鉴定书
|
|
|
*/
|
|
|
private String sd_transport_certificate;
|
|
|
|
|
|
/**
|
|
|
* 航空公司同意运输证明
|
|
|
*/
|
|
|
private String sd_transportation_prove;
|
|
|
|
|
|
/**
|
|
|
* 航班号
|
|
|
*/
|
|
|
private String flightno;
|
|
|
/**
|
|
|
* 航班日期
|
|
|
*/
|
|
|
private Date flightdate;
|
|
|
|
|
|
/**
|
|
|
* 目的地
|
|
|
*/
|
|
|
private String destinationstation;
|
|
|
|
|
|
/**
|
|
|
* 总重量
|
|
|
*/
|
|
|
private String totalweight;
|
|
|
/**
|
|
|
* 总件数
|
|
|
*/
|
|
|
private String totalpiece;
|
|
|
|
|
|
/**
|
|
|
* 承运人
|
|
|
*/
|
|
|
private String carrier;
|
|
|
|
|
|
/**
|
|
|
* 货物品名
|
|
|
*/
|
|
|
private String sd_cargo_name;
|
|
|
|
|
|
/**
|
|
|
* 货物性质(类型) 1普通货物 2特种货物 3 危险品 4航空快件
|
|
|
*/
|
|
|
private String sd_cargo_type;
|
|
|
|
|
|
public String getSd_cargo_name() {
|
|
|
return sd_cargo_name;
|
|
|
}
|
|
|
|
|
|
public void setSd_cargo_name(String sd_cargo_name) {
|
|
|
this.sd_cargo_name = sd_cargo_name;
|
|
|
}
|
|
|
|
|
|
public String getSd_cargo_type() {
|
|
|
return sd_cargo_type;
|
|
|
}
|
|
|
|
|
|
public void setSd_cargo_type(String sd_cargo_type) {
|
|
|
this.sd_cargo_type = sd_cargo_type;
|
|
|
}
|
|
|
|
|
|
public String getSd_waybill() {
|
|
|
return sd_waybill;
|
|
|
}
|
|
|
|
|
|
public void setSd_waybill(String sd_waybill) {
|
|
|
this.sd_waybill = sd_waybill;
|
|
|
}
|
|
|
|
|
|
public String getSd_cargo_shipper_name() {
|
|
|
return sd_cargo_shipper_name;
|
|
|
}
|
|
|
|
|
|
public void setSd_cargo_shipper_name(String sd_cargo_shipper_name) {
|
|
|
this.sd_cargo_shipper_name = sd_cargo_shipper_name;
|
|
|
}
|
|
|
|
|
|
public String getSd_cargo_agent_name() {
|
|
|
return sd_cargo_agent_name;
|
|
|
}
|
|
|
|
|
|
public void setSd_cargo_agent_name(String sd_cargo_agent_name) {
|
|
|
this.sd_cargo_agent_name = sd_cargo_agent_name;
|
|
|
}
|
|
|
|
|
|
public String getSd_iata_number() {
|
|
|
return sd_iata_number;
|
|
|
}
|
|
|
|
|
|
public void setSd_iata_number(String sd_iata_number) {
|
|
|
this.sd_iata_number = sd_iata_number;
|
|
|
}
|
|
|
|
|
|
public String getSd_transport_certificate() {
|
|
|
return sd_transport_certificate;
|
|
|
}
|
|
|
|
|
|
public void setSd_transport_certificate(String sd_transport_certificate) {
|
|
|
this.sd_transport_certificate = sd_transport_certificate;
|
|
|
}
|
|
|
|
|
|
public String getSd_transportation_prove() {
|
|
|
return sd_transportation_prove;
|
|
|
}
|
|
|
|
|
|
public void setSd_transportation_prove(String sd_transportation_prove) {
|
|
|
this.sd_transportation_prove = sd_transportation_prove;
|
|
|
}
|
|
|
|
|
|
public String getFlightno() {
|
|
|
return flightno;
|
|
|
}
|
|
|
|
|
|
public void setFlightno(String flightno) {
|
|
|
this.flightno = flightno;
|
|
|
}
|
|
|
|
|
|
public Date getFlightdate() {
|
|
|
return flightdate;
|
|
|
}
|
|
|
|
|
|
public void setFlightdate(Date flightdate) {
|
|
|
this.flightdate = flightdate;
|
|
|
}
|
|
|
|
|
|
public String getDestinationstation() {
|
|
|
return destinationstation;
|
|
|
}
|
|
|
|
|
|
public void setDestinationstation(String destinationstation) {
|
|
|
this.destinationstation = destinationstation;
|
|
|
}
|
|
|
|
|
|
public String getTotalweight() {
|
|
|
return totalweight;
|
|
|
}
|
|
|
|
|
|
public void setTotalweight(String totalweight) {
|
|
|
this.totalweight = totalweight;
|
|
|
}
|
|
|
|
|
|
public String getTotalpiece() {
|
|
|
return totalpiece;
|
|
|
}
|
|
|
|
|
|
public void setTotalpiece(String totalpiece) {
|
|
|
this.totalpiece = totalpiece;
|
|
|
}
|
|
|
|
|
|
public String getCarrier() {
|
|
|
return carrier;
|
|
|
}
|
|
|
|
|
|
public void setCarrier(String carrier) {
|
|
|
this.carrier = carrier;
|
|
|
}
|
|
|
} |
...
|
...
|
|