Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
payment-ci-test
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
test-ci
payment-ci-test
Commits
65f985b9
提交
65f985b9
authored
5月 31, 2023
作者:
张小凤
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
RepoCash
上级
8c9a8138
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
11 行增加
和
5 行删除
+11
-5
RepoAccountController.java
...ava/com/mmc/payment/controller/RepoAccountController.java
+3
-3
application-dev.yml
src/main/resources/application-dev.yml
+3
-0
application-prod.yml
src/main/resources/application-prod.yml
+3
-0
RepoCashDao.xml
src/main/resources/mapper/RepoCashDao.xml
+2
-2
没有找到文件。
src/main/java/com/mmc/payment/controller/RepoAccountController.java
浏览文件 @
65f985b9
...
...
@@ -16,6 +16,7 @@ import org.springframework.web.bind.annotation.PostMapping;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
springfox.documentation.annotations.ApiIgnore
;
import
javax.servlet.http.HttpServletRequest
;
...
...
@@ -26,6 +27,7 @@ import javax.servlet.http.HttpServletRequest;
*/
@Api
(
tags
=
{
"云仓-账号相关-接口"
})
@RestController
@ApiIgnore
@RequestMapping
(
"/repoaccount/"
)
public
class
RepoAccountController
{
...
...
@@ -39,7 +41,7 @@ public class RepoAccountController {
@ApiResponses
({
@ApiResponse
(
code
=
200
,
message
=
"OK"
,
response
=
RepoAccountDTO
.
class
)})
@PostMapping
(
"listPagePayManager"
)
public
ResultBody
listPagePayManager
(
HttpServletRequest
request
,
@RequestBody
RepoAccountQO
param
)
{
return
ResultBody
.
success
(
repoAccountService
.
listPagePayManager
(
param
,
this
.
getCurrentAccount
(
request
)));
return
ResultBody
.
success
(
repoAccountService
.
listPagePayManager
(
param
,
this
.
getCurrentAccount
(
request
)));
}
/**
...
...
@@ -51,6 +53,4 @@ public class RepoAccountController {
}
}
src/main/resources/application-dev.yml
浏览文件 @
65f985b9
...
...
@@ -33,4 +33,7 @@ mmcflying:
mount
:
directory
:
D:@javaVolume@
userapp
:
url
:
https://test.iuav.mmcuav.cn/userapp/
src/main/resources/application-prod.yml
浏览文件 @
65f985b9
...
...
@@ -32,3 +32,6 @@ mmcflying:
path
:
/ossservlet/upload/download/
mount
:
directory
:
D:@javaVolume@
userapp
:
url
:
https://iuav.mmcuav.cn/userapp/
src/main/resources/mapper/RepoCashDao.xml
浏览文件 @
65f985b9
...
...
@@ -75,11 +75,11 @@
insert into repo_cash
(repo_account_id, uid, account_name, order_info_id, order_no, sku_info_id, sku_title,
ware_info_id, ware_no, ware_title, pay_no, pay_method, amt_paid, cash_amt, pay_time, remark,
voucher, refund_no, update_time, update_user, create_time, create_user)
voucher, refund_no, update_time, update_user, create_time, create_user
, cash_type_id
)
values (#{repoAccountId}, #{uid}, #{accountName}, #{orderInfoId}, #{orderNo}, #{skuInfoId}, #{skuTitle},
#{wareInfoId}, #{wareNo}, #{wareTitle}, #{payNo}, #{payMethod}, #{amtPaid}, #{cashAmt}, #{payTime},
#{remark},
#{voucher}, #{refundNo}, #{updateTime}, #{updateUser}, #{createTime}, #{createUser})
#{voucher}, #{refundNo}, #{updateTime}, #{updateUser}, #{createTime}, #{createUser}
, 4
)
</insert>
<update
id=
"updateCashRemark"
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论