Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cms
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
cms
Commits
e64a4a38
提交
e64a4a38
authored
8月 23, 2023
作者:
xiaowang
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' of
ssh://git.mmcuav.cn:8222/iuav/cms
into develop
上级
84c7c4f6
e8a3ebbe
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
17 行增加
和
12 行删除
+17
-12
pom.xml
csm-service/cms-service-user/pom.xml
+4
-1
XzServiceImpl.java
...va/com/mmc/iuav/user/service/xzsz/impl/XzServiceImpl.java
+3
-3
application-dev.yml
...e/cms-service-user/src/main/resources/application-dev.yml
+2
-2
application-local.yml
...cms-service-user/src/main/resources/application-local.yml
+2
-2
UserServiceDao.xml
...service-user/src/main/resources/mapper/UserServiceDao.xml
+2
-2
not-check.yml
...service/cms-service-user/src/main/resources/not-check.yml
+2
-0
kustomization.yaml
kustomization/overlays/dev/kustomization.yaml
+1
-1
kustomization.yaml
kustomization/overlays/prod/kustomization.yaml
+1
-1
没有找到文件。
csm-service/cms-service-user/pom.xml
浏览文件 @
e64a4a38
...
@@ -90,7 +90,7 @@
...
@@ -90,7 +90,7 @@
<artifactId>
piggy-settlement
</artifactId>
<artifactId>
piggy-settlement
</artifactId>
<version>
1.0.0
</version>
<version>
1.0.0
</version>
<scope>
system
</scope>
<scope>
system
</scope>
<systemPath>
${basedir}/src/main/resources/lib/piggy-settlement-sdk-1.7.0.jar
</systemPath>
<systemPath>
${
project.
basedir}/src/main/resources/lib/piggy-settlement-sdk-1.7.0.jar
</systemPath>
</dependency>
</dependency>
<dependency>
<dependency>
...
@@ -106,6 +106,9 @@
...
@@ -106,6 +106,9 @@
<plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<includeSystemScope>
true
</includeSystemScope>
</configuration>
</plugin>
</plugin>
</plugins>
</plugins>
</build>
</build>
...
...
csm-service/cms-service-user/src/main/java/com/mmc/iuav/user/service/xzsz/impl/XzServiceImpl.java
浏览文件 @
e64a4a38
...
@@ -118,7 +118,7 @@ public class XzServiceImpl implements XzService {
...
@@ -118,7 +118,7 @@ public class XzServiceImpl implements XzService {
@Transactional
@Transactional
@Override
@Override
public
String
xzAuthNotify
(
JSONObject
notify
)
{
public
String
xzAuthNotify
(
JSONObject
notify
)
{
log
.
info
(
"获取到的推送结果:{}"
,
notify
.
toString
());
log
.
info
(
"
xzAuthNotify
获取到的推送结果:{}"
,
notify
.
toString
());
// 认证成功,修改认证状态
// 认证成功,修改认证状态
if
(
notify
.
get
(
"code"
).
toString
().
equals
(
"0"
))
{
if
(
notify
.
get
(
"code"
).
toString
().
equals
(
"0"
))
{
XzAuthDO
authDO
=
notify
.
get
(
"data"
,
XzAuthDO
.
class
);
XzAuthDO
authDO
=
notify
.
get
(
"data"
,
XzAuthDO
.
class
);
...
@@ -248,8 +248,8 @@ public class XzServiceImpl implements XzService {
...
@@ -248,8 +248,8 @@ public class XzServiceImpl implements XzService {
@Override
@Override
public
String
xzWithdrawNotify
(
JSONObject
notify
)
{
public
String
xzWithdrawNotify
(
JSONObject
notify
)
{
log
.
info
(
"获取到的推送结果:{}"
,
notify
.
toString
());
log
.
info
(
"
xzWithdrawNotify
获取到的推送结果:{}"
,
notify
.
toString
());
// TODO 会受到两次回调
return
"success"
;
return
"success"
;
}
}
...
...
csm-service/cms-service-user/src/main/resources/application-dev.yml
浏览文件 @
e64a4a38
...
@@ -76,8 +76,8 @@ third-party:
...
@@ -76,8 +76,8 @@ third-party:
domain
:
https://uat.xzsz.ltd/
domain
:
https://uat.xzsz.ltd/
position
:
销售推广
position
:
销售推广
taxFundId
:
xxxxxxxxxxxxxxxxxxxxxxx
taxFundId
:
xxxxxxxxxxxxxxxxxxxxxxx
authNotify
:
https://test.iuav.shop/xz/xzAuthNotify
authNotify
:
https://test.iuav.shop/
userapp/
xz/xzAuthNotify
withdrawNotify
:
http://test.iuav.shop/xz/xzWithdrawNotify
withdrawNotify
:
http://test.iuav.shop/
userapp/
xz/xzWithdrawNotify
iuav
:
iuav
:
pay
:
pay
:
...
...
csm-service/cms-service-user/src/main/resources/application-local.yml
浏览文件 @
e64a4a38
...
@@ -45,8 +45,8 @@ third-party:
...
@@ -45,8 +45,8 @@ third-party:
domain
:
https://uat.xzsz.ltd/
domain
:
https://uat.xzsz.ltd/
position
:
销售推广
position
:
销售推广
taxFundId
:
xxxxxxxxxxxxxxxxxxxxxxx
taxFundId
:
xxxxxxxxxxxxxxxxxxxxxxx
authNotify
:
https://test.iuav.shop/xz/xzAuthNotify
authNotify
:
https://test.iuav.shop/
userapp/
xz/xzAuthNotify
withdrawNotify
:
http://test.iuav.shop/xz/xzWithdrawNotify
withdrawNotify
:
http://test.iuav.shop/
userapp/
xz/xzWithdrawNotify
iuav
:
iuav
:
...
...
csm-service/cms-service-user/src/main/resources/mapper/UserServiceDao.xml
浏览文件 @
e64a4a38
...
@@ -278,7 +278,7 @@
...
@@ -278,7 +278,7 @@
AND rna.check_status = #{realAuthStatus}
AND rna.check_status = #{realAuthStatus}
</if>
</if>
<if
test=
"realAuthStatus == 0"
>
<if
test=
"realAuthStatus == 0"
>
AND ( rna.check_status is n
ot n
ull or rna.check_status = 0 )
AND ( rna.check_status is null or rna.check_status = 0 )
</if>
</if>
<if
test=
"startTime != null "
>
<if
test=
"startTime != null "
>
AND ua.create_time >= #{startTime}
AND ua.create_time >= #{startTime}
...
@@ -349,7 +349,7 @@
...
@@ -349,7 +349,7 @@
AND rna.check_status = #{realAuthStatus}
AND rna.check_status = #{realAuthStatus}
</if>
</if>
<if
test=
"realAuthStatus == 0"
>
<if
test=
"realAuthStatus == 0"
>
AND ( rna.check_status is n
ot n
ull or rna.check_status = 0 )
AND ( rna.check_status is null or rna.check_status = 0 )
</if>
</if>
<if
test=
"startTime != null "
>
<if
test=
"startTime != null "
>
AND ua.create_time >= #{startTime}
AND ua.create_time >= #{startTime}
...
...
csm-service/cms-service-user/src/main/resources/not-check.yml
浏览文件 @
e64a4a38
...
@@ -29,4 +29,6 @@ data-filter:
...
@@ -29,4 +29,6 @@ data-filter:
-
/userapp/cooperation/appBrandMessage
-
/userapp/cooperation/appBrandMessage
-
/userapp/pilot/detailPilot
-
/userapp/pilot/detailPilot
-
/userapp/pilot/appListPilot
-
/userapp/pilot/appListPilot
-
/userapp/xz/xzAuthNotify
-
/userapp/xz/xzWithdrawNotify
kustomization/overlays/dev/kustomization.yaml
浏览文件 @
e64a4a38
...
@@ -18,4 +18,4 @@ patches:
...
@@ -18,4 +18,4 @@ patches:
images
:
images
:
-
name
:
REGISTRY/NAMESPACE/IMAGE:TAG
-
name
:
REGISTRY/NAMESPACE/IMAGE:TAG
newName
:
mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/cms
newName
:
mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/cms
newTag
:
8f5e640c264efbb0d1d92d72f810d4b3daebb15e
newTag
:
5fa4a4d1d44c069135251377d516783b69a1c274
kustomization/overlays/prod/kustomization.yaml
浏览文件 @
e64a4a38
...
@@ -18,4 +18,4 @@ patches:
...
@@ -18,4 +18,4 @@ patches:
images
:
images
:
-
name
:
REGISTRY/NAMESPACE/IMAGE:TAG
-
name
:
REGISTRY/NAMESPACE/IMAGE:TAG
newName
:
mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly/cms
newName
:
mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly/cms
newTag
:
d38385144aaeecfff8c147e07aac460ea1f01b43
newTag
:
1ab13d69651c5b403ab777b73c8ad72ec5831057
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论