切换导航条
此项目
正在载入...
登录
WLPT_CLOUD
/
Base_Model
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
朱兆平
6 years ago
提交
5be50bde472bb55397f1e9cd9274799081cb0a50
0 个父辈
master
init
包含了舱单与运单实体
隐藏空白字符变更
内嵌
并排对比
正在显示
33 个修改的文件
包含
3505 行增加
和
0 行删除
ReadMe.md
pom.xml
src/main/java/com/sunyo/wlpt/base/dao/AWB_AWBINFOMapper.java
src/main/java/com/sunyo/wlpt/base/dao/CONFIG_AIRSTATION_CUSTOMCODEMapper.java
src/main/java/com/sunyo/wlpt/base/dao/CONFIG_USER_CARRIERMapper.java
src/main/java/com/sunyo/wlpt/base/dao/CONFIG_USER_CUSTOMCODEMapper.java
src/main/java/com/sunyo/wlpt/base/dao/CONFIG_USER_EnterpriseCodeMapper.java
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT1201Mapper.java
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT2201Mapper.java
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT3201Mapper.java
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT4201Mapper.java
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT520XMapper.java
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT8205Mapper.java
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_RESPONSEMapper.java
src/main/java/com/sunyo/wlpt/base/dao/NMMS_FFM_INFOMapper.java
src/main/java/com/sunyo/wlpt/base/dao/STATIC_CUSTOMCODE_CUSTOMNAMEMapper.java
src/main/java/com/sunyo/wlpt/base/dao/STATIC_CUSTOM_RESPONSE_BASEMapper.java
src/main/java/com/sunyo/wlpt/base/model/AWB_AWBINFO.java
src/main/java/com/sunyo/wlpt/base/model/CONFIG_AIRSTATION_CUSTOMCODE.java
src/main/java/com/sunyo/wlpt/base/model/CONFIG_USER_CARRIER.java
src/main/java/com/sunyo/wlpt/base/model/CONFIG_USER_CUSTOMCODE.java
src/main/java/com/sunyo/wlpt/base/model/CONFIG_USER_EnterpriseCode.java
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT1201.java
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT2201.java
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT3201.java
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT4201.java
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT520X.java
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT8205.java
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_RESPONSE.java
src/main/java/com/sunyo/wlpt/base/model/NMMS_FFM_INFO.java
src/main/java/com/sunyo/wlpt/base/model/STATIC_CUSTOMCODE_CUSTOMNAME.java
src/main/java/com/sunyo/wlpt/base/model/STATIC_CUSTOM_RESPONSE_BASE.java
src/main/resources/generator/generatorConfig.xml
要显示太多修改。
重新载入完整差异
差异文件
邮件补丁
为保证性能只显示
33 of 33+
个文件。
ReadMe.md
0 → 100644
查看文件 @
5be50bd
# 物流平台实体公用包
*
WLPT_NMMS新舱单实体
*
WLPT_AWB实体
\ No newline at end of file
...
...
pom.xml
0 → 100644
查看文件 @
5be50bd
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.sunyo.wlpt
</groupId>
<artifactId>
base
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<includeSystemScope>
true
</includeSystemScope>
</configuration>
</plugin>
<!-- mybatis generator 自动生成代码插件 -->
<plugin>
<groupId>
org.mybatis.generator
</groupId>
<artifactId>
mybatis-generator-maven-plugin
</artifactId>
<version>
1.3.2
</version>
<configuration>
<configurationFile>
${basedir}/src/main/resources/generator/generatorConfig.xml
</configurationFile>
<overwrite>
true
</overwrite>
<verbose>
true
</verbose>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/AWB_AWBINFOMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.AWB_AWBINFO
;
public
interface
AWB_AWBINFOMapper
{
int
deleteByPrimaryKey
(
String
billid
);
int
insert
(
AWB_AWBINFO
record
);
int
insertSelective
(
AWB_AWBINFO
record
);
AWB_AWBINFO
selectByPrimaryKey
(
String
billid
);
int
updateByPrimaryKeySelective
(
AWB_AWBINFO
record
);
int
updateByPrimaryKey
(
AWB_AWBINFO
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/CONFIG_AIRSTATION_CUSTOMCODEMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.CONFIG_AIRSTATION_CUSTOMCODE
;
public
interface
CONFIG_AIRSTATION_CUSTOMCODEMapper
{
int
insert
(
CONFIG_AIRSTATION_CUSTOMCODE
record
);
int
insertSelective
(
CONFIG_AIRSTATION_CUSTOMCODE
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/CONFIG_USER_CARRIERMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.CONFIG_USER_CARRIER
;
public
interface
CONFIG_USER_CARRIERMapper
{
int
insert
(
CONFIG_USER_CARRIER
record
);
int
insertSelective
(
CONFIG_USER_CARRIER
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/CONFIG_USER_CUSTOMCODEMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.CONFIG_USER_CUSTOMCODE
;
public
interface
CONFIG_USER_CUSTOMCODEMapper
{
int
insert
(
CONFIG_USER_CUSTOMCODE
record
);
int
insertSelective
(
CONFIG_USER_CUSTOMCODE
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/CONFIG_USER_EnterpriseCodeMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.CONFIG_USER_EnterpriseCode
;
public
interface
CONFIG_USER_EnterpriseCodeMapper
{
int
insert
(
CONFIG_USER_EnterpriseCode
record
);
int
insertSelective
(
CONFIG_USER_EnterpriseCode
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT1201Mapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT1201
;
public
interface
NMMS_CUSTOM_MT1201Mapper
{
int
deleteByPrimaryKey
(
String
uuid
);
int
insert
(
NMMS_CUSTOM_MT1201
record
);
int
insertSelective
(
NMMS_CUSTOM_MT1201
record
);
NMMS_CUSTOM_MT1201
selectByPrimaryKey
(
String
uuid
);
int
updateByPrimaryKeySelective
(
NMMS_CUSTOM_MT1201
record
);
int
updateByPrimaryKey
(
NMMS_CUSTOM_MT1201
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT2201Mapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201
;
public
interface
NMMS_CUSTOM_MT2201Mapper
{
int
deleteByPrimaryKey
(
String
uuid
);
int
insert
(
NMMS_CUSTOM_MT2201
record
);
int
insertSelective
(
NMMS_CUSTOM_MT2201
record
);
NMMS_CUSTOM_MT2201
selectByPrimaryKey
(
String
uuid
);
int
updateByPrimaryKeySelective
(
NMMS_CUSTOM_MT2201
record
);
int
updateByPrimaryKey
(
NMMS_CUSTOM_MT2201
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT3201Mapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT3201
;
public
interface
NMMS_CUSTOM_MT3201Mapper
{
int
deleteByPrimaryKey
(
String
uuid
);
int
insert
(
NMMS_CUSTOM_MT3201
record
);
int
insertSelective
(
NMMS_CUSTOM_MT3201
record
);
NMMS_CUSTOM_MT3201
selectByPrimaryKey
(
String
uuid
);
int
updateByPrimaryKeySelective
(
NMMS_CUSTOM_MT3201
record
);
int
updateByPrimaryKey
(
NMMS_CUSTOM_MT3201
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT4201Mapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT4201
;
public
interface
NMMS_CUSTOM_MT4201Mapper
{
int
deleteByPrimaryKey
(
String
uuid
);
int
insert
(
NMMS_CUSTOM_MT4201
record
);
int
insertSelective
(
NMMS_CUSTOM_MT4201
record
);
NMMS_CUSTOM_MT4201
selectByPrimaryKey
(
String
uuid
);
int
updateByPrimaryKeySelective
(
NMMS_CUSTOM_MT4201
record
);
int
updateByPrimaryKey
(
NMMS_CUSTOM_MT4201
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT520XMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT520X
;
public
interface
NMMS_CUSTOM_MT520XMapper
{
int
deleteByPrimaryKey
(
String
uuid
);
int
insert
(
NMMS_CUSTOM_MT520X
record
);
int
insertSelective
(
NMMS_CUSTOM_MT520X
record
);
NMMS_CUSTOM_MT520X
selectByPrimaryKey
(
String
uuid
);
int
updateByPrimaryKeySelective
(
NMMS_CUSTOM_MT520X
record
);
int
updateByPrimaryKey
(
NMMS_CUSTOM_MT520X
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_MT8205Mapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT8205
;
public
interface
NMMS_CUSTOM_MT8205Mapper
{
int
deleteByPrimaryKey
(
String
uuid
);
int
insert
(
NMMS_CUSTOM_MT8205
record
);
int
insertSelective
(
NMMS_CUSTOM_MT8205
record
);
NMMS_CUSTOM_MT8205
selectByPrimaryKey
(
String
uuid
);
int
updateByPrimaryKeySelective
(
NMMS_CUSTOM_MT8205
record
);
int
updateByPrimaryKey
(
NMMS_CUSTOM_MT8205
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/NMMS_CUSTOM_RESPONSEMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE
;
public
interface
NMMS_CUSTOM_RESPONSEMapper
{
int
deleteByPrimaryKey
(
String
id
);
int
insert
(
NMMS_CUSTOM_RESPONSE
record
);
int
insertSelective
(
NMMS_CUSTOM_RESPONSE
record
);
NMMS_CUSTOM_RESPONSE
selectByPrimaryKey
(
String
id
);
int
updateByPrimaryKeySelective
(
NMMS_CUSTOM_RESPONSE
record
);
int
updateByPrimaryKeyWithBLOBs
(
NMMS_CUSTOM_RESPONSE
record
);
int
updateByPrimaryKey
(
NMMS_CUSTOM_RESPONSE
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/NMMS_FFM_INFOMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.NMMS_FFM_INFO
;
public
interface
NMMS_FFM_INFOMapper
{
int
deleteByPrimaryKey
(
String
autoid
);
int
insert
(
NMMS_FFM_INFO
record
);
int
insertSelective
(
NMMS_FFM_INFO
record
);
NMMS_FFM_INFO
selectByPrimaryKey
(
String
autoid
);
int
updateByPrimaryKeySelective
(
NMMS_FFM_INFO
record
);
int
updateByPrimaryKey
(
NMMS_FFM_INFO
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/STATIC_CUSTOMCODE_CUSTOMNAMEMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.STATIC_CUSTOMCODE_CUSTOMNAME
;
public
interface
STATIC_CUSTOMCODE_CUSTOMNAMEMapper
{
int
insert
(
STATIC_CUSTOMCODE_CUSTOMNAME
record
);
int
insertSelective
(
STATIC_CUSTOMCODE_CUSTOMNAME
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/dao/STATIC_CUSTOM_RESPONSE_BASEMapper.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
dao
;
import
com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE
;
public
interface
STATIC_CUSTOM_RESPONSE_BASEMapper
{
int
insert
(
STATIC_CUSTOM_RESPONSE_BASE
record
);
int
insertSelective
(
STATIC_CUSTOM_RESPONSE_BASE
record
);
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/AWB_AWBINFO.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.math.BigDecimal
;
import
java.util.Date
;
public
class
AWB_AWBINFO
{
private
String
billid
;
private
String
stocktypeid
;
private
String
stockpre
;
private
String
stockno
;
private
String
productid
;
private
String
carrierproductid
;
private
String
delflag
;
private
String
previousbillid
;
private
String
domint
;
private
String
customctl
;
private
String
specopeid
;
private
String
specopeidext
;
private
String
sairportid
;
private
String
scityid
;
private
String
eairportid
;
private
String
ecityid
;
private
String
by1
;
private
String
dest1
;
private
String
dest1city
;
private
String
by2
;
private
String
dest2
;
private
String
dest2city
;
private
String
by3
;
private
String
dest3
;
private
String
dest3city
;
private
String
by4
;
private
String
dest4
;
private
String
dest4city
;
private
String
cargono
;
private
String
cargonm
;
private
String
pack
;
private
String
meas
;
private
BigDecimal
pcs
;
private
BigDecimal
weight
;
private
BigDecimal
feewt
;
private
BigDecimal
vol
;
private
String
ctrlopedepartment
;
private
String
shprname
;
private
String
shprmobiletype
;
private
String
shprtel
;
private
String
shpraddress
;
private
String
shprcountyr
;
private
String
shpcomid
;
private
String
shpaeocode
;
private
String
shpcustomerid
;
private
String
cnsnname
;
private
String
cnsrmobiletype
;
private
String
cnsntel
;
private
String
cnsnaddress
;
private
String
cnscountyr
;
private
String
cnscomid
;
private
String
cnsaeocode
;
private
String
cnsrctcname
;
private
String
cnsrctctel
;
private
String
csgcustomerid
;
private
String
collected
;
private
BigDecimal
exchagerate
;
private
String
comat
;
private
String
refrigerated
;
private
BigDecimal
forknum
;
private
String
whshold
;
private
String
expcusttransit
;
private
String
impcusttransit
;
private
String
shorttrans
;
private
String
shorttransbup
;
private
String
cargoowner
;
private
Date
chargetime
;
private
String
isinstruction
;
private
String
notify
;
private
BigDecimal
shippervalue
;
private
BigDecimal
trafficvalue
;
private
BigDecimal
customvalue
;
private
BigDecimal
insurevalue
;
private
String
fileattached
;
private
String
ratetype
;
private
String
processingmethod
;
private
String
handlingcircs
;
private
String
reservedtonnage
;
private
BigDecimal
carriage
;
private
BigDecimal
rate
;
private
String
crtoper
;
private
String
wtunit
;
private
BigDecimal
originalwt
;
private
BigDecimal
originalfeewt
;
private
String
volunit
;
private
String
currencyid
;
private
BigDecimal
originalvol
;
private
Date
crtopetime
;
private
String
dlvpriority
;
private
String
chked
;
private
Short
labelnum
;
private
String
shpcustomer
;
private
String
crtagent
;
private
Date
crtdate
;
private
BigDecimal
extraweight
;
private
String
storeremark
;
private
String
balanceremark
;
private
String
filechked
;
private
String
iscarbalance
;
private
String
cnsnidcard
;
private
String
ciqcheck
;
private
String
tmpbillno
;
private
String
subbillid
;
private
String
istrans
;
private
String
splittag
;
private
String
customstrans
;
private
String
endoper
;
private
Date
endopetime
;
private
String
confirmoper
;
private
Date
confirmopetime
;
private
String
csgcustomer
;
private
String
relationbillid
;
private
String
customsCountry
;
private
String
customsCity
;
private
String
customsRemark
;
private
String
cargosource
;
private
String
cargonmch
;
private
String
isdgr
;
private
BigDecimal
percent
;
private
String
awbtype
;
private
String
status
;
private
String
paymodel
;
private
Boolean
isdelete
;
private
Date
optime
;
public
String
getBillid
()
{
return
billid
;
}
public
void
setBillid
(
String
billid
)
{
this
.
billid
=
billid
==
null
?
null
:
billid
.
trim
();
}
public
String
getStocktypeid
()
{
return
stocktypeid
;
}
public
void
setStocktypeid
(
String
stocktypeid
)
{
this
.
stocktypeid
=
stocktypeid
==
null
?
null
:
stocktypeid
.
trim
();
}
public
String
getStockpre
()
{
return
stockpre
;
}
public
void
setStockpre
(
String
stockpre
)
{
this
.
stockpre
=
stockpre
==
null
?
null
:
stockpre
.
trim
();
}
public
String
getStockno
()
{
return
stockno
;
}
public
void
setStockno
(
String
stockno
)
{
this
.
stockno
=
stockno
==
null
?
null
:
stockno
.
trim
();
}
public
String
getProductid
()
{
return
productid
;
}
public
void
setProductid
(
String
productid
)
{
this
.
productid
=
productid
==
null
?
null
:
productid
.
trim
();
}
public
String
getCarrierproductid
()
{
return
carrierproductid
;
}
public
void
setCarrierproductid
(
String
carrierproductid
)
{
this
.
carrierproductid
=
carrierproductid
==
null
?
null
:
carrierproductid
.
trim
();
}
public
String
getDelflag
()
{
return
delflag
;
}
public
void
setDelflag
(
String
delflag
)
{
this
.
delflag
=
delflag
==
null
?
null
:
delflag
.
trim
();
}
public
String
getPreviousbillid
()
{
return
previousbillid
;
}
public
void
setPreviousbillid
(
String
previousbillid
)
{
this
.
previousbillid
=
previousbillid
==
null
?
null
:
previousbillid
.
trim
();
}
public
String
getDomint
()
{
return
domint
;
}
public
void
setDomint
(
String
domint
)
{
this
.
domint
=
domint
==
null
?
null
:
domint
.
trim
();
}
public
String
getCustomctl
()
{
return
customctl
;
}
public
void
setCustomctl
(
String
customctl
)
{
this
.
customctl
=
customctl
==
null
?
null
:
customctl
.
trim
();
}
public
String
getSpecopeid
()
{
return
specopeid
;
}
public
void
setSpecopeid
(
String
specopeid
)
{
this
.
specopeid
=
specopeid
==
null
?
null
:
specopeid
.
trim
();
}
public
String
getSpecopeidext
()
{
return
specopeidext
;
}
public
void
setSpecopeidext
(
String
specopeidext
)
{
this
.
specopeidext
=
specopeidext
==
null
?
null
:
specopeidext
.
trim
();
}
public
String
getSairportid
()
{
return
sairportid
;
}
public
void
setSairportid
(
String
sairportid
)
{
this
.
sairportid
=
sairportid
==
null
?
null
:
sairportid
.
trim
();
}
public
String
getScityid
()
{
return
scityid
;
}
public
void
setScityid
(
String
scityid
)
{
this
.
scityid
=
scityid
==
null
?
null
:
scityid
.
trim
();
}
public
String
getEairportid
()
{
return
eairportid
;
}
public
void
setEairportid
(
String
eairportid
)
{
this
.
eairportid
=
eairportid
==
null
?
null
:
eairportid
.
trim
();
}
public
String
getEcityid
()
{
return
ecityid
;
}
public
void
setEcityid
(
String
ecityid
)
{
this
.
ecityid
=
ecityid
==
null
?
null
:
ecityid
.
trim
();
}
public
String
getBy1
()
{
return
by1
;
}
public
void
setBy1
(
String
by1
)
{
this
.
by1
=
by1
==
null
?
null
:
by1
.
trim
();
}
public
String
getDest1
()
{
return
dest1
;
}
public
void
setDest1
(
String
dest1
)
{
this
.
dest1
=
dest1
==
null
?
null
:
dest1
.
trim
();
}
public
String
getDest1city
()
{
return
dest1city
;
}
public
void
setDest1city
(
String
dest1city
)
{
this
.
dest1city
=
dest1city
==
null
?
null
:
dest1city
.
trim
();
}
public
String
getBy2
()
{
return
by2
;
}
public
void
setBy2
(
String
by2
)
{
this
.
by2
=
by2
==
null
?
null
:
by2
.
trim
();
}
public
String
getDest2
()
{
return
dest2
;
}
public
void
setDest2
(
String
dest2
)
{
this
.
dest2
=
dest2
==
null
?
null
:
dest2
.
trim
();
}
public
String
getDest2city
()
{
return
dest2city
;
}
public
void
setDest2city
(
String
dest2city
)
{
this
.
dest2city
=
dest2city
==
null
?
null
:
dest2city
.
trim
();
}
public
String
getBy3
()
{
return
by3
;
}
public
void
setBy3
(
String
by3
)
{
this
.
by3
=
by3
==
null
?
null
:
by3
.
trim
();
}
public
String
getDest3
()
{
return
dest3
;
}
public
void
setDest3
(
String
dest3
)
{
this
.
dest3
=
dest3
==
null
?
null
:
dest3
.
trim
();
}
public
String
getDest3city
()
{
return
dest3city
;
}
public
void
setDest3city
(
String
dest3city
)
{
this
.
dest3city
=
dest3city
==
null
?
null
:
dest3city
.
trim
();
}
public
String
getBy4
()
{
return
by4
;
}
public
void
setBy4
(
String
by4
)
{
this
.
by4
=
by4
==
null
?
null
:
by4
.
trim
();
}
public
String
getDest4
()
{
return
dest4
;
}
public
void
setDest4
(
String
dest4
)
{
this
.
dest4
=
dest4
==
null
?
null
:
dest4
.
trim
();
}
public
String
getDest4city
()
{
return
dest4city
;
}
public
void
setDest4city
(
String
dest4city
)
{
this
.
dest4city
=
dest4city
==
null
?
null
:
dest4city
.
trim
();
}
public
String
getCargono
()
{
return
cargono
;
}
public
void
setCargono
(
String
cargono
)
{
this
.
cargono
=
cargono
==
null
?
null
:
cargono
.
trim
();
}
public
String
getCargonm
()
{
return
cargonm
;
}
public
void
setCargonm
(
String
cargonm
)
{
this
.
cargonm
=
cargonm
==
null
?
null
:
cargonm
.
trim
();
}
public
String
getPack
()
{
return
pack
;
}
public
void
setPack
(
String
pack
)
{
this
.
pack
=
pack
==
null
?
null
:
pack
.
trim
();
}
public
String
getMeas
()
{
return
meas
;
}
public
void
setMeas
(
String
meas
)
{
this
.
meas
=
meas
==
null
?
null
:
meas
.
trim
();
}
public
BigDecimal
getPcs
()
{
return
pcs
;
}
public
void
setPcs
(
BigDecimal
pcs
)
{
this
.
pcs
=
pcs
;
}
public
BigDecimal
getWeight
()
{
return
weight
;
}
public
void
setWeight
(
BigDecimal
weight
)
{
this
.
weight
=
weight
;
}
public
BigDecimal
getFeewt
()
{
return
feewt
;
}
public
void
setFeewt
(
BigDecimal
feewt
)
{
this
.
feewt
=
feewt
;
}
public
BigDecimal
getVol
()
{
return
vol
;
}
public
void
setVol
(
BigDecimal
vol
)
{
this
.
vol
=
vol
;
}
public
String
getCtrlopedepartment
()
{
return
ctrlopedepartment
;
}
public
void
setCtrlopedepartment
(
String
ctrlopedepartment
)
{
this
.
ctrlopedepartment
=
ctrlopedepartment
==
null
?
null
:
ctrlopedepartment
.
trim
();
}
public
String
getShprname
()
{
return
shprname
;
}
public
void
setShprname
(
String
shprname
)
{
this
.
shprname
=
shprname
==
null
?
null
:
shprname
.
trim
();
}
public
String
getShprmobiletype
()
{
return
shprmobiletype
;
}
public
void
setShprmobiletype
(
String
shprmobiletype
)
{
this
.
shprmobiletype
=
shprmobiletype
==
null
?
null
:
shprmobiletype
.
trim
();
}
public
String
getShprtel
()
{
return
shprtel
;
}
public
void
setShprtel
(
String
shprtel
)
{
this
.
shprtel
=
shprtel
==
null
?
null
:
shprtel
.
trim
();
}
public
String
getShpraddress
()
{
return
shpraddress
;
}
public
void
setShpraddress
(
String
shpraddress
)
{
this
.
shpraddress
=
shpraddress
==
null
?
null
:
shpraddress
.
trim
();
}
public
String
getShprcountyr
()
{
return
shprcountyr
;
}
public
void
setShprcountyr
(
String
shprcountyr
)
{
this
.
shprcountyr
=
shprcountyr
==
null
?
null
:
shprcountyr
.
trim
();
}
public
String
getShpcomid
()
{
return
shpcomid
;
}
public
void
setShpcomid
(
String
shpcomid
)
{
this
.
shpcomid
=
shpcomid
==
null
?
null
:
shpcomid
.
trim
();
}
public
String
getShpaeocode
()
{
return
shpaeocode
;
}
public
void
setShpaeocode
(
String
shpaeocode
)
{
this
.
shpaeocode
=
shpaeocode
==
null
?
null
:
shpaeocode
.
trim
();
}
public
String
getShpcustomerid
()
{
return
shpcustomerid
;
}
public
void
setShpcustomerid
(
String
shpcustomerid
)
{
this
.
shpcustomerid
=
shpcustomerid
==
null
?
null
:
shpcustomerid
.
trim
();
}
public
String
getCnsnname
()
{
return
cnsnname
;
}
public
void
setCnsnname
(
String
cnsnname
)
{
this
.
cnsnname
=
cnsnname
==
null
?
null
:
cnsnname
.
trim
();
}
public
String
getCnsrmobiletype
()
{
return
cnsrmobiletype
;
}
public
void
setCnsrmobiletype
(
String
cnsrmobiletype
)
{
this
.
cnsrmobiletype
=
cnsrmobiletype
==
null
?
null
:
cnsrmobiletype
.
trim
();
}
public
String
getCnsntel
()
{
return
cnsntel
;
}
public
void
setCnsntel
(
String
cnsntel
)
{
this
.
cnsntel
=
cnsntel
==
null
?
null
:
cnsntel
.
trim
();
}
public
String
getCnsnaddress
()
{
return
cnsnaddress
;
}
public
void
setCnsnaddress
(
String
cnsnaddress
)
{
this
.
cnsnaddress
=
cnsnaddress
==
null
?
null
:
cnsnaddress
.
trim
();
}
public
String
getCnscountyr
()
{
return
cnscountyr
;
}
public
void
setCnscountyr
(
String
cnscountyr
)
{
this
.
cnscountyr
=
cnscountyr
==
null
?
null
:
cnscountyr
.
trim
();
}
public
String
getCnscomid
()
{
return
cnscomid
;
}
public
void
setCnscomid
(
String
cnscomid
)
{
this
.
cnscomid
=
cnscomid
==
null
?
null
:
cnscomid
.
trim
();
}
public
String
getCnsaeocode
()
{
return
cnsaeocode
;
}
public
void
setCnsaeocode
(
String
cnsaeocode
)
{
this
.
cnsaeocode
=
cnsaeocode
==
null
?
null
:
cnsaeocode
.
trim
();
}
public
String
getCnsrctcname
()
{
return
cnsrctcname
;
}
public
void
setCnsrctcname
(
String
cnsrctcname
)
{
this
.
cnsrctcname
=
cnsrctcname
==
null
?
null
:
cnsrctcname
.
trim
();
}
public
String
getCnsrctctel
()
{
return
cnsrctctel
;
}
public
void
setCnsrctctel
(
String
cnsrctctel
)
{
this
.
cnsrctctel
=
cnsrctctel
==
null
?
null
:
cnsrctctel
.
trim
();
}
public
String
getCsgcustomerid
()
{
return
csgcustomerid
;
}
public
void
setCsgcustomerid
(
String
csgcustomerid
)
{
this
.
csgcustomerid
=
csgcustomerid
==
null
?
null
:
csgcustomerid
.
trim
();
}
public
String
getCollected
()
{
return
collected
;
}
public
void
setCollected
(
String
collected
)
{
this
.
collected
=
collected
==
null
?
null
:
collected
.
trim
();
}
public
BigDecimal
getExchagerate
()
{
return
exchagerate
;
}
public
void
setExchagerate
(
BigDecimal
exchagerate
)
{
this
.
exchagerate
=
exchagerate
;
}
public
String
getComat
()
{
return
comat
;
}
public
void
setComat
(
String
comat
)
{
this
.
comat
=
comat
==
null
?
null
:
comat
.
trim
();
}
public
String
getRefrigerated
()
{
return
refrigerated
;
}
public
void
setRefrigerated
(
String
refrigerated
)
{
this
.
refrigerated
=
refrigerated
==
null
?
null
:
refrigerated
.
trim
();
}
public
BigDecimal
getForknum
()
{
return
forknum
;
}
public
void
setForknum
(
BigDecimal
forknum
)
{
this
.
forknum
=
forknum
;
}
public
String
getWhshold
()
{
return
whshold
;
}
public
void
setWhshold
(
String
whshold
)
{
this
.
whshold
=
whshold
==
null
?
null
:
whshold
.
trim
();
}
public
String
getExpcusttransit
()
{
return
expcusttransit
;
}
public
void
setExpcusttransit
(
String
expcusttransit
)
{
this
.
expcusttransit
=
expcusttransit
==
null
?
null
:
expcusttransit
.
trim
();
}
public
String
getImpcusttransit
()
{
return
impcusttransit
;
}
public
void
setImpcusttransit
(
String
impcusttransit
)
{
this
.
impcusttransit
=
impcusttransit
==
null
?
null
:
impcusttransit
.
trim
();
}
public
String
getShorttrans
()
{
return
shorttrans
;
}
public
void
setShorttrans
(
String
shorttrans
)
{
this
.
shorttrans
=
shorttrans
==
null
?
null
:
shorttrans
.
trim
();
}
public
String
getShorttransbup
()
{
return
shorttransbup
;
}
public
void
setShorttransbup
(
String
shorttransbup
)
{
this
.
shorttransbup
=
shorttransbup
==
null
?
null
:
shorttransbup
.
trim
();
}
public
String
getCargoowner
()
{
return
cargoowner
;
}
public
void
setCargoowner
(
String
cargoowner
)
{
this
.
cargoowner
=
cargoowner
==
null
?
null
:
cargoowner
.
trim
();
}
public
Date
getChargetime
()
{
return
chargetime
;
}
public
void
setChargetime
(
Date
chargetime
)
{
this
.
chargetime
=
chargetime
;
}
public
String
getIsinstruction
()
{
return
isinstruction
;
}
public
void
setIsinstruction
(
String
isinstruction
)
{
this
.
isinstruction
=
isinstruction
==
null
?
null
:
isinstruction
.
trim
();
}
public
String
getNotify
()
{
return
notify
;
}
public
void
setNotify
(
String
notify
)
{
this
.
notify
=
notify
==
null
?
null
:
notify
.
trim
();
}
public
BigDecimal
getShippervalue
()
{
return
shippervalue
;
}
public
void
setShippervalue
(
BigDecimal
shippervalue
)
{
this
.
shippervalue
=
shippervalue
;
}
public
BigDecimal
getTrafficvalue
()
{
return
trafficvalue
;
}
public
void
setTrafficvalue
(
BigDecimal
trafficvalue
)
{
this
.
trafficvalue
=
trafficvalue
;
}
public
BigDecimal
getCustomvalue
()
{
return
customvalue
;
}
public
void
setCustomvalue
(
BigDecimal
customvalue
)
{
this
.
customvalue
=
customvalue
;
}
public
BigDecimal
getInsurevalue
()
{
return
insurevalue
;
}
public
void
setInsurevalue
(
BigDecimal
insurevalue
)
{
this
.
insurevalue
=
insurevalue
;
}
public
String
getFileattached
()
{
return
fileattached
;
}
public
void
setFileattached
(
String
fileattached
)
{
this
.
fileattached
=
fileattached
==
null
?
null
:
fileattached
.
trim
();
}
public
String
getRatetype
()
{
return
ratetype
;
}
public
void
setRatetype
(
String
ratetype
)
{
this
.
ratetype
=
ratetype
==
null
?
null
:
ratetype
.
trim
();
}
public
String
getProcessingmethod
()
{
return
processingmethod
;
}
public
void
setProcessingmethod
(
String
processingmethod
)
{
this
.
processingmethod
=
processingmethod
==
null
?
null
:
processingmethod
.
trim
();
}
public
String
getHandlingcircs
()
{
return
handlingcircs
;
}
public
void
setHandlingcircs
(
String
handlingcircs
)
{
this
.
handlingcircs
=
handlingcircs
==
null
?
null
:
handlingcircs
.
trim
();
}
public
String
getReservedtonnage
()
{
return
reservedtonnage
;
}
public
void
setReservedtonnage
(
String
reservedtonnage
)
{
this
.
reservedtonnage
=
reservedtonnage
==
null
?
null
:
reservedtonnage
.
trim
();
}
public
BigDecimal
getCarriage
()
{
return
carriage
;
}
public
void
setCarriage
(
BigDecimal
carriage
)
{
this
.
carriage
=
carriage
;
}
public
BigDecimal
getRate
()
{
return
rate
;
}
public
void
setRate
(
BigDecimal
rate
)
{
this
.
rate
=
rate
;
}
public
String
getCrtoper
()
{
return
crtoper
;
}
public
void
setCrtoper
(
String
crtoper
)
{
this
.
crtoper
=
crtoper
==
null
?
null
:
crtoper
.
trim
();
}
public
String
getWtunit
()
{
return
wtunit
;
}
public
void
setWtunit
(
String
wtunit
)
{
this
.
wtunit
=
wtunit
==
null
?
null
:
wtunit
.
trim
();
}
public
BigDecimal
getOriginalwt
()
{
return
originalwt
;
}
public
void
setOriginalwt
(
BigDecimal
originalwt
)
{
this
.
originalwt
=
originalwt
;
}
public
BigDecimal
getOriginalfeewt
()
{
return
originalfeewt
;
}
public
void
setOriginalfeewt
(
BigDecimal
originalfeewt
)
{
this
.
originalfeewt
=
originalfeewt
;
}
public
String
getVolunit
()
{
return
volunit
;
}
public
void
setVolunit
(
String
volunit
)
{
this
.
volunit
=
volunit
==
null
?
null
:
volunit
.
trim
();
}
public
String
getCurrencyid
()
{
return
currencyid
;
}
public
void
setCurrencyid
(
String
currencyid
)
{
this
.
currencyid
=
currencyid
==
null
?
null
:
currencyid
.
trim
();
}
public
BigDecimal
getOriginalvol
()
{
return
originalvol
;
}
public
void
setOriginalvol
(
BigDecimal
originalvol
)
{
this
.
originalvol
=
originalvol
;
}
public
Date
getCrtopetime
()
{
return
crtopetime
;
}
public
void
setCrtopetime
(
Date
crtopetime
)
{
this
.
crtopetime
=
crtopetime
;
}
public
String
getDlvpriority
()
{
return
dlvpriority
;
}
public
void
setDlvpriority
(
String
dlvpriority
)
{
this
.
dlvpriority
=
dlvpriority
==
null
?
null
:
dlvpriority
.
trim
();
}
public
String
getChked
()
{
return
chked
;
}
public
void
setChked
(
String
chked
)
{
this
.
chked
=
chked
==
null
?
null
:
chked
.
trim
();
}
public
Short
getLabelnum
()
{
return
labelnum
;
}
public
void
setLabelnum
(
Short
labelnum
)
{
this
.
labelnum
=
labelnum
;
}
public
String
getShpcustomer
()
{
return
shpcustomer
;
}
public
void
setShpcustomer
(
String
shpcustomer
)
{
this
.
shpcustomer
=
shpcustomer
==
null
?
null
:
shpcustomer
.
trim
();
}
public
String
getCrtagent
()
{
return
crtagent
;
}
public
void
setCrtagent
(
String
crtagent
)
{
this
.
crtagent
=
crtagent
==
null
?
null
:
crtagent
.
trim
();
}
public
Date
getCrtdate
()
{
return
crtdate
;
}
public
void
setCrtdate
(
Date
crtdate
)
{
this
.
crtdate
=
crtdate
;
}
public
BigDecimal
getExtraweight
()
{
return
extraweight
;
}
public
void
setExtraweight
(
BigDecimal
extraweight
)
{
this
.
extraweight
=
extraweight
;
}
public
String
getStoreremark
()
{
return
storeremark
;
}
public
void
setStoreremark
(
String
storeremark
)
{
this
.
storeremark
=
storeremark
==
null
?
null
:
storeremark
.
trim
();
}
public
String
getBalanceremark
()
{
return
balanceremark
;
}
public
void
setBalanceremark
(
String
balanceremark
)
{
this
.
balanceremark
=
balanceremark
==
null
?
null
:
balanceremark
.
trim
();
}
public
String
getFilechked
()
{
return
filechked
;
}
public
void
setFilechked
(
String
filechked
)
{
this
.
filechked
=
filechked
==
null
?
null
:
filechked
.
trim
();
}
public
String
getIscarbalance
()
{
return
iscarbalance
;
}
public
void
setIscarbalance
(
String
iscarbalance
)
{
this
.
iscarbalance
=
iscarbalance
==
null
?
null
:
iscarbalance
.
trim
();
}
public
String
getCnsnidcard
()
{
return
cnsnidcard
;
}
public
void
setCnsnidcard
(
String
cnsnidcard
)
{
this
.
cnsnidcard
=
cnsnidcard
==
null
?
null
:
cnsnidcard
.
trim
();
}
public
String
getCiqcheck
()
{
return
ciqcheck
;
}
public
void
setCiqcheck
(
String
ciqcheck
)
{
this
.
ciqcheck
=
ciqcheck
==
null
?
null
:
ciqcheck
.
trim
();
}
public
String
getTmpbillno
()
{
return
tmpbillno
;
}
public
void
setTmpbillno
(
String
tmpbillno
)
{
this
.
tmpbillno
=
tmpbillno
==
null
?
null
:
tmpbillno
.
trim
();
}
public
String
getSubbillid
()
{
return
subbillid
;
}
public
void
setSubbillid
(
String
subbillid
)
{
this
.
subbillid
=
subbillid
==
null
?
null
:
subbillid
.
trim
();
}
public
String
getIstrans
()
{
return
istrans
;
}
public
void
setIstrans
(
String
istrans
)
{
this
.
istrans
=
istrans
==
null
?
null
:
istrans
.
trim
();
}
public
String
getSplittag
()
{
return
splittag
;
}
public
void
setSplittag
(
String
splittag
)
{
this
.
splittag
=
splittag
==
null
?
null
:
splittag
.
trim
();
}
public
String
getCustomstrans
()
{
return
customstrans
;
}
public
void
setCustomstrans
(
String
customstrans
)
{
this
.
customstrans
=
customstrans
==
null
?
null
:
customstrans
.
trim
();
}
public
String
getEndoper
()
{
return
endoper
;
}
public
void
setEndoper
(
String
endoper
)
{
this
.
endoper
=
endoper
==
null
?
null
:
endoper
.
trim
();
}
public
Date
getEndopetime
()
{
return
endopetime
;
}
public
void
setEndopetime
(
Date
endopetime
)
{
this
.
endopetime
=
endopetime
;
}
public
String
getConfirmoper
()
{
return
confirmoper
;
}
public
void
setConfirmoper
(
String
confirmoper
)
{
this
.
confirmoper
=
confirmoper
==
null
?
null
:
confirmoper
.
trim
();
}
public
Date
getConfirmopetime
()
{
return
confirmopetime
;
}
public
void
setConfirmopetime
(
Date
confirmopetime
)
{
this
.
confirmopetime
=
confirmopetime
;
}
public
String
getCsgcustomer
()
{
return
csgcustomer
;
}
public
void
setCsgcustomer
(
String
csgcustomer
)
{
this
.
csgcustomer
=
csgcustomer
==
null
?
null
:
csgcustomer
.
trim
();
}
public
String
getRelationbillid
()
{
return
relationbillid
;
}
public
void
setRelationbillid
(
String
relationbillid
)
{
this
.
relationbillid
=
relationbillid
==
null
?
null
:
relationbillid
.
trim
();
}
public
String
getCustomsCountry
()
{
return
customsCountry
;
}
public
void
setCustomsCountry
(
String
customsCountry
)
{
this
.
customsCountry
=
customsCountry
==
null
?
null
:
customsCountry
.
trim
();
}
public
String
getCustomsCity
()
{
return
customsCity
;
}
public
void
setCustomsCity
(
String
customsCity
)
{
this
.
customsCity
=
customsCity
==
null
?
null
:
customsCity
.
trim
();
}
public
String
getCustomsRemark
()
{
return
customsRemark
;
}
public
void
setCustomsRemark
(
String
customsRemark
)
{
this
.
customsRemark
=
customsRemark
==
null
?
null
:
customsRemark
.
trim
();
}
public
String
getCargosource
()
{
return
cargosource
;
}
public
void
setCargosource
(
String
cargosource
)
{
this
.
cargosource
=
cargosource
==
null
?
null
:
cargosource
.
trim
();
}
public
String
getCargonmch
()
{
return
cargonmch
;
}
public
void
setCargonmch
(
String
cargonmch
)
{
this
.
cargonmch
=
cargonmch
==
null
?
null
:
cargonmch
.
trim
();
}
public
String
getIsdgr
()
{
return
isdgr
;
}
public
void
setIsdgr
(
String
isdgr
)
{
this
.
isdgr
=
isdgr
==
null
?
null
:
isdgr
.
trim
();
}
public
BigDecimal
getPercent
()
{
return
percent
;
}
public
void
setPercent
(
BigDecimal
percent
)
{
this
.
percent
=
percent
;
}
public
String
getAwbtype
()
{
return
awbtype
;
}
public
void
setAwbtype
(
String
awbtype
)
{
this
.
awbtype
=
awbtype
==
null
?
null
:
awbtype
.
trim
();
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
==
null
?
null
:
status
.
trim
();
}
public
String
getPaymodel
()
{
return
paymodel
;
}
public
void
setPaymodel
(
String
paymodel
)
{
this
.
paymodel
=
paymodel
==
null
?
null
:
paymodel
.
trim
();
}
public
Boolean
getIsdelete
()
{
return
isdelete
;
}
public
void
setIsdelete
(
Boolean
isdelete
)
{
this
.
isdelete
=
isdelete
;
}
public
Date
getOptime
()
{
return
optime
;
}
public
void
setOptime
(
Date
optime
)
{
this
.
optime
=
optime
;
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/CONFIG_AIRSTATION_CUSTOMCODE.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
public
class
CONFIG_AIRSTATION_CUSTOMCODE
{
private
String
airstationname
;
private
String
customcode
;
public
String
getAirstationname
()
{
return
airstationname
;
}
public
void
setAirstationname
(
String
airstationname
)
{
this
.
airstationname
=
airstationname
==
null
?
null
:
airstationname
.
trim
();
}
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/CONFIG_USER_CARRIER.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
public
class
CONFIG_USER_CARRIER
{
private
Integer
userid
;
private
String
carriercode
;
public
Integer
getUserid
()
{
return
userid
;
}
public
void
setUserid
(
Integer
userid
)
{
this
.
userid
=
userid
;
}
public
String
getCarriercode
()
{
return
carriercode
;
}
public
void
setCarriercode
(
String
carriercode
)
{
this
.
carriercode
=
carriercode
==
null
?
null
:
carriercode
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/CONFIG_USER_CUSTOMCODE.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
public
class
CONFIG_USER_CUSTOMCODE
{
private
Integer
userid
;
private
String
customcode
;
public
Integer
getUserid
()
{
return
userid
;
}
public
void
setUserid
(
Integer
userid
)
{
this
.
userid
=
userid
;
}
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/CONFIG_USER_EnterpriseCode.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
public
class
CONFIG_USER_EnterpriseCode
{
private
Integer
userid
;
private
String
enterprisecode
;
public
Integer
getUserid
()
{
return
userid
;
}
public
void
setUserid
(
Integer
userid
)
{
this
.
userid
=
userid
;
}
public
String
getEnterprisecode
()
{
return
enterprisecode
;
}
public
void
setEnterprisecode
(
String
enterprisecode
)
{
this
.
enterprisecode
=
enterprisecode
==
null
?
null
:
enterprisecode
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT1201.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.util.Date
;
public
class
NMMS_CUSTOM_MT1201
{
private
String
uuid
;
private
String
awba
;
private
String
awbh
;
private
String
customcode
;
private
String
goodsname
;
private
Date
actime
;
private
String
carrier
;
private
String
flightno
;
private
Date
flightdate
;
private
String
originstation
;
private
String
destinationstation
;
private
Integer
piece
;
private
Long
weight
;
private
String
splitcode
;
private
String
status
;
private
Boolean
isdelete
;
private
String
uldtype
;
private
String
uldno
;
private
String
planeno
;
private
String
opeuserid
;
private
String
ext5
;
public
String
getUuid
()
{
return
uuid
;
}
public
void
setUuid
(
String
uuid
)
{
this
.
uuid
=
uuid
==
null
?
null
:
uuid
.
trim
();
}
public
String
getAwba
()
{
return
awba
;
}
public
void
setAwba
(
String
awba
)
{
this
.
awba
=
awba
==
null
?
null
:
awba
.
trim
();
}
public
String
getAwbh
()
{
return
awbh
;
}
public
void
setAwbh
(
String
awbh
)
{
this
.
awbh
=
awbh
==
null
?
null
:
awbh
.
trim
();
}
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
public
String
getGoodsname
()
{
return
goodsname
;
}
public
void
setGoodsname
(
String
goodsname
)
{
this
.
goodsname
=
goodsname
==
null
?
null
:
goodsname
.
trim
();
}
public
Date
getActime
()
{
return
actime
;
}
public
void
setActime
(
Date
actime
)
{
this
.
actime
=
actime
;
}
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
Date
getFlightdate
()
{
return
flightdate
;
}
public
void
setFlightdate
(
Date
flightdate
)
{
this
.
flightdate
=
flightdate
;
}
public
String
getOriginstation
()
{
return
originstation
;
}
public
void
setOriginstation
(
String
originstation
)
{
this
.
originstation
=
originstation
==
null
?
null
:
originstation
.
trim
();
}
public
String
getDestinationstation
()
{
return
destinationstation
;
}
public
void
setDestinationstation
(
String
destinationstation
)
{
this
.
destinationstation
=
destinationstation
==
null
?
null
:
destinationstation
.
trim
();
}
public
Integer
getPiece
()
{
return
piece
;
}
public
void
setPiece
(
Integer
piece
)
{
this
.
piece
=
piece
;
}
public
Long
getWeight
()
{
return
weight
;
}
public
void
setWeight
(
Long
weight
)
{
this
.
weight
=
weight
;
}
public
String
getSplitcode
()
{
return
splitcode
;
}
public
void
setSplitcode
(
String
splitcode
)
{
this
.
splitcode
=
splitcode
==
null
?
null
:
splitcode
.
trim
();
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
==
null
?
null
:
status
.
trim
();
}
public
Boolean
getIsdelete
()
{
return
isdelete
;
}
public
void
setIsdelete
(
Boolean
isdelete
)
{
this
.
isdelete
=
isdelete
;
}
public
String
getUldtype
()
{
return
uldtype
;
}
public
void
setUldtype
(
String
uldtype
)
{
this
.
uldtype
=
uldtype
==
null
?
null
:
uldtype
.
trim
();
}
public
String
getUldno
()
{
return
uldno
;
}
public
void
setUldno
(
String
uldno
)
{
this
.
uldno
=
uldno
==
null
?
null
:
uldno
.
trim
();
}
public
String
getPlaneno
()
{
return
planeno
;
}
public
void
setPlaneno
(
String
planeno
)
{
this
.
planeno
=
planeno
==
null
?
null
:
planeno
.
trim
();
}
public
String
getOpeuserid
()
{
return
opeuserid
;
}
public
void
setOpeuserid
(
String
opeuserid
)
{
this
.
opeuserid
=
opeuserid
==
null
?
null
:
opeuserid
.
trim
();
}
public
String
getExt5
()
{
return
ext5
;
}
public
void
setExt5
(
String
ext5
)
{
this
.
ext5
=
ext5
==
null
?
null
:
ext5
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT2201.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.util.Date
;
public
class
NMMS_CUSTOM_MT2201
{
private
String
uuid
;
private
String
awba
;
private
String
awbh
;
private
String
customcode
;
private
String
goodsname
;
private
Date
actime
;
private
String
carrier
;
private
String
flightno
;
private
Date
flightdate
;
private
String
originstation
;
private
String
destinationstation
;
private
Integer
piece
;
private
Long
weight
;
private
String
splitcode
;
private
String
status
;
private
String
offload
;
private
String
offloaduuid
;
private
Boolean
isdelete
;
private
String
customtype
;
private
String
ext2
;
private
String
ext3
;
private
String
ext4
;
private
String
ext5
;
public
String
getUuid
()
{
return
uuid
;
}
public
void
setUuid
(
String
uuid
)
{
this
.
uuid
=
uuid
==
null
?
null
:
uuid
.
trim
();
}
public
String
getAwba
()
{
return
awba
;
}
public
void
setAwba
(
String
awba
)
{
this
.
awba
=
awba
==
null
?
null
:
awba
.
trim
();
}
public
String
getAwbh
()
{
return
awbh
;
}
public
void
setAwbh
(
String
awbh
)
{
this
.
awbh
=
awbh
==
null
?
null
:
awbh
.
trim
();
}
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
public
String
getGoodsname
()
{
return
goodsname
;
}
public
void
setGoodsname
(
String
goodsname
)
{
this
.
goodsname
=
goodsname
==
null
?
null
:
goodsname
.
trim
();
}
public
Date
getActime
()
{
return
actime
;
}
public
void
setActime
(
Date
actime
)
{
this
.
actime
=
actime
;
}
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
Date
getFlightdate
()
{
return
flightdate
;
}
public
void
setFlightdate
(
Date
flightdate
)
{
this
.
flightdate
=
flightdate
;
}
public
String
getOriginstation
()
{
return
originstation
;
}
public
void
setOriginstation
(
String
originstation
)
{
this
.
originstation
=
originstation
==
null
?
null
:
originstation
.
trim
();
}
public
String
getDestinationstation
()
{
return
destinationstation
;
}
public
void
setDestinationstation
(
String
destinationstation
)
{
this
.
destinationstation
=
destinationstation
==
null
?
null
:
destinationstation
.
trim
();
}
public
Integer
getPiece
()
{
return
piece
;
}
public
void
setPiece
(
Integer
piece
)
{
this
.
piece
=
piece
;
}
public
Long
getWeight
()
{
return
weight
;
}
public
void
setWeight
(
Long
weight
)
{
this
.
weight
=
weight
;
}
public
String
getSplitcode
()
{
return
splitcode
;
}
public
void
setSplitcode
(
String
splitcode
)
{
this
.
splitcode
=
splitcode
==
null
?
null
:
splitcode
.
trim
();
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
==
null
?
null
:
status
.
trim
();
}
public
String
getOffload
()
{
return
offload
;
}
public
void
setOffload
(
String
offload
)
{
this
.
offload
=
offload
==
null
?
null
:
offload
.
trim
();
}
public
String
getOffloaduuid
()
{
return
offloaduuid
;
}
public
void
setOffloaduuid
(
String
offloaduuid
)
{
this
.
offloaduuid
=
offloaduuid
==
null
?
null
:
offloaduuid
.
trim
();
}
public
Boolean
getIsdelete
()
{
return
isdelete
;
}
public
void
setIsdelete
(
Boolean
isdelete
)
{
this
.
isdelete
=
isdelete
;
}
public
String
getCustomtype
()
{
return
customtype
;
}
public
void
setCustomtype
(
String
customtype
)
{
this
.
customtype
=
customtype
==
null
?
null
:
customtype
.
trim
();
}
public
String
getExt2
()
{
return
ext2
;
}
public
void
setExt2
(
String
ext2
)
{
this
.
ext2
=
ext2
==
null
?
null
:
ext2
.
trim
();
}
public
String
getExt3
()
{
return
ext3
;
}
public
void
setExt3
(
String
ext3
)
{
this
.
ext3
=
ext3
==
null
?
null
:
ext3
.
trim
();
}
public
String
getExt4
()
{
return
ext4
;
}
public
void
setExt4
(
String
ext4
)
{
this
.
ext4
=
ext4
==
null
?
null
:
ext4
.
trim
();
}
public
String
getExt5
()
{
return
ext5
;
}
public
void
setExt5
(
String
ext5
)
{
this
.
ext5
=
ext5
==
null
?
null
:
ext5
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT3201.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.util.Date
;
public
class
NMMS_CUSTOM_MT3201
{
private
String
uuid
;
private
String
awba
;
private
String
awbh
;
private
String
carrier
;
private
String
flightno
;
private
Date
flightdate
;
private
String
originstation
;
private
String
destinationstation
;
private
Integer
piece
;
private
Long
weight
;
private
Date
arrivetime
;
private
String
customcode
;
private
String
goodsname
;
private
Date
actime
;
private
String
status
;
private
Boolean
isdelete
;
private
String
ext1
;
private
String
ext2
;
private
String
ext3
;
private
String
ext4
;
private
String
ext5
;
public
String
getUuid
()
{
return
uuid
;
}
public
void
setUuid
(
String
uuid
)
{
this
.
uuid
=
uuid
==
null
?
null
:
uuid
.
trim
();
}
public
String
getAwba
()
{
return
awba
;
}
public
void
setAwba
(
String
awba
)
{
this
.
awba
=
awba
==
null
?
null
:
awba
.
trim
();
}
public
String
getAwbh
()
{
return
awbh
;
}
public
void
setAwbh
(
String
awbh
)
{
this
.
awbh
=
awbh
==
null
?
null
:
awbh
.
trim
();
}
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
Date
getFlightdate
()
{
return
flightdate
;
}
public
void
setFlightdate
(
Date
flightdate
)
{
this
.
flightdate
=
flightdate
;
}
public
String
getOriginstation
()
{
return
originstation
;
}
public
void
setOriginstation
(
String
originstation
)
{
this
.
originstation
=
originstation
==
null
?
null
:
originstation
.
trim
();
}
public
String
getDestinationstation
()
{
return
destinationstation
;
}
public
void
setDestinationstation
(
String
destinationstation
)
{
this
.
destinationstation
=
destinationstation
==
null
?
null
:
destinationstation
.
trim
();
}
public
Integer
getPiece
()
{
return
piece
;
}
public
void
setPiece
(
Integer
piece
)
{
this
.
piece
=
piece
;
}
public
Long
getWeight
()
{
return
weight
;
}
public
void
setWeight
(
Long
weight
)
{
this
.
weight
=
weight
;
}
public
Date
getArrivetime
()
{
return
arrivetime
;
}
public
void
setArrivetime
(
Date
arrivetime
)
{
this
.
arrivetime
=
arrivetime
;
}
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
public
String
getGoodsname
()
{
return
goodsname
;
}
public
void
setGoodsname
(
String
goodsname
)
{
this
.
goodsname
=
goodsname
==
null
?
null
:
goodsname
.
trim
();
}
public
Date
getActime
()
{
return
actime
;
}
public
void
setActime
(
Date
actime
)
{
this
.
actime
=
actime
;
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
==
null
?
null
:
status
.
trim
();
}
public
Boolean
getIsdelete
()
{
return
isdelete
;
}
public
void
setIsdelete
(
Boolean
isdelete
)
{
this
.
isdelete
=
isdelete
;
}
public
String
getExt1
()
{
return
ext1
;
}
public
void
setExt1
(
String
ext1
)
{
this
.
ext1
=
ext1
==
null
?
null
:
ext1
.
trim
();
}
public
String
getExt2
()
{
return
ext2
;
}
public
void
setExt2
(
String
ext2
)
{
this
.
ext2
=
ext2
==
null
?
null
:
ext2
.
trim
();
}
public
String
getExt3
()
{
return
ext3
;
}
public
void
setExt3
(
String
ext3
)
{
this
.
ext3
=
ext3
==
null
?
null
:
ext3
.
trim
();
}
public
String
getExt4
()
{
return
ext4
;
}
public
void
setExt4
(
String
ext4
)
{
this
.
ext4
=
ext4
==
null
?
null
:
ext4
.
trim
();
}
public
String
getExt5
()
{
return
ext5
;
}
public
void
setExt5
(
String
ext5
)
{
this
.
ext5
=
ext5
==
null
?
null
:
ext5
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT4201.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.util.Date
;
public
class
NMMS_CUSTOM_MT4201
{
private
String
uuid
;
private
String
carrier
;
private
String
flightno
;
private
Date
flightdate
;
private
String
originstation
;
private
String
destinationstation
;
private
String
awba
;
private
String
awbh
;
private
Integer
lodingpiece
;
private
Long
lodingweight
;
private
String
customcode
;
private
String
goodsname
;
private
Date
actime
;
private
Date
loadingtime
;
private
String
specialgoods
;
private
String
status
;
private
Boolean
isdelete
;
private
String
ext1
;
private
String
ext2
;
private
String
ext3
;
private
String
ext4
;
private
String
ext5
;
public
String
getUuid
()
{
return
uuid
;
}
public
void
setUuid
(
String
uuid
)
{
this
.
uuid
=
uuid
==
null
?
null
:
uuid
.
trim
();
}
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
Date
getFlightdate
()
{
return
flightdate
;
}
public
void
setFlightdate
(
Date
flightdate
)
{
this
.
flightdate
=
flightdate
;
}
public
String
getOriginstation
()
{
return
originstation
;
}
public
void
setOriginstation
(
String
originstation
)
{
this
.
originstation
=
originstation
==
null
?
null
:
originstation
.
trim
();
}
public
String
getDestinationstation
()
{
return
destinationstation
;
}
public
void
setDestinationstation
(
String
destinationstation
)
{
this
.
destinationstation
=
destinationstation
==
null
?
null
:
destinationstation
.
trim
();
}
public
String
getAwba
()
{
return
awba
;
}
public
void
setAwba
(
String
awba
)
{
this
.
awba
=
awba
==
null
?
null
:
awba
.
trim
();
}
public
String
getAwbh
()
{
return
awbh
;
}
public
void
setAwbh
(
String
awbh
)
{
this
.
awbh
=
awbh
==
null
?
null
:
awbh
.
trim
();
}
public
Integer
getLodingpiece
()
{
return
lodingpiece
;
}
public
void
setLodingpiece
(
Integer
lodingpiece
)
{
this
.
lodingpiece
=
lodingpiece
;
}
public
Long
getLodingweight
()
{
return
lodingweight
;
}
public
void
setLodingweight
(
Long
lodingweight
)
{
this
.
lodingweight
=
lodingweight
;
}
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
public
String
getGoodsname
()
{
return
goodsname
;
}
public
void
setGoodsname
(
String
goodsname
)
{
this
.
goodsname
=
goodsname
==
null
?
null
:
goodsname
.
trim
();
}
public
Date
getActime
()
{
return
actime
;
}
public
void
setActime
(
Date
actime
)
{
this
.
actime
=
actime
;
}
public
Date
getLoadingtime
()
{
return
loadingtime
;
}
public
void
setLoadingtime
(
Date
loadingtime
)
{
this
.
loadingtime
=
loadingtime
;
}
public
String
getSpecialgoods
()
{
return
specialgoods
;
}
public
void
setSpecialgoods
(
String
specialgoods
)
{
this
.
specialgoods
=
specialgoods
==
null
?
null
:
specialgoods
.
trim
();
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
==
null
?
null
:
status
.
trim
();
}
public
Boolean
getIsdelete
()
{
return
isdelete
;
}
public
void
setIsdelete
(
Boolean
isdelete
)
{
this
.
isdelete
=
isdelete
;
}
public
String
getExt1
()
{
return
ext1
;
}
public
void
setExt1
(
String
ext1
)
{
this
.
ext1
=
ext1
==
null
?
null
:
ext1
.
trim
();
}
public
String
getExt2
()
{
return
ext2
;
}
public
void
setExt2
(
String
ext2
)
{
this
.
ext2
=
ext2
==
null
?
null
:
ext2
.
trim
();
}
public
String
getExt3
()
{
return
ext3
;
}
public
void
setExt3
(
String
ext3
)
{
this
.
ext3
=
ext3
==
null
?
null
:
ext3
.
trim
();
}
public
String
getExt4
()
{
return
ext4
;
}
public
void
setExt4
(
String
ext4
)
{
this
.
ext4
=
ext4
==
null
?
null
:
ext4
.
trim
();
}
public
String
getExt5
()
{
return
ext5
;
}
public
void
setExt5
(
String
ext5
)
{
this
.
ext5
=
ext5
==
null
?
null
:
ext5
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT520X.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.util.Date
;
public
class
NMMS_CUSTOM_MT520X
{
private
String
uuid
;
private
String
awba
;
private
String
awbh
;
private
String
carrier
;
private
String
flightno
;
private
Date
flightdate
;
private
String
originstation
;
private
String
destinationstation
;
private
Integer
piece
;
private
Long
weight
;
private
Date
starttime
;
private
Date
endtime
;
private
String
customcode
;
private
String
goodsname
;
private
Date
actime
;
private
String
rcfdep
;
private
String
status
;
private
Boolean
isdelete
;
private
String
ext1
;
private
String
ext2
;
private
String
ext3
;
private
String
ext4
;
private
String
ext5
;
public
String
getUuid
()
{
return
uuid
;
}
public
void
setUuid
(
String
uuid
)
{
this
.
uuid
=
uuid
==
null
?
null
:
uuid
.
trim
();
}
public
String
getAwba
()
{
return
awba
;
}
public
void
setAwba
(
String
awba
)
{
this
.
awba
=
awba
==
null
?
null
:
awba
.
trim
();
}
public
String
getAwbh
()
{
return
awbh
;
}
public
void
setAwbh
(
String
awbh
)
{
this
.
awbh
=
awbh
==
null
?
null
:
awbh
.
trim
();
}
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
Date
getFlightdate
()
{
return
flightdate
;
}
public
void
setFlightdate
(
Date
flightdate
)
{
this
.
flightdate
=
flightdate
;
}
public
String
getOriginstation
()
{
return
originstation
;
}
public
void
setOriginstation
(
String
originstation
)
{
this
.
originstation
=
originstation
==
null
?
null
:
originstation
.
trim
();
}
public
String
getDestinationstation
()
{
return
destinationstation
;
}
public
void
setDestinationstation
(
String
destinationstation
)
{
this
.
destinationstation
=
destinationstation
==
null
?
null
:
destinationstation
.
trim
();
}
public
Integer
getPiece
()
{
return
piece
;
}
public
void
setPiece
(
Integer
piece
)
{
this
.
piece
=
piece
;
}
public
Long
getWeight
()
{
return
weight
;
}
public
void
setWeight
(
Long
weight
)
{
this
.
weight
=
weight
;
}
public
Date
getStarttime
()
{
return
starttime
;
}
public
void
setStarttime
(
Date
starttime
)
{
this
.
starttime
=
starttime
;
}
public
Date
getEndtime
()
{
return
endtime
;
}
public
void
setEndtime
(
Date
endtime
)
{
this
.
endtime
=
endtime
;
}
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
public
String
getGoodsname
()
{
return
goodsname
;
}
public
void
setGoodsname
(
String
goodsname
)
{
this
.
goodsname
=
goodsname
==
null
?
null
:
goodsname
.
trim
();
}
public
Date
getActime
()
{
return
actime
;
}
public
void
setActime
(
Date
actime
)
{
this
.
actime
=
actime
;
}
public
String
getRcfdep
()
{
return
rcfdep
;
}
public
void
setRcfdep
(
String
rcfdep
)
{
this
.
rcfdep
=
rcfdep
==
null
?
null
:
rcfdep
.
trim
();
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
==
null
?
null
:
status
.
trim
();
}
public
Boolean
getIsdelete
()
{
return
isdelete
;
}
public
void
setIsdelete
(
Boolean
isdelete
)
{
this
.
isdelete
=
isdelete
;
}
public
String
getExt1
()
{
return
ext1
;
}
public
void
setExt1
(
String
ext1
)
{
this
.
ext1
=
ext1
==
null
?
null
:
ext1
.
trim
();
}
public
String
getExt2
()
{
return
ext2
;
}
public
void
setExt2
(
String
ext2
)
{
this
.
ext2
=
ext2
==
null
?
null
:
ext2
.
trim
();
}
public
String
getExt3
()
{
return
ext3
;
}
public
void
setExt3
(
String
ext3
)
{
this
.
ext3
=
ext3
==
null
?
null
:
ext3
.
trim
();
}
public
String
getExt4
()
{
return
ext4
;
}
public
void
setExt4
(
String
ext4
)
{
this
.
ext4
=
ext4
==
null
?
null
:
ext4
.
trim
();
}
public
String
getExt5
()
{
return
ext5
;
}
public
void
setExt5
(
String
ext5
)
{
this
.
ext5
=
ext5
==
null
?
null
:
ext5
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT8205.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
public
class
NMMS_CUSTOM_MT8205
{
private
String
uuid
;
private
String
uuid1201
;
private
String
uuid2201
;
private
Integer
transpiece
;
private
Long
transweight
;
private
String
goodsname
;
private
String
goodspackage
;
private
String
status
;
private
String
awboriginstation
;
private
String
awbdesstation
;
private
String
customcode
;
private
Boolean
isdelete
;
private
String
ext1
;
private
String
ext2
;
private
String
ext3
;
private
String
ext4
;
private
String
ext5
;
public
String
getUuid
()
{
return
uuid
;
}
public
void
setUuid
(
String
uuid
)
{
this
.
uuid
=
uuid
==
null
?
null
:
uuid
.
trim
();
}
public
String
getUuid1201
()
{
return
uuid1201
;
}
public
void
setUuid1201
(
String
uuid1201
)
{
this
.
uuid1201
=
uuid1201
==
null
?
null
:
uuid1201
.
trim
();
}
public
String
getUuid2201
()
{
return
uuid2201
;
}
public
void
setUuid2201
(
String
uuid2201
)
{
this
.
uuid2201
=
uuid2201
==
null
?
null
:
uuid2201
.
trim
();
}
public
Integer
getTranspiece
()
{
return
transpiece
;
}
public
void
setTranspiece
(
Integer
transpiece
)
{
this
.
transpiece
=
transpiece
;
}
public
Long
getTransweight
()
{
return
transweight
;
}
public
void
setTransweight
(
Long
transweight
)
{
this
.
transweight
=
transweight
;
}
public
String
getGoodsname
()
{
return
goodsname
;
}
public
void
setGoodsname
(
String
goodsname
)
{
this
.
goodsname
=
goodsname
==
null
?
null
:
goodsname
.
trim
();
}
public
String
getGoodspackage
()
{
return
goodspackage
;
}
public
void
setGoodspackage
(
String
goodspackage
)
{
this
.
goodspackage
=
goodspackage
==
null
?
null
:
goodspackage
.
trim
();
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
==
null
?
null
:
status
.
trim
();
}
public
String
getAwboriginstation
()
{
return
awboriginstation
;
}
public
void
setAwboriginstation
(
String
awboriginstation
)
{
this
.
awboriginstation
=
awboriginstation
==
null
?
null
:
awboriginstation
.
trim
();
}
public
String
getAwbdesstation
()
{
return
awbdesstation
;
}
public
void
setAwbdesstation
(
String
awbdesstation
)
{
this
.
awbdesstation
=
awbdesstation
==
null
?
null
:
awbdesstation
.
trim
();
}
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
public
Boolean
getIsdelete
()
{
return
isdelete
;
}
public
void
setIsdelete
(
Boolean
isdelete
)
{
this
.
isdelete
=
isdelete
;
}
public
String
getExt1
()
{
return
ext1
;
}
public
void
setExt1
(
String
ext1
)
{
this
.
ext1
=
ext1
==
null
?
null
:
ext1
.
trim
();
}
public
String
getExt2
()
{
return
ext2
;
}
public
void
setExt2
(
String
ext2
)
{
this
.
ext2
=
ext2
==
null
?
null
:
ext2
.
trim
();
}
public
String
getExt3
()
{
return
ext3
;
}
public
void
setExt3
(
String
ext3
)
{
this
.
ext3
=
ext3
==
null
?
null
:
ext3
.
trim
();
}
public
String
getExt4
()
{
return
ext4
;
}
public
void
setExt4
(
String
ext4
)
{
this
.
ext4
=
ext4
==
null
?
null
:
ext4
.
trim
();
}
public
String
getExt5
()
{
return
ext5
;
}
public
void
setExt5
(
String
ext5
)
{
this
.
ext5
=
ext5
==
null
?
null
:
ext5
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_RESPONSE.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.util.Date
;
public
class
NMMS_CUSTOM_RESPONSE
{
private
String
id
;
private
Date
flightdate
;
private
String
flightno
;
private
String
carrier
;
private
String
awbano
;
private
String
awbhno
;
private
String
bustype
;
private
Date
busdate
;
private
Long
busweight
;
private
Integer
buspiece
;
private
String
opertype
;
private
String
cusmsgid
;
private
String
cussenderid
;
private
String
cusreciverid
;
private
String
cusversion
;
private
String
cusfunctioncode
;
private
Date
cusresrcvtime
;
private
Date
cusressendtime
;
private
String
cusrescode
;
private
String
cusresstatus
;
private
String
operusername
;
private
String
opersystemname
;
private
String
cusrestext
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
==
null
?
null
:
id
.
trim
();
}
public
Date
getFlightdate
()
{
return
flightdate
;
}
public
void
setFlightdate
(
Date
flightdate
)
{
this
.
flightdate
=
flightdate
;
}
public
String
getFlightno
()
{
return
flightno
;
}
public
void
setFlightno
(
String
flightno
)
{
this
.
flightno
=
flightno
==
null
?
null
:
flightno
.
trim
();
}
public
String
getCarrier
()
{
return
carrier
;
}
public
void
setCarrier
(
String
carrier
)
{
this
.
carrier
=
carrier
==
null
?
null
:
carrier
.
trim
();
}
public
String
getAwbano
()
{
return
awbano
;
}
public
void
setAwbano
(
String
awbano
)
{
this
.
awbano
=
awbano
==
null
?
null
:
awbano
.
trim
();
}
public
String
getAwbhno
()
{
return
awbhno
;
}
public
void
setAwbhno
(
String
awbhno
)
{
this
.
awbhno
=
awbhno
==
null
?
null
:
awbhno
.
trim
();
}
public
String
getBustype
()
{
return
bustype
;
}
public
void
setBustype
(
String
bustype
)
{
this
.
bustype
=
bustype
==
null
?
null
:
bustype
.
trim
();
}
public
Date
getBusdate
()
{
return
busdate
;
}
public
void
setBusdate
(
Date
busdate
)
{
this
.
busdate
=
busdate
;
}
public
Long
getBusweight
()
{
return
busweight
;
}
public
void
setBusweight
(
Long
busweight
)
{
this
.
busweight
=
busweight
;
}
public
Integer
getBuspiece
()
{
return
buspiece
;
}
public
void
setBuspiece
(
Integer
buspiece
)
{
this
.
buspiece
=
buspiece
;
}
public
String
getOpertype
()
{
return
opertype
;
}
public
void
setOpertype
(
String
opertype
)
{
this
.
opertype
=
opertype
==
null
?
null
:
opertype
.
trim
();
}
public
String
getCusmsgid
()
{
return
cusmsgid
;
}
public
void
setCusmsgid
(
String
cusmsgid
)
{
this
.
cusmsgid
=
cusmsgid
==
null
?
null
:
cusmsgid
.
trim
();
}
public
String
getCussenderid
()
{
return
cussenderid
;
}
public
void
setCussenderid
(
String
cussenderid
)
{
this
.
cussenderid
=
cussenderid
==
null
?
null
:
cussenderid
.
trim
();
}
public
String
getCusreciverid
()
{
return
cusreciverid
;
}
public
void
setCusreciverid
(
String
cusreciverid
)
{
this
.
cusreciverid
=
cusreciverid
==
null
?
null
:
cusreciverid
.
trim
();
}
public
String
getCusversion
()
{
return
cusversion
;
}
public
void
setCusversion
(
String
cusversion
)
{
this
.
cusversion
=
cusversion
==
null
?
null
:
cusversion
.
trim
();
}
public
String
getCusfunctioncode
()
{
return
cusfunctioncode
;
}
public
void
setCusfunctioncode
(
String
cusfunctioncode
)
{
this
.
cusfunctioncode
=
cusfunctioncode
==
null
?
null
:
cusfunctioncode
.
trim
();
}
public
Date
getCusresrcvtime
()
{
return
cusresrcvtime
;
}
public
void
setCusresrcvtime
(
Date
cusresrcvtime
)
{
this
.
cusresrcvtime
=
cusresrcvtime
;
}
public
Date
getCusressendtime
()
{
return
cusressendtime
;
}
public
void
setCusressendtime
(
Date
cusressendtime
)
{
this
.
cusressendtime
=
cusressendtime
;
}
public
String
getCusrescode
()
{
return
cusrescode
;
}
public
void
setCusrescode
(
String
cusrescode
)
{
this
.
cusrescode
=
cusrescode
==
null
?
null
:
cusrescode
.
trim
();
}
public
String
getCusresstatus
()
{
return
cusresstatus
;
}
public
void
setCusresstatus
(
String
cusresstatus
)
{
this
.
cusresstatus
=
cusresstatus
==
null
?
null
:
cusresstatus
.
trim
();
}
public
String
getOperusername
()
{
return
operusername
;
}
public
void
setOperusername
(
String
operusername
)
{
this
.
operusername
=
operusername
==
null
?
null
:
operusername
.
trim
();
}
public
String
getOpersystemname
()
{
return
opersystemname
;
}
public
void
setOpersystemname
(
String
opersystemname
)
{
this
.
opersystemname
=
opersystemname
==
null
?
null
:
opersystemname
.
trim
();
}
public
String
getCusrestext
()
{
return
cusrestext
;
}
public
void
setCusrestext
(
String
cusrestext
)
{
this
.
cusrestext
=
cusrestext
==
null
?
null
:
cusrestext
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/NMMS_FFM_INFO.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.util.Date
;
public
class
NMMS_FFM_INFO
{
private
String
autoid
;
private
Date
createdate
;
private
String
flightno
;
private
Date
flightdate
;
private
String
waybillnomaster
;
private
String
originatingstation
;
private
String
destinationstation
;
private
String
manifesttotalpiece
;
private
String
manifesttotalweight
;
private
String
productname
;
private
String
specialgoodscode
;
private
String
customscode
;
private
String
customsstatus
;
private
String
isbatch
;
private
String
pallet
;
private
String
pallettype
;
private
String
palletno
;
private
String
reportorder
;
private
String
islast
;
private
String
originatingstationBill
;
private
String
destinationstationBill
;
private
String
totalpiece
;
private
String
dealstatus
;
public
String
getAutoid
()
{
return
autoid
;
}
public
void
setAutoid
(
String
autoid
)
{
this
.
autoid
=
autoid
==
null
?
null
:
autoid
.
trim
();
}
public
Date
getCreatedate
()
{
return
createdate
;
}
public
void
setCreatedate
(
Date
createdate
)
{
this
.
createdate
=
createdate
;
}
public
String
getFlightno
()
{
return
flightno
;
}
public
void
setFlightno
(
String
flightno
)
{
this
.
flightno
=
flightno
==
null
?
null
:
flightno
.
trim
();
}
public
Date
getFlightdate
()
{
return
flightdate
;
}
public
void
setFlightdate
(
Date
flightdate
)
{
this
.
flightdate
=
flightdate
;
}
public
String
getWaybillnomaster
()
{
return
waybillnomaster
;
}
public
void
setWaybillnomaster
(
String
waybillnomaster
)
{
this
.
waybillnomaster
=
waybillnomaster
==
null
?
null
:
waybillnomaster
.
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
String
getManifesttotalpiece
()
{
return
manifesttotalpiece
;
}
public
void
setManifesttotalpiece
(
String
manifesttotalpiece
)
{
this
.
manifesttotalpiece
=
manifesttotalpiece
==
null
?
null
:
manifesttotalpiece
.
trim
();
}
public
String
getManifesttotalweight
()
{
return
manifesttotalweight
;
}
public
void
setManifesttotalweight
(
String
manifesttotalweight
)
{
this
.
manifesttotalweight
=
manifesttotalweight
==
null
?
null
:
manifesttotalweight
.
trim
();
}
public
String
getProductname
()
{
return
productname
;
}
public
void
setProductname
(
String
productname
)
{
this
.
productname
=
productname
==
null
?
null
:
productname
.
trim
();
}
public
String
getSpecialgoodscode
()
{
return
specialgoodscode
;
}
public
void
setSpecialgoodscode
(
String
specialgoodscode
)
{
this
.
specialgoodscode
=
specialgoodscode
==
null
?
null
:
specialgoodscode
.
trim
();
}
public
String
getCustomscode
()
{
return
customscode
;
}
public
void
setCustomscode
(
String
customscode
)
{
this
.
customscode
=
customscode
==
null
?
null
:
customscode
.
trim
();
}
public
String
getCustomsstatus
()
{
return
customsstatus
;
}
public
void
setCustomsstatus
(
String
customsstatus
)
{
this
.
customsstatus
=
customsstatus
==
null
?
null
:
customsstatus
.
trim
();
}
public
String
getIsbatch
()
{
return
isbatch
;
}
public
void
setIsbatch
(
String
isbatch
)
{
this
.
isbatch
=
isbatch
==
null
?
null
:
isbatch
.
trim
();
}
public
String
getPallet
()
{
return
pallet
;
}
public
void
setPallet
(
String
pallet
)
{
this
.
pallet
=
pallet
==
null
?
null
:
pallet
.
trim
();
}
public
String
getPallettype
()
{
return
pallettype
;
}
public
void
setPallettype
(
String
pallettype
)
{
this
.
pallettype
=
pallettype
==
null
?
null
:
pallettype
.
trim
();
}
public
String
getPalletno
()
{
return
palletno
;
}
public
void
setPalletno
(
String
palletno
)
{
this
.
palletno
=
palletno
==
null
?
null
:
palletno
.
trim
();
}
public
String
getReportorder
()
{
return
reportorder
;
}
public
void
setReportorder
(
String
reportorder
)
{
this
.
reportorder
=
reportorder
==
null
?
null
:
reportorder
.
trim
();
}
public
String
getIslast
()
{
return
islast
;
}
public
void
setIslast
(
String
islast
)
{
this
.
islast
=
islast
==
null
?
null
:
islast
.
trim
();
}
public
String
getOriginatingstationBill
()
{
return
originatingstationBill
;
}
public
void
setOriginatingstationBill
(
String
originatingstationBill
)
{
this
.
originatingstationBill
=
originatingstationBill
==
null
?
null
:
originatingstationBill
.
trim
();
}
public
String
getDestinationstationBill
()
{
return
destinationstationBill
;
}
public
void
setDestinationstationBill
(
String
destinationstationBill
)
{
this
.
destinationstationBill
=
destinationstationBill
==
null
?
null
:
destinationstationBill
.
trim
();
}
public
String
getTotalpiece
()
{
return
totalpiece
;
}
public
void
setTotalpiece
(
String
totalpiece
)
{
this
.
totalpiece
=
totalpiece
==
null
?
null
:
totalpiece
.
trim
();
}
public
String
getDealstatus
()
{
return
dealstatus
;
}
public
void
setDealstatus
(
String
dealstatus
)
{
this
.
dealstatus
=
dealstatus
==
null
?
null
:
dealstatus
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/STATIC_CUSTOMCODE_CUSTOMNAME.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
public
class
STATIC_CUSTOMCODE_CUSTOMNAME
{
private
String
customcode
;
private
String
customname
;
public
String
getCustomcode
()
{
return
customcode
;
}
public
void
setCustomcode
(
String
customcode
)
{
this
.
customcode
=
customcode
==
null
?
null
:
customcode
.
trim
();
}
public
String
getCustomname
()
{
return
customname
;
}
public
void
setCustomname
(
String
customname
)
{
this
.
customname
=
customname
==
null
?
null
:
customname
.
trim
();
}
}
\ No newline at end of file
...
...
src/main/java/com/sunyo/wlpt/base/model/STATIC_CUSTOM_RESPONSE_BASE.java
0 → 100644
查看文件 @
5be50bd
package
com
.
sunyo
.
wlpt
.
base
.
model
;
import
java.math.BigDecimal
;
import
java.util.Date
;
public
class
STATIC_CUSTOM_RESPONSE_BASE
{
private
String
responsecode
;
private
String
responsetext
;
private
String
typeremark
;
private
String
type
;
private
BigDecimal
sortnum
;
private
Date
operationtime
;
public
String
getResponsecode
()
{
return
responsecode
;
}
public
void
setResponsecode
(
String
responsecode
)
{
this
.
responsecode
=
responsecode
==
null
?
null
:
responsecode
.
trim
();
}
public
String
getResponsetext
()
{
return
responsetext
;
}
public
void
setResponsetext
(
String
responsetext
)
{
this
.
responsetext
=
responsetext
==
null
?
null
:
responsetext
.
trim
();
}
public
String
getTyperemark
()
{
return
typeremark
;
}
public
void
setTyperemark
(
String
typeremark
)
{
this
.
typeremark
=
typeremark
==
null
?
null
:
typeremark
.
trim
();
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
==
null
?
null
:
type
.
trim
();
}
public
BigDecimal
getSortnum
()
{
return
sortnum
;
}
public
void
setSortnum
(
BigDecimal
sortnum
)
{
this
.
sortnum
=
sortnum
;
}
public
Date
getOperationtime
()
{
return
operationtime
;
}
public
void
setOperationtime
(
Date
operationtime
)
{
this
.
operationtime
=
operationtime
;
}
}
\ No newline at end of file
...
...
src/main/resources/generator/generatorConfig.xml
0 → 100644
查看文件 @
5be50bd
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包-->
<classPathEntry
location=
"/Users/mrz/Downloads/mybatis-generator-core-1.3.2/lib/mysql-connector-java-5.1.25-bin.jar"
/>
<!--<classPathEntry location="/Users/mrz/Documents/maven/ojdbc6.jar"/>-->
<context
id=
"DB2Tables"
targetRuntime=
"MyBatis3"
>
<commentGenerator>
<property
name=
"suppressDate"
value=
"true"
/>
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<property
name=
"suppressAllComments"
value=
"true"
/>
</commentGenerator>
<!--数据库链接URL,用户名、密码 -->
<jdbcConnection
driverClass=
"com.mysql.jdbc.Driver"
connectionURL=
"jdbc:mysql://118.31.66.166:3306/WLPT_NMMS"
userId=
"110"
password=
"QAHqCJf2kFYCLirM"
>
</jdbcConnection>
<!--<jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver"-->
<!--connectionURL="jdbc:oracle:thin:@10.50.3.68:1521:CGODW"-->
<!--userId="CGOETL"-->
<!--password="1q2w3e4r">-->
<!--</jdbcConnection>-->
<!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和
NUMERIC 类型解析为java.math.BigDecimal -->
<!--<javaTypeResolver>-->
<!--<property name="forceBigDecimals" value="true" />-->
<!--</javaTypeResolver>-->
<javaTypeResolver>
<property
name=
"forceBigDecimals"
value=
"false"
/>
</javaTypeResolver>
<!-- 生成模型的包名和位置-->
<javaModelGenerator
targetPackage=
"com.sunyo.wlpt.base.model"
targetProject=
"src/main/java"
>
<property
name=
"enableSubPackages"
value=
"true"
/>
<property
name=
"trimStrings"
value=
"true"
/>
</javaModelGenerator>
<!-- 生成映射文件的包名和位置-->
<sqlMapGenerator
targetPackage=
"mapping"
targetProject=
"src/main/resources"
>
<property
name=
"enableSubPackages"
value=
"true"
/>
</sqlMapGenerator>
<!-- 生成DAO的包名和位置-->
<javaClientGenerator
type=
"XMLMAPPER"
targetPackage=
"com.sunyo.wlpt.base.dao"
targetProject=
"src/main/java"
>
<property
name=
"enableSubPackages"
value=
"true"
/>
</javaClientGenerator>
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
<table
tableName=
"CUSTOM_MT1201"
domainObjectName=
"NMMS_CUSTOM_MT1201"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CUSTOM_MT2201"
domainObjectName=
"NMMS_CUSTOM_MT2201"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CUSTOM_MT3201"
domainObjectName=
"NMMS_CUSTOM_MT3201"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CUSTOM_MT4201"
domainObjectName=
"NMMS_CUSTOM_MT4201"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CUSTOM_MT520X"
domainObjectName=
"NMMS_CUSTOM_MT520X"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CUSTOM_MT8205"
domainObjectName=
"NMMS_CUSTOM_MT8205"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"FFM_INFO"
domainObjectName=
"NMMS_FFM_INFO"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CONFIG_AIRSTATION_CUSTOMCODE"
domainObjectName=
"CONFIG_AIRSTATION_CUSTOMCODE"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CONFIG_USER_CARRIER"
domainObjectName=
"CONFIG_USER_CARRIER"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CONFIG_USER_CUSTOMCODE"
domainObjectName=
"CONFIG_USER_CUSTOMCODE"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CONFIG_USER_CUSTOMCODE"
domainObjectName=
"CONFIG_USER_CUSTOMCODE"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"CONFIG_USER_EnterpriseCode"
domainObjectName=
"CONFIG_USER_EnterpriseCode"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"STATIC_CUSTOM_RESPONSE_BASE"
domainObjectName=
"STATIC_CUSTOM_RESPONSE_BASE"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
<table
tableName=
"STATIC_CUSTOMCODE_CUSTOMNAME"
domainObjectName=
"STATIC_CUSTOMCODE_CUSTOMNAME"
enableCountByExample=
"false"
enableUpdateByExample=
"false"
enableDeleteByExample=
"false"
enableSelectByExample=
"false"
selectByExampleQueryId=
"false"
></table>
</context>
</generatorConfiguration>
\ No newline at end of file
...
...
请
注册
或
登录
后发表评论