Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-core
Overview
Overview
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
isc-v3.1-tmp
isc-core
Commits
76ba0466
Commit
76ba0466
authored
Sep 29, 2024
by
niewei
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
parents
2bb750f9
41d8f8f4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
5 deletions
+19
-5
Smh.java
isc-common-core/src/main/java/com/brilliance/isc/bo/Smh.java
+7
-0
SmhMapper.java
...e/src/main/java/com/brilliance/isc/mda/dao/SmhMapper.java
+3
-0
atpmapper.xml
isc-common-core/src/main/resources/mapper/atpmapper.xml
+3
-5
smhmapper.xml
isc-common-core/src/main/resources/mapper/smhmapper.xml
+6
-0
No files found.
isc-common-core/src/main/java/com/brilliance/isc/bo/Smh.java
View file @
76ba0466
...
...
@@ -144,5 +144,12 @@ public class Smh implements Serializable {
//原ISO报文类型
private
String
orimsgtyp
=
NULLSTR
;
private
String
mpiinr
=
NULLSTR
;
private
String
docmd5
=
NULLSTR
;
private
long
doclen
;
private
int
xxxcnt
;
}
isc-common-core/src/main/java/com/brilliance/isc/mda/dao/SmhMapper.java
View file @
76ba0466
...
...
@@ -170,4 +170,6 @@ public interface SmhMapper {
Smh
getSmhByApfcnt
(
@Param
(
"apfcnt"
)
String
apfcnt
);
Smh
selectByMpiinr
(
@Param
(
"mpiinr"
)
String
mpiinr
);
}
\ No newline at end of file
isc-common-core/src/main/resources/mapper/atpmapper.xml
View file @
76ba0466
...
...
@@ -334,7 +334,8 @@
<if
test=
"cod != null and cod !=''"
>
and a.cod = #{cod,jdbcType=VARCHAR}
</if>
</select>
<select
id=
"selectFirstCodList"
resultMap=
"AtpInfoVo"
>
select distinct s1.txt as mancodName,a.MANCOD -- ,GROUP_CONCAT(a.cod) as subcodstr
select distinct t.* from (
select s1.txt as mancodName,a.MANCOD
from atp a
left join stb s1 on s1.tbl='MANCOD' and s1.UIL='CN' and s1.cod=a.mancod
where 1=1
...
...
@@ -342,9 +343,7 @@
and a.mancod is not null
and s1.cod is not null
and s1.cod not like 'FCT%'
--
<if
test=
"cod != null and cod !=''"
>
and a.mancod = #{cod,jdbcType=VARCHAR}
</if>
-- group by a.mancod
order by s1.srt asc
order by s1.srt asc) t
</select>
<select
id=
"selectSecondCodList"
resultMap=
"AtpInfoVo"
>
...
...
@@ -354,7 +353,6 @@
where 1=1
and a.BUSTRNFLG ='X'
and s1.cod is not null
--
<if
test=
"cod != null and cod !=''"
>
and a.cod = #{cod,jdbcType=VARCHAR}
</if>
order by a.cod asc
</select>
...
...
isc-common-core/src/main/resources/mapper/smhmapper.xml
View file @
76ba0466
...
...
@@ -815,6 +815,12 @@
apfcnt =#{apfcnt,jdbcType=VARCHAR}
limit 1
</select>
<select
id=
"selectByMpiinr"
resultType=
"com.brilliance.isc.mda.dao"
>
select
<include
refid=
"Base_Column_List"
/>
from smh
where mpiinr = #{mpiinr}
</select>
</mapper>
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