Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
6aa5dbf5
Commit
6aa5dbf5
authored
Mar 04, 2019
by
dahai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改下载XML
parent
31c8a440
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
247 additions
and
146 deletions
+247
-146
ExportXMLApi.java
src/main/java/com/yxproject/start/api/ExportXMLApi.java
+0
-0
NewFilesEntity.java
src/main/java/com/yxproject/start/entity/NewFilesEntity.java
+121
-0
PreproPersonEntity.java
...n/java/com/yxproject/start/entity/PreproPersonEntity.java
+19
-15
CountCountyEntity.java
...om/yxproject/start/entity/TaskList/CountCountyEntity.java
+3
-0
CountGajgEntity.java
.../com/yxproject/start/entity/TaskList/CountGajgEntity.java
+3
-0
TaskListEntity.java
...a/com/yxproject/start/entity/TaskList/TaskListEntity.java
+3
-0
NewFilesMapper.java
src/main/java/com/yxproject/start/mapper/NewFilesMapper.java
+20
-0
PreproPersonMapper.java
...n/java/com/yxproject/start/mapper/PreproPersonMapper.java
+5
-25
QuerySequenceMapper.java
.../java/com/yxproject/start/mapper/QuerySequenceMapper.java
+3
-2
NewFilesService.java
...ain/java/com/yxproject/start/service/NewFilesService.java
+12
-0
PersonPostService.java
...n/java/com/yxproject/start/service/PersonPostService.java
+1
-0
PreproPersonService.java
...java/com/yxproject/start/service/PreproPersonService.java
+2
-0
NewFilesServiceImpl.java
...com/yxproject/start/service/impl/NewFilesServiceImpl.java
+28
-0
PreproPersonServiceImpl.java
...yxproject/start/service/impl/PreproPersonServiceImpl.java
+23
-1
ExportXml.java
src/main/java/com/yxproject/start/utils/ExportXml.java
+0
-101
IDCardXmlUtils.java
src/main/java/com/yxproject/start/utils/IDCardXmlUtils.java
+0
-0
QuerySequenceSercive.java
.../java/com/yxproject/start/utils/QuerySequenceSercive.java
+2
-2
mybatis-config.xml
src/main/resources/mapper/config/mybatis-config.xml
+2
-0
No files found.
src/main/java/com/yxproject/start/api/ExportXMLApi.java
View file @
6aa5dbf5
This diff is collapsed.
Click to expand it.
src/main/java/com/yxproject/start/entity/NewFilesEntity.java
0 → 100644
View file @
6aa5dbf5
package
com
.
yxproject
.
start
.
entity
;
import
javax.persistence.*
;
import
java.util.Objects
;
/**
* @auther zhangyusheng
* 2019/3/4 18:45
*/
@Entity
@Table
(
name
=
"NEW_FILES"
,
schema
=
"YINGXIN"
,
catalog
=
""
)
public
class
NewFilesEntity
{
private
String
versionCode
;
private
String
dwdm
;
private
String
dwmc
;
private
Long
recordNumber
;
private
String
createDate
;
private
String
newFileName
;
private
String
newTime
;
private
long
id
;
@Basic
@Column
(
name
=
"VERSION_CODE"
)
public
String
getVersionCode
()
{
return
versionCode
;
}
public
void
setVersionCode
(
String
versionCode
)
{
this
.
versionCode
=
versionCode
;
}
@Basic
@Column
(
name
=
"DWDM"
)
public
String
getDwdm
()
{
return
dwdm
;
}
public
void
setDwdm
(
String
dwdm
)
{
this
.
dwdm
=
dwdm
;
}
@Basic
@Column
(
name
=
"DWMC"
)
public
String
getDwmc
()
{
return
dwmc
;
}
public
void
setDwmc
(
String
dwmc
)
{
this
.
dwmc
=
dwmc
;
}
@Basic
@Column
(
name
=
"RECORD_NUMBER"
)
public
Long
getRecordNumber
()
{
return
recordNumber
;
}
public
void
setRecordNumber
(
Long
recordNumber
)
{
this
.
recordNumber
=
recordNumber
;
}
@Basic
@Column
(
name
=
"CREATE_DATE"
)
public
String
getCreateDate
()
{
return
createDate
;
}
public
void
setCreateDate
(
String
createDate
)
{
this
.
createDate
=
createDate
;
}
@Basic
@Column
(
name
=
"NEW_FILE_NAME"
)
public
String
getNewFileName
()
{
return
newFileName
;
}
public
void
setNewFileName
(
String
newFileName
)
{
this
.
newFileName
=
newFileName
;
}
@Basic
@Column
(
name
=
"NEW_TIME"
)
public
String
getNewTime
()
{
return
newTime
;
}
public
void
setNewTime
(
String
newTime
)
{
this
.
newTime
=
newTime
;
}
@Id
@Column
(
name
=
"ID"
)
public
long
getId
()
{
return
id
;
}
public
void
setId
(
long
id
)
{
this
.
id
=
id
;
}
@Override
public
boolean
equals
(
Object
o
)
{
if
(
this
==
o
)
return
true
;
if
(
o
==
null
||
getClass
()
!=
o
.
getClass
())
return
false
;
NewFilesEntity
that
=
(
NewFilesEntity
)
o
;
return
id
==
that
.
id
&&
Objects
.
equals
(
versionCode
,
that
.
versionCode
)
&&
Objects
.
equals
(
dwdm
,
that
.
dwdm
)
&&
Objects
.
equals
(
dwmc
,
that
.
dwmc
)
&&
Objects
.
equals
(
recordNumber
,
that
.
recordNumber
)
&&
Objects
.
equals
(
createDate
,
that
.
createDate
)
&&
Objects
.
equals
(
newFileName
,
that
.
newFileName
)
&&
Objects
.
equals
(
newTime
,
that
.
newTime
);
}
@Override
public
int
hashCode
()
{
return
Objects
.
hash
(
versionCode
,
dwdm
,
dwmc
,
recordNumber
,
createDate
,
newFileName
,
newTime
,
id
);
}
}
src/main/java/com/yxproject/start/entity/PreproPersonEntity.java
View file @
6aa5dbf5
...
...
@@ -3,6 +3,10 @@ package com.yxproject.start.entity;
import
javax.persistence.*
;
import
java.util.Objects
;
/**
* @auther zhangyusheng
* 2019/3/4 20:09
*/
@Entity
@Table
(
name
=
"PREPRO_PERSON"
,
schema
=
"YINGXIN"
,
catalog
=
""
)
public
class
PreproPersonEntity
{
...
...
@@ -30,9 +34,9 @@ public class PreproPersonEntity {
private
String
sjrYzbm
;
private
String
sjrTxdz
;
private
String
sid
;
private
String
fileName
;
private
Long
fileId
;
private
Long
cardTypeId
;
private
String
newFileName
;
private
Long
newFileId
;
private
Long
state
;
@Id
...
...
@@ -276,13 +280,13 @@ public class PreproPersonEntity {
}
@Basic
@Column
(
name
=
"FILE_
NAME
"
)
public
String
getFileName
()
{
return
file
Name
;
@Column
(
name
=
"FILE_
ID
"
)
public
Long
getFileId
()
{
return
file
Id
;
}
public
void
setFile
Name
(
String
fileName
)
{
this
.
file
Name
=
fileName
;
public
void
setFile
Id
(
Long
fileId
)
{
this
.
file
Id
=
fileId
;
}
@Basic
...
...
@@ -296,13 +300,13 @@ public class PreproPersonEntity {
}
@Basic
@Column
(
name
=
"NEW_FILE_
NAME
"
)
public
String
getNewFileName
()
{
return
newFile
Name
;
@Column
(
name
=
"NEW_FILE_
ID
"
)
public
Long
getNewFileId
()
{
return
newFile
Id
;
}
public
void
setNewFile
Name
(
String
newFileName
)
{
this
.
newFile
Name
=
newFileName
;
public
void
setNewFile
Id
(
Long
newFileId
)
{
this
.
newFile
Id
=
newFileId
;
}
@Basic
...
...
@@ -344,14 +348,14 @@ public class PreproPersonEntity {
Objects
.
equals
(
sjrYzbm
,
that
.
sjrYzbm
)
&&
Objects
.
equals
(
sjrTxdz
,
that
.
sjrTxdz
)
&&
Objects
.
equals
(
sid
,
that
.
sid
)
&&
Objects
.
equals
(
file
Name
,
that
.
fileName
)
&&
Objects
.
equals
(
file
Id
,
that
.
fileId
)
&&
Objects
.
equals
(
cardTypeId
,
that
.
cardTypeId
)
&&
Objects
.
equals
(
newFile
Name
,
that
.
newFileName
)
&&
Objects
.
equals
(
newFile
Id
,
that
.
newFileId
)
&&
Objects
.
equals
(
state
,
that
.
state
);
}
@Override
public
int
hashCode
()
{
return
Objects
.
hash
(
jmsfzslh
,
gmsfhm
,
xm
,
xbdm
,
mzdm
,
csrq
,
ssxqdm
,
dzmc
,
sdxp
,
zwyZwtxsj
,
zwyZwtzsj
,
zweZwtxsj
,
zweZwtzsj
,
qfjgGajgmc
,
yxqqsrq
,
yxqjzrq
,
jmsfzslyydm
,
jmsfzzzlxdm
,
jmsfzlzfsdm
,
sjrXm
,
sjrLxdh
,
sjrYzbm
,
sjrTxdz
,
sid
,
file
Name
,
cardTypeId
,
newFileName
,
state
);
return
Objects
.
hash
(
jmsfzslh
,
gmsfhm
,
xm
,
xbdm
,
mzdm
,
csrq
,
ssxqdm
,
dzmc
,
sdxp
,
zwyZwtxsj
,
zwyZwtzsj
,
zweZwtxsj
,
zweZwtzsj
,
qfjgGajgmc
,
yxqqsrq
,
yxqjzrq
,
jmsfzslyydm
,
jmsfzzzlxdm
,
jmsfzlzfsdm
,
sjrXm
,
sjrLxdh
,
sjrYzbm
,
sjrTxdz
,
sid
,
file
Id
,
cardTypeId
,
newFileId
,
state
);
}
}
src/main/java/com/yxproject/start/entity/TaskList/CountCountyEntity.java
View file @
6aa5dbf5
package
com
.
yxproject
.
start
.
entity
.
TaskList
;
import
org.springframework.stereotype.Component
;
@Component
public
class
CountCountyEntity
{
private
String
countyName
;
private
Integer
countyCount
;
...
...
src/main/java/com/yxproject/start/entity/TaskList/CountGajgEntity.java
View file @
6aa5dbf5
package
com
.
yxproject
.
start
.
entity
.
TaskList
;
import
org.springframework.stereotype.Component
;
@Component
public
class
CountGajgEntity
{
private
String
gajgName
;
private
Integer
gajgCount
;
...
...
src/main/java/com/yxproject/start/entity/TaskList/TaskListEntity.java
View file @
6aa5dbf5
package
com
.
yxproject
.
start
.
entity
.
TaskList
;
import
org.springframework.stereotype.Component
;
@Component
public
class
TaskListEntity
{
private
String
countyName
;
private
String
gajgName
;
...
...
src/main/java/com/yxproject/start/mapper/NewFilesMapper.java
0 → 100644
View file @
6aa5dbf5
package
com
.
yxproject
.
start
.
mapper
;
import
com.yxproject.start.entity.NewFilesEntity
;
import
org.apache.ibatis.annotations.Insert
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Options
;
import
org.apache.ibatis.annotations.Update
;
/**
* @auther zhangyusheng
* 2019/3/4 18:46
*/
@Mapper
public
interface
NewFilesMapper
{
@Insert
(
"INSERT INTO NEW_FILES (VERSION_CODE,DWDM,DWMC,RECORD_NUMBER,CREATE_DATE) VALUES (#{versionCode},#{dwdm},#{dwmc},#{recordNumber},#{createDate})"
)
@Options
(
useGeneratedKeys
=
true
,
keyProperty
=
"id"
,
keyColumn
=
"id"
)
public
long
saveNewFiles
(
NewFilesEntity
newFilesEntity
);
@Update
(
"UPDATE NEW_FILES SET NEW_FILE_NAME = #{newFileName} WHERE ID = #{id}"
)
public
boolean
updateNewFileName
(
NewFilesEntity
newFilesEntity
);
}
src/main/java/com/yxproject/start/mapper/PreproPersonMapper.java
View file @
6aa5dbf5
...
...
@@ -31,56 +31,35 @@ public interface PreproPersonMapper {
"<if test='uploadNo != null '>"
+
"and PREPRO_PERSON.JMSFZSLH = #{uploadNo}"
+
"</if>"
+
// "<if test='uploadNo != "''" '>"+
// "and PREPRO_PERSON.JMSFZSLH = #{uploadNo}"+
// "</if>"+
" <if test='IDCard != null '> "
,
"and GMSFHM = #{IDCard} "
,
"</if> "
,
// " <if test='IDCard != '' '> ",
// "and GMSFHM = #{IDCard} ",
// "</if> " ,
" <if test='oldFile != null '> "
,
"and files.SOURCE_FILE_NAME =#{oldFile} "
,
" </if> "
,
// " <if test='oldFile != '' '> ",
// "and files.SOURCE_FILE_NAME =#{oldFile} ",
// " </if> " ,
" <if test='newFile != null'> "
,
"and NEW_FILES.NEW_FILE_NAME = #{newFile}"
,
" </if> "
,
// " <if test='newFile != '' '> ",
// "and NEW_FILES.NEW_FILE_NAME = #{newFile}",
// " </if> " ,
" <if test='SSXQDM != null '> "
,
"and PREPRO_PERSON.SSXQDM =#{SSXQDM}"
,
" </if>"
,
// " <if test='SSXQDM != '' '> ",
// "and PREPRO_PERSON.SSXQDM =#{SSXQDM}",
// " </if> " ,
" <if test='cardType != null '>"
,
" and PREPRO_PERSON.CARD_TYPE_ID =#{cardType}"
,
" </if> "
,
// " <if test='cardType != '' '>",
// " and PREPRO_PERSON.CARD_TYPE_ID =#{cardType}",
// " </if> " ,
" <if test='state != null'>"
,
" and PREPRO_PERSON.state = #{state}"
,
" </if> "
,
// " <if test='state != '' '>",
// " and PREPRO_PERSON.state = #{state}",
// " </if> " ,
" <if test='uploadDate != null '>"
,
" and files.CREAT_TIME = #{uploadDate}"
,
" </if> "
,
// " <if test='uploadDate != '' '>",
// " and files.CREAT_TIME = #{uploadDate}",
// " </if> ",
"</where>"
+
"</script>"
})
public
List
<
PreproPersonEntity
>
selectPreproPerson
(
@Param
(
"uploadNo"
)
String
uploadNo
,
@Param
(
"IDCard"
)
String
IDCard
,
@Param
(
"oldFile"
)
String
oldFile
,
@Param
(
"newFile"
)
String
newFile
,
@Param
(
"SSXQDM"
)
String
SSXQDM
,
@Param
(
"cardType"
)
lo
ng
cardType
,
@Param
(
"state"
)
String
state
,
@Param
(
"uploadDate"
)
String
uploadDate
);
public
List
<
PreproPersonEntity
>
selectPreproPerson
(
@Param
(
"uploadNo"
)
String
uploadNo
,
@Param
(
"IDCard"
)
String
IDCard
,
@Param
(
"oldFile"
)
String
oldFile
,
@Param
(
"newFile"
)
String
newFile
,
@Param
(
"SSXQDM"
)
String
SSXQDM
,
@Param
(
"cardType"
)
Stri
ng
cardType
,
@Param
(
"state"
)
String
state
,
@Param
(
"uploadDate"
)
String
uploadDate
);
/*修改标记制证数据状态*/
@Update
(
"UPDATE PREPRO_PERSON SET STATE = #{state} WHERE JMSFZSLH=#{acceptNo}"
)
public
boolean
updateState
(
@Param
(
"state"
)
String
state
,
@Param
(
"acceptNo"
)
String
acceptNo
);
@Update
(
"UPDATE PREPRO_PERSON SET NEW_FILE_ID=#{newFileId} where JMSFZSLH=#{jmsfzslh}"
)
public
boolean
updateNewFileName
(
PreproPersonEntity
personEntity
);
}
\ No newline at end of file
src/main/java/com/yxproject/start/mapper/QuerySequenceMapper.java
View file @
6aa5dbf5
package
com
.
yxproject
.
start
.
mapper
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Select
;
/**
...
...
@@ -9,6 +10,6 @@ import org.apache.ibatis.annotations.Select;
*/
@Mapper
public
interface
QuerySequenceMapper
{
@Select
(
"select #{sequenceName} from dual"
)
public
String
selectSequenceNextValue
(
String
sequenceName
);
@Select
(
"select #{sequenceName}
,#{sequenceName} as num2
from dual"
)
public
Object
[]
selectSequenceNextValue
(
@Param
(
"sequenceName"
)
String
sequenceName
);
}
src/main/java/com/yxproject/start/service/NewFilesService.java
0 → 100644
View file @
6aa5dbf5
package
com
.
yxproject
.
start
.
service
;
import
com.yxproject.start.entity.NewFilesEntity
;
/**
* @auther zhangyusheng
* 2019/3/4 18:47
*/
public
interface
NewFilesService
{
public
long
saveNewFiles
(
NewFilesEntity
newFilesEntity
);
public
boolean
updateNewFileName
(
NewFilesEntity
newFilesEntity
);
}
src/main/java/com/yxproject/start/service/PersonPostService.java
View file @
6aa5dbf5
...
...
@@ -25,4 +25,5 @@ public interface PersonPostService {
public
boolean
deletePersonalData
(
String
applicantName
,
String
orderNumber
,
String
state
,
String
latticeMouthInformation
,
List
<
String
>
getToCounty
,
String
uploadDate
);
}
src/main/java/com/yxproject/start/service/PreproPersonService.java
View file @
6aa5dbf5
...
...
@@ -14,4 +14,6 @@ public interface PreproPersonService {
public
List
<
PreproPersonEntity
>
selectPreproPerson
(
String
uploadNo
,
String
IDCard
,
String
oldFile
,
String
newFile
,
String
SSXQDM
,
String
cardType
,
String
state
,
String
uploadDate
);
public
boolean
updatePreproPerson_NewFileName
(
List
<
PreproPersonEntity
>
preproPersonEntities
);
}
src/main/java/com/yxproject/start/service/impl/NewFilesServiceImpl.java
0 → 100644
View file @
6aa5dbf5
package
com
.
yxproject
.
start
.
service
.
impl
;
import
com.yxproject.start.entity.NewFilesEntity
;
import
com.yxproject.start.mapper.NewFilesMapper
;
import
com.yxproject.start.service.NewFilesService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
/**
* @auther zhangyusheng
* 2019/3/4 18:52
*/
@Service
public
class
NewFilesServiceImpl
implements
NewFilesService
{
@Autowired
private
NewFilesMapper
newFilesMapper
;
@Override
public
long
saveNewFiles
(
NewFilesEntity
newFilesEntity
)
{
return
newFilesMapper
.
saveNewFiles
(
newFilesEntity
);
}
@Override
public
boolean
updateNewFileName
(
NewFilesEntity
newFilesEntity
)
{
return
newFilesMapper
.
updateNewFileName
(
newFilesEntity
);
}
}
src/main/java/com/yxproject/start/service/impl/PreproPersonServiceImpl.java
View file @
6aa5dbf5
...
...
@@ -24,7 +24,29 @@ public class PreproPersonServiceImpl implements PreproPersonService {
}
@Override
public
List
<
PreproPersonEntity
>
selectPreproPerson
(
String
uploadNo
,
String
IDCard
,
String
oldFile
,
String
newFile
,
String
SSXQDM
,
String
cardType
,
String
state
,
String
uploadDate
)
{
List
<
PreproPersonEntity
>
preproPersonEntities
=
preproPersonMapper
.
selectPreproPerson
(
""
,
""
,
""
,
""
,
""
,
0
,
""
,
""
);
List
<
PreproPersonEntity
>
preproPersonEntities
=
preproPersonMapper
.
selectPreproPerson
(
replace
(
uploadNo
),
replace
(
IDCard
),
replace
(
oldFile
),
replace
(
newFile
),
replace
(
SSXQDM
),
replace
(
cardType
),
replace
(
state
),
replace
(
uploadDate
)
);
return
preproPersonEntities
;
}
private
String
replace
(
String
str
){
if
(
""
.
equals
(
str
)){
return
null
;
}
else
{
return
str
;
}
}
/**
* 更新制证信息表中新文件名
* @param preproPersonEntities
* @return
*/
@Override
public
boolean
updatePreproPerson_NewFileName
(
List
<
PreproPersonEntity
>
preproPersonEntities
)
{
for
(
PreproPersonEntity
preproPersonEntity:
preproPersonEntities
)
{
preproPersonMapper
.
updateNewFileName
(
preproPersonEntity
);
}
return
true
;
}
}
src/main/java/com/yxproject/start/utils/ExportXml.java
deleted
100644 → 0
View file @
31c8a440
package
com
.
yxproject
.
start
.
utils
;
import
com.yxproject.start.entity.FilesEntity
;
import
com.yxproject.start.entity.PreproPersonEntity
;
import
org.dom4j.Document
;
import
org.dom4j.DocumentHelper
;
import
org.dom4j.Element
;
import
java.io.IOException
;
import
java.util.List
;
/**
* @auther zhangyusheng
* 2019/2/13 16:05
*/
public
class
ExportXml
{
/**
* 生成单个可制证数据XML
*
* @throws IOException 可能出现文件写入不成功
*/
public
static
void
createToMakePackageXML
(
List
<
PreproPersonEntity
>
preproPersonEntities
,
FilesEntity
filesEntity
,
String
url
)
throws
IOException
{
//todo
Document
document
=
DocumentHelper
.
createDocument
();
Element
PACKAGE
=
DocumentHelper
.
createElement
(
"PACKAGE"
);
document
.
setRootElement
(
PACKAGE
);
Element
PACKAGEHEAD
=
PACKAGE
.
addElement
(
"PACKAGEHEAD"
);
Element
DATA
=
PACKAGE
.
addElement
(
"DATA"
);
Element
DWDM
=
PACKAGEHEAD
.
addElement
(
"DWDM"
);
DWDM
.
setText
(
filesEntity
.
getDwdm
());
Element
DWMC
=
PACKAGEHEAD
.
addElement
(
"DWMC"
);
DWMC
.
setText
(
filesEntity
.
getDwmc
());
Element
JLS
=
PACKAGEHEAD
.
addElement
(
"JLS"
);
JLS
.
setText
(
preproPersonEntities
.
size
()+
""
);
int
NO
=
1
;
for
(
PreproPersonEntity
preproPersonEntity
:
preproPersonEntities
)
{
Element
RECORD
=
DATA
.
addElement
(
"RECORD"
);
RECORD
.
addAttribute
(
"no"
,
NO
+
""
);
RECORD
.
addAttribute
(
"sid"
,
preproPersonEntity
.
getSid
());
Element
JMSFZSLH
=
RECORD
.
addElement
(
"JMSFZSLH"
);
JMSFZSLH
.
setText
(
preproPersonEntity
.
getJmsfzslh
());
Element
GMSFHM
=
RECORD
.
addElement
(
"GMSFHM"
);
GMSFHM
.
setText
(
preproPersonEntity
.
getGmsfhm
());
Element
XM
=
RECORD
.
addElement
(
"XM"
);
XM
.
setText
(
replaceNullString
(
preproPersonEntity
.
getXm
()));
Element
XBDM
=
RECORD
.
addElement
(
"XBDM"
);
XBDM
.
setText
(
replaceNullString
(
preproPersonEntity
.
getXbdm
()));
Element
MZDM
=
RECORD
.
addElement
(
"MZDM"
);
MZDM
.
setText
(
replaceNullString
(
preproPersonEntity
.
getMzdm
()));
Element
CSRQ
=
RECORD
.
addElement
(
"CSRQ"
);
CSRQ
.
setText
(
replaceNullString
(
preproPersonEntity
.
getCsrq
()));
Element
SSXQDM
=
RECORD
.
addElement
(
"SSXQDM"
);
SSXQDM
.
setText
(
replaceNullString
(
preproPersonEntity
.
getSsxqdm
()));
Element
DZMC
=
RECORD
.
addElement
(
"DZMC"
);
DZMC
.
setText
(
replaceNullString
(
preproPersonEntity
.
getDzmc
()));
Element
SDXP
=
RECORD
.
addElement
(
"SDXP"
);
SDXP
.
setText
(
replaceNullString
(
preproPersonEntity
.
getSdxp
()));
Element
ZWY_ZWTXSJ
=
RECORD
.
addElement
(
"ZWY_ZWTXSJ"
);
ZWY_ZWTXSJ
.
setText
(
replaceNullString
(
preproPersonEntity
.
getZwyZwtxsj
()));
Element
ZWY_ZWTZSJ
=
RECORD
.
addElement
(
"ZWY_ZWTZSJ"
);
ZWY_ZWTZSJ
.
setText
(
replaceNullString
(
preproPersonEntity
.
getZwyZwtzsj
()));
Element
ZWE_ZWTXSJ
=
RECORD
.
addElement
(
"ZWE_ZWTXSJ"
);
ZWE_ZWTXSJ
.
setText
(
replaceNullString
(
preproPersonEntity
.
getZweZwtxsj
()));
Element
ZWE_ZWTZSJ
=
RECORD
.
addElement
(
"ZWE_ZWTZSJ"
);
ZWE_ZWTZSJ
.
setText
(
replaceNullString
(
preproPersonEntity
.
getZweZwtzsj
()));
Element
QFJG_GAJGMC
=
RECORD
.
addElement
(
"QFJG_GAJGMC"
);
QFJG_GAJGMC
.
setText
(
replaceNullString
(
preproPersonEntity
.
getQfjgGajgmc
()));
Element
YXQQSRQ
=
RECORD
.
addElement
(
"YXQQSRQ"
);
YXQQSRQ
.
setText
(
preproPersonEntity
.
getYxqqsrq
());
Element
YXQJZRQ
=
RECORD
.
addElement
(
"YXQJZRQ"
);
YXQJZRQ
.
setText
(
preproPersonEntity
.
getYxqjzrq
());
Element
JMSFZSLYYDM
=
RECORD
.
addElement
(
"JMSFZSLYYDM"
);
JMSFZSLYYDM
.
setText
(
preproPersonEntity
.
getJmsfzslyydm
());
Element
JMSFZZZLXDM
=
RECORD
.
addElement
(
"JMSFZZZLXDM"
);
JMSFZZZLXDM
.
setText
(
preproPersonEntity
.
getJmsfzzzlxdm
());
Element
JMSFZLZFSDM
=
RECORD
.
addElement
(
"JMSFZLZFSDM"
);
JMSFZLZFSDM
.
setText
(
preproPersonEntity
.
getJmsfzlzfsdm
());
Element
SJR_XM
=
RECORD
.
addElement
(
"SJR_XM"
);
SJR_XM
.
setText
(
replaceNullString
(
preproPersonEntity
.
getSjrXm
()));
Element
SJR_LXDH
=
RECORD
.
addElement
(
"SJR_LXDH"
);
SJR_LXDH
.
setText
(
replaceNullString
(
preproPersonEntity
.
getSjrLxdh
()));
Element
SJR_YZBM
=
RECORD
.
addElement
(
"SJR_YZBM"
);
SJR_YZBM
.
setText
(
replaceNullString
(
preproPersonEntity
.
getSjrYzbm
()));
Element
SJR_TXDZ
=
RECORD
.
addElement
(
"SJR_TXDZ"
);
SJR_TXDZ
.
setText
(
replaceNullString
(
preproPersonEntity
.
getSjrTxdz
()));
NO
++;
}
YXStringUtils
.
saveDom2File
(
document
,
url
+
"\\"
+
"ZAGL_ZZJH_"
+
".xml"
);
}
/**
* 字符串去除空格
* @param str 原始字符串
* @return 返回新的字符串
*/
public
static
String
replaceNullString
(
String
str
)
{
if
(
str
==
null
)
return
""
;
else
return
str
;
}
}
src/main/java/com/yxproject/start/utils/IDCardXmlUtils.java
deleted
100644 → 0
View file @
31c8a440
This diff is collapsed.
Click to expand it.
src/main/java/com/yxproject/start/utils/QuerySequenceSercive.java
View file @
6aa5dbf5
...
...
@@ -13,8 +13,8 @@ public class QuerySequenceSercive {
@Autowired
private
QuerySequenceMapper
querySequenceMapper
;
public
String
selectSequenceNextValue
(
String
sequenceName
){
String
s
=
querySequenceMapper
.
selectSequenceNextValue
(
sequenceName
+
".nextval()
"
);
return
s
;
Object
[]
objects
=
querySequenceMapper
.
selectSequenceNextValue
(
sequenceName
+
".nextval
"
);
return
""
;
}
...
...
src/main/resources/mapper/config/mybatis-config.xml
View file @
6aa5dbf5
...
...
@@ -5,5 +5,6 @@ PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
<configuration>
<settings>
<setting
name=
"mapUnderscoreToCamelCase"
value=
"true"
/>
<setting
name=
"logImpl"
value=
"STDOUT_LOGGING"
/>
</settings>
</configuration>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment