正在显示
1 个修改的文件
包含
155 行增加
和
0 行删除
| 1 | +package com.sunyo.wlpt.base.model; | ||
| 2 | + | ||
| 3 | +import java.util.Date; | ||
| 4 | + | ||
| 5 | +public class CONFIG_IMPORT_CROSSDAY { | ||
| 6 | + private String id; | ||
| 7 | + | ||
| 8 | + private Boolean state; | ||
| 9 | + | ||
| 10 | + private String carrier; | ||
| 11 | + | ||
| 12 | + private Integer flightno; | ||
| 13 | + | ||
| 14 | + private String originatingstation; | ||
| 15 | + | ||
| 16 | + private String destinationstation; | ||
| 17 | + | ||
| 18 | + private Integer crossdays; | ||
| 19 | + | ||
| 20 | + private Date effectivedate; | ||
| 21 | + | ||
| 22 | + private Date expirationdate; | ||
| 23 | + | ||
| 24 | + private String operuser; | ||
| 25 | + | ||
| 26 | + private Date operdate; | ||
| 27 | + | ||
| 28 | + private String updateuser; | ||
| 29 | + | ||
| 30 | + private Date updatedate; | ||
| 31 | + | ||
| 32 | + private String remark; | ||
| 33 | + | ||
| 34 | + private String schedule; | ||
| 35 | + | ||
| 36 | + public String getId() { | ||
| 37 | + return id; | ||
| 38 | + } | ||
| 39 | + | ||
| 40 | + public void setId(String id) { | ||
| 41 | + this.id = id == null ? null : id.trim(); | ||
| 42 | + } | ||
| 43 | + | ||
| 44 | + public Boolean getState() { | ||
| 45 | + return state; | ||
| 46 | + } | ||
| 47 | + | ||
| 48 | + public void setState(Boolean state) { | ||
| 49 | + this.state = state; | ||
| 50 | + } | ||
| 51 | + | ||
| 52 | + public String getCarrier() { | ||
| 53 | + return carrier; | ||
| 54 | + } | ||
| 55 | + | ||
| 56 | + public void setCarrier(String carrier) { | ||
| 57 | + this.carrier = carrier == null ? null : carrier.trim(); | ||
| 58 | + } | ||
| 59 | + | ||
| 60 | + public Integer getFlightno() { | ||
| 61 | + return flightno; | ||
| 62 | + } | ||
| 63 | + | ||
| 64 | + public void setFlightno(Integer flightno) { | ||
| 65 | + this.flightno = flightno; | ||
| 66 | + } | ||
| 67 | + | ||
| 68 | + public String getOriginatingstation() { | ||
| 69 | + return originatingstation; | ||
| 70 | + } | ||
| 71 | + | ||
| 72 | + public void setOriginatingstation(String originatingstation) { | ||
| 73 | + this.originatingstation = originatingstation == null ? null : originatingstation.trim(); | ||
| 74 | + } | ||
| 75 | + | ||
| 76 | + public String getDestinationstation() { | ||
| 77 | + return destinationstation; | ||
| 78 | + } | ||
| 79 | + | ||
| 80 | + public void setDestinationstation(String destinationstation) { | ||
| 81 | + this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | ||
| 82 | + } | ||
| 83 | + | ||
| 84 | + public Integer getCrossdays() { | ||
| 85 | + return crossdays; | ||
| 86 | + } | ||
| 87 | + | ||
| 88 | + public void setCrossdays(Integer crossdays) { | ||
| 89 | + this.crossdays = crossdays; | ||
| 90 | + } | ||
| 91 | + | ||
| 92 | + public Date getEffectivedate() { | ||
| 93 | + return effectivedate; | ||
| 94 | + } | ||
| 95 | + | ||
| 96 | + public void setEffectivedate(Date effectivedate) { | ||
| 97 | + this.effectivedate = effectivedate; | ||
| 98 | + } | ||
| 99 | + | ||
| 100 | + public Date getExpirationdate() { | ||
| 101 | + return expirationdate; | ||
| 102 | + } | ||
| 103 | + | ||
| 104 | + public void setExpirationdate(Date expirationdate) { | ||
| 105 | + this.expirationdate = expirationdate; | ||
| 106 | + } | ||
| 107 | + | ||
| 108 | + public String getOperuser() { | ||
| 109 | + return operuser; | ||
| 110 | + } | ||
| 111 | + | ||
| 112 | + public void setOperuser(String operuser) { | ||
| 113 | + this.operuser = operuser == null ? null : operuser.trim(); | ||
| 114 | + } | ||
| 115 | + | ||
| 116 | + public Date getOperdate() { | ||
| 117 | + return operdate; | ||
| 118 | + } | ||
| 119 | + | ||
| 120 | + public void setOperdate(Date operdate) { | ||
| 121 | + this.operdate = operdate; | ||
| 122 | + } | ||
| 123 | + | ||
| 124 | + public String getUpdateuser() { | ||
| 125 | + return updateuser; | ||
| 126 | + } | ||
| 127 | + | ||
| 128 | + public void setUpdateuser(String updateuser) { | ||
| 129 | + this.updateuser = updateuser == null ? null : updateuser.trim(); | ||
| 130 | + } | ||
| 131 | + | ||
| 132 | + public Date getUpdatedate() { | ||
| 133 | + return updatedate; | ||
| 134 | + } | ||
| 135 | + | ||
| 136 | + public void setUpdatedate(Date updatedate) { | ||
| 137 | + this.updatedate = updatedate; | ||
| 138 | + } | ||
| 139 | + | ||
| 140 | + public String getRemark() { | ||
| 141 | + return remark; | ||
| 142 | + } | ||
| 143 | + | ||
| 144 | + public void setRemark(String remark) { | ||
| 145 | + this.remark = remark == null ? null : remark.trim(); | ||
| 146 | + } | ||
| 147 | + | ||
| 148 | + public String getSchedule() { | ||
| 149 | + return schedule; | ||
| 150 | + } | ||
| 151 | + | ||
| 152 | + public void setSchedule(String schedule) { | ||
| 153 | + this.schedule = schedule == null ? null : schedule.trim(); | ||
| 154 | + } | ||
| 155 | +} |
-
请 注册 或 登录 后发表评论