|  |  | package com.sunyo.wlpt.base.model; | 
|  |  |  | 
|  |  | import lombok.Data; | 
|  |  |  | 
|  |  | import java.util.Date; | 
|  |  | @Data | 
|  |  |  | 
|  |  | public class CONFIG_IMPORT_CROSSDAY { | 
|  |  | private String id; | 
|  |  |  | 
| ... | ... | @@ -33,7 +31,125 @@ public class CONFIG_IMPORT_CROSSDAY { | 
|  |  |  | 
|  |  | private String remark; | 
|  |  |  | 
|  |  | private String schedule; | 
|  |  | private Integer 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 String getFlightno() { | 
|  |  | return flightno; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setFlightno(String flightno) { | 
|  |  | this.flightno = flightno == null ? null : flightno.trim(); | 
|  |  | } | 
|  |  |  | 
|  |  | 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 Integer getSchedule() { | 
|  |  | return schedule; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setSchedule(Integer schedule) { | 
|  |  | this.schedule = schedule; | 
|  |  | } | 
|  |  | } | 
... | ... |  |