正在显示
1 个修改的文件
包含
120 行增加
和
4 行删除
| 1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
| 2 | 2 | ||
| 3 | -import lombok.Data; | ||
| 4 | - | ||
| 5 | import java.util.Date; | 3 | import java.util.Date; |
| 6 | -@Data | 4 | + |
| 7 | public class CONFIG_IMPORT_CROSSDAY { | 5 | public class CONFIG_IMPORT_CROSSDAY { |
| 8 | private String id; | 6 | private String id; |
| 9 | 7 | ||
| @@ -33,7 +31,125 @@ public class CONFIG_IMPORT_CROSSDAY { | @@ -33,7 +31,125 @@ public class CONFIG_IMPORT_CROSSDAY { | ||
| 33 | 31 | ||
| 34 | private String remark; | 32 | private String remark; |
| 35 | 33 | ||
| 36 | - private String schedule; | 34 | + private Integer 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 String getFlightno() { | ||
| 61 | + return flightno; | ||
| 62 | + } | ||
| 63 | + | ||
| 64 | + public void setFlightno(String flightno) { | ||
| 65 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
| 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 | + } | ||
| 37 | 147 | ||
| 148 | + public Integer getSchedule() { | ||
| 149 | + return schedule; | ||
| 150 | + } | ||
| 38 | 151 | ||
| 152 | + public void setSchedule(Integer schedule) { | ||
| 153 | + this.schedule = schedule; | ||
| 154 | + } | ||
| 39 | } | 155 | } |
-
请 注册 或 登录 后发表评论