Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gong-an
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
Administrator
gong-an
Commits
6a758e9e
Commit
6a758e9e
authored
Nov 16, 2021
by
wuqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2021/11/16 吴卿华 增加echarts双人转账关系图接口 修改双人转账关系图显示位置
parent
4cb08521
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
227 additions
and
52 deletions
+227
-52
lineStyle.java
...ple/gajz/transferrelationship/bean/echarts/lineStyle.java
+16
-0
EchartsTrBetweenTwoPersonsVo.java
...ferrelationship/bean/vo/EchartsTrBetweenTwoPersonsVo.java
+28
-0
TransferLocation.java
...ferrelationship/relationalalgorithm/TransferLocation.java
+85
-49
TransferRelationshipService.java
...sferrelationship/service/TransferRelationshipService.java
+14
-0
TransferRelationshipServiceImpl.java
.../service/serviceImpl/TransferRelationshipServiceImpl.java
+78
-0
TransferRelationshipMapper.xml
src/main/resources/mapper/TransferRelationshipMapper.xml
+6
-3
No files found.
src/main/java/com/example/gajz/transferrelationship/bean/echarts/lineStyle.java
0 → 100644
View file @
6a758e9e
package
com
.
example
.
gajz
.
transferrelationship
.
bean
.
echarts
;
import
lombok.Data
;
import
lombok.ToString
;
/**
* echarts 关系图
*/
@Data
@ToString
public
class
lineStyle
{
/**
* 关系线曲度
*/
private
double
curveness
;
}
src/main/java/com/example/gajz/transferrelationship/bean/vo/EchartsTrBetweenTwoPersonsVo.java
0 → 100644
View file @
6a758e9e
package
com
.
example
.
gajz
.
transferrelationship
.
bean
.
vo
;
import
lombok.Data
;
import
lombok.ToString
;
/**
* echarts 双人转账关系图 关系 生成接口 返回值封装类
*/
@Data
@ToString
public
class
EchartsTrBetweenTwoPersonsVo
{
/**
* 转账人
*/
private
String
source
;
/**
* 收款人
*/
private
String
target
;
/**
* 关系线曲度
*/
private
com
.
example
.
gajz
.
transferrelationship
.
bean
.
echarts
.
lineStyle
lineStyle
;
}
src/main/java/com/example/gajz/transferrelationship/relationalalgorithm/TransferLocation.java
View file @
6a758e9e
...
...
@@ -36,12 +36,12 @@ public class TransferLocation {
int
Hierarchy
=
1
;
for
(
int
k
=
0
;
k
<
1
;){
int
m
=
0
;
for
(
int
f
=
0
;
f
<
transferAssociationList
.
size
();
f
++){
if
(
transferAssociationList
.
get
(
f
).
getHierarchy
()==
Hierarchy
){
searchRelationshipVoList
.
add
(
transferAssociationList
.
get
(
f
));
m
++;
for
(
int
f
=
0
;
f
<
transferAssociationList
.
size
();
f
++){
if
(
transferAssociationList
.
get
(
f
).
getHierarchy
()==
Hierarchy
){
searchRelationshipVoList
.
add
(
transferAssociationList
.
get
(
f
));
m
++;
}
}
}
if
(
m
==
0
){
break
;
}
...
...
@@ -69,23 +69,23 @@ public class TransferLocation {
List
<
SearchRelationshipVo
>
querySubordinateList
=
test
.
transferRelationshipMapper
.
querySubordinate
(
cardNumber
);
/**循环做对比 查找出下级数据*/
for
(
int
n
=
0
;
n
<
querySubordinateList
.
size
();
n
++){
for
(
int
p
=
0
;
p
<
searchRelationshipVoList
.
size
();
p
++){
Object
CardNumber
=
hashMap
.
get
(
searchRelationshipVoList
.
get
(
p
).
getCardNumber
());
if
(
CardNumber
==
null
)
{
if
(
querySubordinateList
.
get
(
n
).
getCardNumber
().
equals
(
searchRelationshipVoList
.
get
(
p
).
getCardNumber
()))
{
/** 存放下级数据封装类*/
SearchRelationshipVo
searchRelationshipVo
=
new
SearchRelationshipVo
();
searchRelationshipVo
.
setCardNumber
(
searchRelationshipVoList
.
get
(
p
).
getCardNumber
());
searchRelationshipVo
.
setColor
(
searchRelationshipVoList
.
get
(
p
).
getColor
());
searchRelationshipVo
.
setSize
(
searchRelationshipVoList
.
get
(
p
).
getSize
());
searchRelationshipVo
.
setName
(
searchRelationshipVoList
.
get
(
p
).
getName
());
searchRelationshipVo
.
setHierarchy
(
searchRelationshipVoList
.
get
(
p
).
getHierarchy
());
//将已经查询到的下级存入map中 下次循环做对比 防止重复
hashMap
.
put
(
searchRelationshipVoList
.
get
(
p
).
getCardNumber
(),
searchRelationshipVoList
.
get
(
p
).
getCardNumber
());
parameterList
.
add
(
searchRelationshipVo
);
}
}
}
for
(
int
p
=
0
;
p
<
searchRelationshipVoList
.
size
();
p
++){
Object
CardNumber
=
hashMap
.
get
(
searchRelationshipVoList
.
get
(
p
).
getCardNumber
());
if
(
CardNumber
==
null
)
{
if
(
querySubordinateList
.
get
(
n
).
getCardNumber
().
equals
(
searchRelationshipVoList
.
get
(
p
).
getCardNumber
()))
{
/** 存放下级数据封装类*/
SearchRelationshipVo
searchRelationshipVo
=
new
SearchRelationshipVo
();
searchRelationshipVo
.
setCardNumber
(
searchRelationshipVoList
.
get
(
p
).
getCardNumber
());
searchRelationshipVo
.
setColor
(
searchRelationshipVoList
.
get
(
p
).
getColor
());
searchRelationshipVo
.
setSize
(
searchRelationshipVoList
.
get
(
p
).
getSize
());
searchRelationshipVo
.
setName
(
searchRelationshipVoList
.
get
(
p
).
getName
());
searchRelationshipVo
.
setHierarchy
(
searchRelationshipVoList
.
get
(
p
).
getHierarchy
());
//将已经查询到的下级存入map中 下次循环做对比 防止重复
hashMap
.
put
(
searchRelationshipVoList
.
get
(
p
).
getCardNumber
(),
searchRelationshipVoList
.
get
(
p
).
getCardNumber
());
parameterList
.
add
(
searchRelationshipVo
);
}
}
}
}
/**每圈点数 动态变化 */
int
base
=
8
;
...
...
@@ -93,28 +93,34 @@ public class TransferLocation {
int
total
=
parameterList
.
size
();
//判断上级卡号是否是转账人 如果是就设置初始xy轴
if
(
searchRelationshipVoList
.
get
(
i
).
getHierarchy
()==
1
){
searchRelationshipVoList
.
get
(
i
).
setY
(
(
int
)
(
Math
.
random
()
*
200
)
);
searchRelationshipVoList
.
get
(
i
).
setX
(
(
int
)
(
Math
.
random
()
*
200
)
);
searchRelationshipVoList
.
get
(
i
).
setY
(
300
);
searchRelationshipVoList
.
get
(
i
).
setX
(
300
);
searList
.
add
(
searchRelationshipVoList
.
get
(
i
));
int
centerPointX
=
searchRelationshipVoList
.
get
(
i
).
getX
();
int
centerPointY
=
searchRelationshipVoList
.
get
(
i
).
getY
();
int
centerPointX
=
searchRelationshipVoList
.
get
(
i
).
getX
();
int
centerPointY
=
searchRelationshipVoList
.
get
(
i
).
getY
();
/**循环次数*/
int
numberCycles
=
0
;
/**循环下级点数 计算下级X Y轴位置*/
for
(
int
y
=
1
;
total
>
0
;
y
++){
/**点之间 x轴y轴间隔距离*/
int
distance
=
3
0
;
int
distance
=
10
0
;
/**圆分成两份 */
int
pointsPerShare
=
base
/
2
;
/**小圆半径
点数X距离
*/
int
circleRadius
=
1
00
;
/**
右上
逐渐递增*/
/**小圆半径 */
int
circleRadius
=
3
00
;
/**
X
逐渐递增*/
int
lowerRight
=
0
;
/**Y逐渐递增*/
int
lowerRightY
=
0
;
if
(
base
<=
total
){
for
(
int
t
=
0
;
t
<
base
;
t
++){
SearchRelationshipVo
searchRelationship
=
new
SearchRelationshipVo
();
if
(
t
<
pointsPerShare
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
if
(
t
%
2
==
0
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
+
50
);
}
else
{
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
}
searchRelationship
.
setY
(
centerPointY
-(
distance
*
lowerRight
));
searchRelationship
.
setName
(
parameterList
.
get
(
numberCycles
).
getName
());
searchRelationship
.
setColor
(
parameterList
.
get
(
numberCycles
).
getColor
());
...
...
@@ -124,15 +130,19 @@ public class TransferLocation {
searList
.
add
(
searchRelationship
);
lowerRight
++;
}
else
if
(
t
<=
pointsPerShare
*
2
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
searchRelationship
.
setY
(
centerPointY
+(
lowerRight
*
distance
));
if
(
t
%
2
==
0
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
+
50
);
}
else
{
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
}
searchRelationship
.
setY
(
centerPointY
+(
lowerRightY
*
distance
));
searchRelationship
.
setName
(
parameterList
.
get
(
numberCycles
).
getName
());
searchRelationship
.
setColor
(
parameterList
.
get
(
numberCycles
).
getColor
());
searchRelationship
.
setHierarchy
(
parameterList
.
get
(
numberCycles
).
getHierarchy
());
searchRelationship
.
setCardNumber
(
parameterList
.
get
(
numberCycles
).
getCardNumber
());
searchRelationship
.
setSize
(
parameterList
.
get
(
numberCycles
).
getSize
());
searList
.
add
(
searchRelationship
);
lowerRight
++;
lowerRight
Y
++;
}
numberCycles
++;
}
...
...
@@ -144,7 +154,11 @@ public class TransferLocation {
for
(
int
t
=
0
;
numberCycles
<
parameterList
.
size
();
t
++){
SearchRelationshipVo
searchRelationship
=
new
SearchRelationshipVo
();
if
(
t
<
pointsPerShare
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
if
(
t
%
2
==
0
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
+
50
);
}
else
{
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
}
searchRelationship
.
setY
(
centerPointY
-(
lowerRight
*
distance
));
searchRelationship
.
setName
(
parameterList
.
get
(
numberCycles
).
getName
());
searchRelationship
.
setColor
(
parameterList
.
get
(
numberCycles
).
getColor
());
...
...
@@ -153,15 +167,19 @@ public class TransferLocation {
searchRelationship
.
setSize
(
parameterList
.
get
(
numberCycles
).
getSize
());
lowerRight
++;
}
else
if
(
t
<=
pointsPerShare
*
2
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
searchRelationship
.
setY
(
centerPointY
+(
lowerRight
*
distance
));
if
(
t
%
2
==
0
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
+
50
);
}
else
{
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
}
searchRelationship
.
setY
(
centerPointY
+(
lowerRightY
*
distance
));
searchRelationship
.
setName
(
parameterList
.
get
(
numberCycles
).
getName
());
searchRelationship
.
setColor
(
parameterList
.
get
(
numberCycles
).
getColor
());
searchRelationship
.
setHierarchy
(
parameterList
.
get
(
numberCycles
).
getHierarchy
());
searchRelationship
.
setCardNumber
(
parameterList
.
get
(
numberCycles
).
getCardNumber
());
searchRelationship
.
setSize
(
parameterList
.
get
(
numberCycles
).
getSize
());
searList
.
add
(
searchRelationship
);
lowerRight
++;
lowerRight
Y
++;
}
searList
.
add
(
searchRelationship
);
numberCycles
++;
...
...
@@ -181,18 +199,24 @@ public class TransferLocation {
/**循环下级点数 计算下级X Y轴位置*/
for
(
int
y
=
1
;
total
>
0
;
y
++){
/**点之间 x轴y轴间隔距离*/
int
distance
=
3
0
;
int
distance
=
10
0
;
/**圆分成两份 */
int
pointsPerShare
=
base
/
2
;
/**半径*/
int
circleRadius
=
300
;
/**右下角逐渐递减*/
int
lowerRight
=
0
;
int
lowerRight
=
1
;
/**Y逐渐递增*/
int
lowerRightY
=
1
;
if
(
base
<=
total
){
for
(
int
t
=
0
;
t
<
base
;
t
++){
SearchRelationshipVo
searchRelationship
=
new
SearchRelationshipVo
();
if
(
t
<
pointsPerShare
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
if
(
t
%
2
==
0
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
+
50
);
}
else
{
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
}
searchRelationship
.
setY
(
centerPointY
-(
lowerRight
*
distance
));
searchRelationship
.
setName
(
parameterList
.
get
(
numberCycles
).
getName
());
searchRelationship
.
setColor
(
parameterList
.
get
(
numberCycles
).
getColor
());
...
...
@@ -202,15 +226,19 @@ public class TransferLocation {
searList
.
add
(
searchRelationship
);
lowerRight
++;
}
else
if
(
t
<=
pointsPerShare
*
2
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
searchRelationship
.
setY
(
centerPointY
+(
lowerRight
*
distance
));
if
(
t
%
2
==
0
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
+
50
);
}
else
{
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
}
searchRelationship
.
setY
(
centerPointY
+(
lowerRightY
*
distance
));
searchRelationship
.
setName
(
parameterList
.
get
(
numberCycles
).
getName
());
searchRelationship
.
setColor
(
parameterList
.
get
(
numberCycles
).
getColor
());
searchRelationship
.
setHierarchy
(
parameterList
.
get
(
numberCycles
).
getHierarchy
());
searchRelationship
.
setCardNumber
(
parameterList
.
get
(
numberCycles
).
getCardNumber
());
searchRelationship
.
setSize
(
parameterList
.
get
(
numberCycles
).
getSize
());
searList
.
add
(
searchRelationship
);
lowerRight
++;
lowerRight
Y
++;
}
numberCycles
++;
}
...
...
@@ -222,7 +250,11 @@ public class TransferLocation {
for
(
int
t
=
0
;
numberCycles
<
parameterList
.
size
();
t
++){
SearchRelationshipVo
searchRelationship
=
new
SearchRelationshipVo
();
if
(
t
<
pointsPerShare
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
if
(
t
%
2
==
0
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
+
50
);
}
else
{
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
}
searchRelationship
.
setY
(
centerPointY
-(
lowerRight
*
distance
));
searchRelationship
.
setName
(
parameterList
.
get
(
numberCycles
).
getName
());
searchRelationship
.
setColor
(
parameterList
.
get
(
numberCycles
).
getColor
());
...
...
@@ -231,15 +263,19 @@ public class TransferLocation {
searchRelationship
.
setSize
(
parameterList
.
get
(
numberCycles
).
getSize
());
lowerRight
++;
}
else
if
(
t
<=
pointsPerShare
*
2
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
searchRelationship
.
setY
(
centerPointY
+(
lowerRight
*
distance
));
if
(
t
%
2
==
0
){
searchRelationship
.
setX
(
centerPointX
+
circleRadius
+
50
);
}
else
{
searchRelationship
.
setX
(
centerPointX
+
circleRadius
);
}
searchRelationship
.
setY
(
centerPointY
+(
lowerRightY
*
distance
));
searchRelationship
.
setName
(
parameterList
.
get
(
numberCycles
).
getName
());
searchRelationship
.
setColor
(
parameterList
.
get
(
numberCycles
).
getColor
());
searchRelationship
.
setHierarchy
(
parameterList
.
get
(
numberCycles
).
getHierarchy
());
searchRelationship
.
setCardNumber
(
parameterList
.
get
(
numberCycles
).
getCardNumber
());
searchRelationship
.
setSize
(
parameterList
.
get
(
numberCycles
).
getSize
());
searList
.
add
(
searchRelationship
);
lowerRight
++;
lowerRight
Y
++;
}
searList
.
add
(
searchRelationship
);
numberCycles
++;
...
...
@@ -248,7 +284,7 @@ public class TransferLocation {
}
}
break
;
break
;
}
}
...
...
src/main/java/com/example/gajz/transferrelationship/service/TransferRelationshipService.java
View file @
6a758e9e
...
...
@@ -78,4 +78,18 @@ public interface TransferRelationshipService {
* @return
*/
Result
trBetweenTwoPersons
(
List
<
SearchRelationshipVo
>
transferAssociationParam
);
/**
* echarts 双人转账关系图 点 生成接口
* @param transferAssociationParam
* @return
*/
Result
echartsTransferAssociation
(
TransferAssociationParam
transferAssociationParam
);
/**
* echarts 双人转账关系图 关系 生成接口
* @param transferAssociationParam
* @return
*/
Result
echartsTrBetweenTwoPersons
(
List
<
SearchRelationshipVo
>
transferAssociationParam
);
}
src/main/java/com/example/gajz/transferrelationship/service/serviceImpl/TransferRelationshipServiceImpl.java
View file @
6a758e9e
...
...
@@ -3,6 +3,7 @@ import com.example.gajz.redis.ConFigRedis;
import
com.example.gajz.result.Result
;
import
com.example.gajz.result.ResultCode
;
import
com.example.gajz.transferrelationship.bean.dto.*
;
import
com.example.gajz.transferrelationship.bean.echarts.lineStyle
;
import
com.example.gajz.transferrelationship.bean.excel.abcExcie
;
import
com.example.gajz.transferrelationship.bean.param.TransferAssociationParam
;
import
com.example.gajz.transferrelationship.bean.vo.*
;
...
...
@@ -870,4 +871,81 @@ public class TransferRelationshipServiceImpl implements TransferRelationshipServ
}
return
new
Result
(
ResultCode
.
SUCCESS
,
list
);
}
/**
* echarts 双人转账关系图 点 生成接口
* @param transferAssociationParam
* @return
*/
@Override
public
Result
echartsTransferAssociation
(
TransferAssociationParam
transferAssociationParam
)
{
Result
result
=
this
.
transferAssociation
(
transferAssociationParam
);
Object
obj
=
result
.
getData
();
/**将有关系的数据放入这个list中 */
List
<
SearchRelationshipVo
>
transferAssociationList
=
new
ArrayList
<>();
if
(
obj
instanceof
ArrayList
<?>)
{
for
(
Object
o
:
(
List
<?>)
obj
)
{
transferAssociationList
.
add
(
SearchRelationshipVo
.
class
.
cast
(
o
));
}
}
List
<
EchartsUserVo
>
list
=
new
ArrayList
<>();
for
(
int
i
=
0
;
i
<
transferAssociationList
.
size
();
i
++){
EchartsUserVo
echartsUserVo
=
new
EchartsUserVo
();
echartsUserVo
.
setY
(
transferAssociationList
.
get
(
i
).
getY
());
echartsUserVo
.
setX
(
transferAssociationList
.
get
(
i
).
getX
());
echartsUserVo
.
setName
(
transferAssociationList
.
get
(
i
).
getCardNumber
());
list
.
add
(
echartsUserVo
);
}
return
new
Result
(
ResultCode
.
SUCCESS
,
list
);
}
/**
* echarts 双人转账关系图 关系 生成接口
* @param transferAssociationParam
* @return
*/
@Override
public
Result
echartsTrBetweenTwoPersons
(
List
<
SearchRelationshipVo
>
transferAssociationParam
)
{
Result
result
=
this
.
trBetweenTwoPersons
(
transferAssociationParam
);
Object
obj
=
result
.
getData
();
/**将有关系的数据放入这个list中 */
List
<
TransferRelationship
>
transferAssociationList
=
new
ArrayList
<>();
if
(
obj
instanceof
ArrayList
<?>)
{
for
(
Object
o
:
(
List
<?>)
obj
)
{
transferAssociationList
.
add
(
TransferRelationship
.
class
.
cast
(
o
));
}
}
/**将已经获取到的关系数据放入新list当中返回*/
List
<
EchartsTrBetweenTwoPersonsVo
>
echartsTrBetweenTwoPersonsVosList
=
new
ArrayList
<>();
for
(
int
i
=
0
;
i
<
transferAssociationList
.
size
();
i
++){
EchartsTrBetweenTwoPersonsVo
echartsTrBetweenTwoPersonsVo
=
new
EchartsTrBetweenTwoPersonsVo
();
echartsTrBetweenTwoPersonsVo
.
setSource
(
transferAssociationList
.
get
(
i
).
getSource
().
getId
());
echartsTrBetweenTwoPersonsVo
.
setTarget
(
transferAssociationList
.
get
(
i
).
getTarget
().
getId
());
echartsTrBetweenTwoPersonsVosList
.
add
(
echartsTrBetweenTwoPersonsVo
);
}
/**计算转账关系曲线*/
for
(
int
p
=
0
;
p
<
echartsTrBetweenTwoPersonsVosList
.
size
();
p
++){
//转账共有几人
int
frequency
=
0
;
//曲线值
double
curveValue
=
0.01
;
for
(
int
k
=
0
;
k
<
echartsTrBetweenTwoPersonsVosList
.
size
();
k
++){
if
(
echartsTrBetweenTwoPersonsVosList
.
get
(
p
).
getSource
().
equals
(
echartsTrBetweenTwoPersonsVosList
.
get
(
k
).
getSource
())){
frequency
++;
if
(
frequency
>
2
){
lineStyle
line
=
new
lineStyle
();
line
.
setCurveness
(
curveValue
);
echartsTrBetweenTwoPersonsVosList
.
get
(
p
).
setLineStyle
(
line
);
curveValue
=
curveValue
+
0.01
;
}
else
{
lineStyle
line
=
new
lineStyle
();
line
.
setCurveness
(
curveValue
);
echartsTrBetweenTwoPersonsVosList
.
get
(
p
).
setLineStyle
(
line
);
}
}
}
}
return
new
Result
(
ResultCode
.
SUCCESS
,
echartsTrBetweenTwoPersonsVosList
);
}
}
src/main/resources/mapper/TransferRelationshipMapper.xml
View file @
6a758e9e
...
...
@@ -96,8 +96,10 @@
<!--查询搜索人关联下一级数据-->
<select
id=
"querySubordinate"
resultType=
"com.example.gajz.transferrelationship.bean.vo.SearchRelationshipVo"
>
select end_account_name as name,end_card_no as cardNumber,count(end_card_no) as transferTimes
from abc_statement where end_account_name is not null and end_card_no is not null and
bank_card_no=#{cardNumber} group by end_card_no
from abc_statement
where end_account_name is not null
and end_card_no is not null
and bank_card_no=#{cardNumber} group by end_card_no
</select>
<!--查询转账人-->
...
...
@@ -138,7 +140,8 @@
<!--查询上级转账人方法-->
<select
id=
"querySuperior"
resultType=
"com.example.gajz.transferrelationship.bean.vo.SearchRelationshipVo"
>
select bank_account_name as name ,bank_card_no as cardNumber from abc_statement where end_card_no=#{cardNumbe} and bank_card_no is not null
select bank_account_name as name ,bank_card_no as cardNumber from abc_statement where end_card_no=#{cardNumbe}
and bank_card_no is not null
group by bank_card_no
</select>
...
...
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