切换导航条
此项目
正在载入...
登录
WLPT_CLOUD
/
Base_Model
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
xudada
3 years ago
提交
00ffe86af7e759f6e15ca75fb67ffcd66fc95f09
1 个父辈
64101cba
跨天配置
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
120 行增加
和
4 行删除
src/main/java/com/sunyo/wlpt/base/model/CONFIG_IMPORT_CROSSDAY.java
src/main/java/com/sunyo/wlpt/base/model/CONFIG_IMPORT_CROSSDAY.java
查看文件 @
00ffe86
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
;
}
}
...
...
请
注册
或
登录
后发表评论