|
|
package com.sunyo.wlpt.base.model;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
public class CONFIG_FLIGHT_SEND_IMPORT {
|
|
|
private String id;
|
|
|
|
|
|
private String carrier;
|
|
|
|
|
|
private String flightno;
|
|
|
|
|
|
private String originstation;
|
|
|
|
|
|
private String destinationstation;
|
|
|
|
|
|
private Integer state;
|
|
|
|
|
|
private Date creatDate;
|
|
|
|
|
|
private Date updateTime;
|
|
|
|
|
|
private String opeuser;
|
|
|
|
|
|
public String getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
public void setId(String id) {
|
|
|
this.id = id == null ? null : id.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 String getOriginstation() {
|
|
|
return originstation;
|
|
|
}
|
|
|
|
|
|
public void setOriginstation(String originstation) {
|
|
|
this.originstation = originstation == null ? null : originstation.trim();
|
|
|
}
|
|
|
|
|
|
public String getDestinationstation() {
|
|
|
return destinationstation;
|
|
|
}
|
|
|
|
|
|
public void setDestinationstation(String destinationstation) {
|
|
|
this.destinationstation = destinationstation == null ? null : destinationstation.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getState() {
|
|
|
return state;
|
|
|
}
|
|
|
|
|
|
public void setState(Integer state) {
|
|
|
this.state = state;
|
|
|
}
|
|
|
|
|
|
public Date getCreatDate() {
|
|
|
return creatDate;
|
|
|
}
|
|
|
|
|
|
public void setCreatDate(Date creatDate) {
|
|
|
this.creatDate = creatDate;
|
|
|
}
|
|
|
|
|
|
public Date getUpdateTime() {
|
|
|
return updateTime;
|
|
|
}
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
|
|
|
public String getOpeuser() {
|
|
|
return opeuser;
|
|
|
}
|
|
|
|
|
|
public void setOpeuser(String opeuser) {
|
|
|
this.opeuser = opeuser == null ? null : opeuser.trim();
|
|
|
}
|
|
|
} |
...
|
...
|
|