|
|
package com.sunyo.wlpt.base.model;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
public class CONFIG_IMPORT_CROSSDAY {
|
|
|
private String id;
|
|
|
|
|
|
private Boolean state;
|
|
|
|
|
|
private String carrier;
|
|
|
|
|
|
private Integer flightno;
|
|
|
|
|
|
private String originatingstation;
|
|
|
|
|
|
private String destinationstation;
|
|
|
|
|
|
private Integer crossdays;
|
|
|
|
|
|
private Date effectivedate;
|
|
|
|
|
|
private Date expirationdate;
|
|
|
|
|
|
private String operuser;
|
|
|
|
|
|
private Date operdate;
|
|
|
|
|
|
private String updateuser;
|
|
|
|
|
|
private Date updatedate;
|
|
|
|
|
|
private String remark;
|
|
|
|
|
|
private String schedule;
|
|
|
|
|
|
public String getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
public void setId(String id) {
|
|
|
this.id = id == null ? null : id.trim();
|
|
|
}
|
|
|
|
|
|
public Boolean getState() {
|
|
|
return state;
|
|
|
}
|
|
|
|
|
|
public void setState(Boolean state) {
|
|
|
this.state = state;
|
|
|
}
|
|
|
|
|
|
public String getCarrier() {
|
|
|
return carrier;
|
|
|
}
|
|
|
|
|
|
public void setCarrier(String carrier) {
|
|
|
this.carrier = carrier == null ? null : carrier.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getFlightno() {
|
|
|
return flightno;
|
|
|
}
|
|
|
|
|
|
public void setFlightno(Integer flightno) {
|
|
|
this.flightno = flightno;
|
|
|
}
|
|
|
|
|
|
public String getOriginatingstation() {
|
|
|
return originatingstation;
|
|
|
}
|
|
|
|
|
|
public void setOriginatingstation(String originatingstation) {
|
|
|
this.originatingstation = originatingstation == null ? null : originatingstation.trim();
|
|
|
}
|
|
|
|
|
|
public String getDestinationstation() {
|
|
|
return destinationstation;
|
|
|
}
|
|
|
|
|
|
public void setDestinationstation(String destinationstation) {
|
|
|
this.destinationstation = destinationstation == null ? null : destinationstation.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getCrossdays() {
|
|
|
return crossdays;
|
|
|
}
|
|
|
|
|
|
public void setCrossdays(Integer crossdays) {
|
|
|
this.crossdays = crossdays;
|
|
|
}
|
|
|
|
|
|
public Date getEffectivedate() {
|
|
|
return effectivedate;
|
|
|
}
|
|
|
|
|
|
public void setEffectivedate(Date effectivedate) {
|
|
|
this.effectivedate = effectivedate;
|
|
|
}
|
|
|
|
|
|
public Date getExpirationdate() {
|
|
|
return expirationdate;
|
|
|
}
|
|
|
|
|
|
public void setExpirationdate(Date expirationdate) {
|
|
|
this.expirationdate = expirationdate;
|
|
|
}
|
|
|
|
|
|
public String getOperuser() {
|
|
|
return operuser;
|
|
|
}
|
|
|
|
|
|
public void setOperuser(String operuser) {
|
|
|
this.operuser = operuser == null ? null : operuser.trim();
|
|
|
}
|
|
|
|
|
|
public Date getOperdate() {
|
|
|
return operdate;
|
|
|
}
|
|
|
|
|
|
public void setOperdate(Date operdate) {
|
|
|
this.operdate = operdate;
|
|
|
}
|
|
|
|
|
|
public String getUpdateuser() {
|
|
|
return updateuser;
|
|
|
}
|
|
|
|
|
|
public void setUpdateuser(String updateuser) {
|
|
|
this.updateuser = updateuser == null ? null : updateuser.trim();
|
|
|
}
|
|
|
|
|
|
public Date getUpdatedate() {
|
|
|
return updatedate;
|
|
|
}
|
|
|
|
|
|
public void setUpdatedate(Date updatedate) {
|
|
|
this.updatedate = updatedate;
|
|
|
}
|
|
|
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
|
|
|
|
public void setRemark(String remark) {
|
|
|
this.remark = remark == null ? null : remark.trim();
|
|
|
}
|
|
|
|
|
|
public String getSchedule() {
|
|
|
return schedule;
|
|
|
}
|
|
|
|
|
|
public void setSchedule(String schedule) {
|
|
|
this.schedule = schedule == null ? null : schedule.trim();
|
|
|
}
|
|
|
} |
...
|
...
|
|