Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-performance
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
姜武杰
clx-performance
Commits
54483e4b
提交
54483e4b
authored
7月 04, 2024
作者:
杨启发
1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
定向单绑定车辆、取消货单
上级
35df6548
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
1 行增加
和
29 行删除
+1
-29
PerformanceFeign.java
...main/java/com/clx/performance/feign/PerformanceFeign.java
+0
-11
OrderGoodsFeignController.java
...rformance/controller/feign/OrderGoodsFeignController.java
+0
-13
OrderGoodsService.java
...n/java/com/clx/performance/service/OrderGoodsService.java
+1
-5
没有找到文件。
performance-api/src/main/java/com/clx/performance/feign/PerformanceFeign.java
浏览文件 @
54483e4b
...
@@ -131,10 +131,6 @@ public interface PerformanceFeign {
...
@@ -131,10 +131,6 @@ public interface PerformanceFeign {
@RequestParam
(
value
=
"marginArrearsOrder"
)
BigDecimal
marginArrearsOrder
);
@RequestParam
(
value
=
"marginArrearsOrder"
)
BigDecimal
marginArrearsOrder
);
@PostMapping
(
value
=
{
"clx-performance/feign/orderGoods/saveBindTruck"
})
Result
<
Object
>
saveBindTruck
(
@RequestBody
@Validated
DistributionTruckParam
param
);
@PostMapping
(
value
=
{
"clx-performance/feign/orderGoods/saveBindTruck"
})
@PostMapping
(
value
=
{
"clx-performance/feign/orderGoods/saveBindTruck"
})
Result
<
Object
>
saveBindTruck
(
@RequestBody
@Validated
DistributionTruckParam
param
);
Result
<
Object
>
saveBindTruck
(
@RequestBody
@Validated
DistributionTruckParam
param
);
...
@@ -157,12 +153,5 @@ public interface PerformanceFeign {
...
@@ -157,12 +153,5 @@ public interface PerformanceFeign {
*/
*/
@GetMapping
(
value
=
{
"clx-performance/feign/platformServiceFee/getPlatformServiceFeeConfig"
})
@GetMapping
(
value
=
{
"clx-performance/feign/platformServiceFee/getPlatformServiceFeeConfig"
})
Result
<
PlatformServiceFeeConfigFeignVO
>
getPlatformServiceFeeConfig
();
Result
<
PlatformServiceFeeConfigFeignVO
>
getPlatformServiceFeeConfig
();
/**
* 取消货单
* @param param
* @return
*/
@PostMapping
(
value
=
{
"clx-performance/feign/orderGoods/cancelOrderGoods"
})
Result
<
BigDecimal
>
cancelOrderGoods
(
@RequestBody
@Validated
CancelOrderGoodsParam
param
);
}
}
performance-web/src/main/java/com/clx/performance/controller/feign/OrderGoodsFeignController.java
浏览文件 @
54483e4b
...
@@ -74,18 +74,5 @@ public class OrderGoodsFeignController {
...
@@ -74,18 +74,5 @@ public class OrderGoodsFeignController {
return
Result
.
ok
();
return
Result
.
ok
();
}
}
@ApiOperation
(
value
=
"定向单绑定车辆"
,
notes
=
"<br>By:刘海泉"
)
@PostMapping
({
"/saveBindTruck"
})
Result
<
Object
>
saveBindTruck
(
@RequestBody
@Validated
DistributionTruckParam
param
)
{
orderGoodsService
.
saveBindTruck
(
param
);
return
Result
.
ok
();
}
@ApiOperation
(
value
=
"取消货单"
,
notes
=
"<br>By:李瑞新"
)
@PostMapping
({
"/cancelOrderGoods"
})
Result
<
BigDecimal
>
cancelOrderGoods
(
@RequestBody
@Validated
CancelOrderGoodsParam
param
)
{
return
Result
.
ok
(
orderGoodsService
.
cancelOrderGoods
(
param
));
}
}
}
performance-web/src/main/java/com/clx/performance/service/OrderGoodsService.java
浏览文件 @
54483e4b
...
@@ -104,11 +104,7 @@ public interface OrderGoodsService {
...
@@ -104,11 +104,7 @@ public interface OrderGoodsService {
void
saveBindTruck
(
DistributionTruckParam
param
);
void
saveBindTruck
(
DistributionTruckParam
param
);
void
saveBindTruck
(
DistributionTruckParam
param
);
BigDecimal
cancelOrderGoods
(
CancelOrderGoodsParam
param
);
void
cancelOrderGoods
(
CancelOrderGoodsParam
param
);
void
updateFrightPrice
(
String
orderGoodsNo
,
BigDecimal
pendingOrderFreight
);
void
updateFrightPrice
(
String
orderGoodsNo
,
BigDecimal
pendingOrderFreight
);
BigDecimal
cancelOrderGoods
(
CancelOrderGoodsParam
param
);
}
}
杨启发
@yangqifa
被提及 commit
d1cbd190
·
11月 12, 2024
被提及 commit
d1cbd190
被提及 commit d1cbd190876c8b3a43ada3fc0b5d1f97347487e0
切换提交列表
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论