Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-performance
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
姜武杰
clx-performance
Commits
69cd683f
提交
69cd683f
authored
11月 09, 2023
作者:
aiqingguo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改dao返回值
上级
f5bbe8dd
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
5 行增加
和
4 行删除
+5
-4
IntegralRecordDao.java
.../main/java/com/clx/performance/dao/IntegralRecordDao.java
+1
-1
IntegralRecordDaoImpl.java
...a/com/clx/performance/dao/impl/IntegralRecordDaoImpl.java
+1
-1
IntegraRecordMapper.java
.../java/com/clx/performance/mapper/IntegraRecordMapper.java
+1
-1
IntegralRecordServiceImpl.java
...x/performance/service/impl/IntegralRecordServiceImpl.java
+2
-1
没有找到文件。
performance-web/src/main/java/com/clx/performance/dao/IntegralRecordDao.java
浏览文件 @
69cd683f
...
...
@@ -23,7 +23,7 @@ public interface IntegralRecordDao extends BaseDao<IntegraRecordMapper, Integral
Integer
sumIntegral
(
@Param
(
"statisticsId"
)
Integer
statisticsId
);
IntegralRecord
selectByStatisticsIdAndType
(
@Param
(
"statisticsId"
)
Integer
statisticsId
,
@Param
(
"type"
)
Integer
type
);
int
sumByStatisticsIdAndTypes
(
@Param
(
"statisticsId"
)
Integer
statisticsId
,
@Param
(
"list"
)
List
<
Integer
>
typeList
);
Integer
sumByStatisticsIdAndTypes
(
@Param
(
"statisticsId"
)
Integer
statisticsId
,
@Param
(
"list"
)
List
<
Integer
>
typeList
);
Integer
sumByStatisticsIdAndTypeAndTime
(
@Param
(
"statisticsId"
)
Integer
statisticsId
,
@Param
(
"type"
)
Integer
type
,
...
...
performance-web/src/main/java/com/clx/performance/dao/impl/IntegralRecordDaoImpl.java
浏览文件 @
69cd683f
...
...
@@ -43,7 +43,7 @@ public class IntegralRecordDaoImpl extends BaseDaoImpl<IntegraRecordMapper, Inte
}
@Override
public
int
sumByStatisticsIdAndTypes
(
Integer
statisticsId
,
List
<
Integer
>
typeList
)
{
public
Integer
sumByStatisticsIdAndTypes
(
Integer
statisticsId
,
List
<
Integer
>
typeList
)
{
return
baseMapper
.
sumByStatisticsIdAndTypes
(
statisticsId
,
typeList
);
}
...
...
performance-web/src/main/java/com/clx/performance/mapper/IntegraRecordMapper.java
浏览文件 @
69cd683f
...
...
@@ -34,7 +34,7 @@ public interface IntegraRecordMapper extends BaseMapper<IntegralRecord> {
" type in <foreach collection='list' item='item' open='(' separator=',' close=')'>#{item}</foreach> "
+
" and statistics_id = #{statisticsId}"
+
"</script>"
)
int
sumByStatisticsIdAndTypes
(
@Param
(
"statisticsId"
)
Integer
statisticsId
,
@Param
(
"list"
)
List
<
Integer
>
typeList
);
Integer
sumByStatisticsIdAndTypes
(
@Param
(
"statisticsId"
)
Integer
statisticsId
,
@Param
(
"list"
)
List
<
Integer
>
typeList
);
@Select
(
"select sum(integral) from integral_record where statistics_id = #{statisticsId} and type = #{type} and create_time >= #{beginTime} and create_time < #{endTime}"
)
Integer
sumByStatisticsIdAndTypeAndTime
(
@Param
(
"statisticsId"
)
Integer
statisticsId
,
...
...
performance-web/src/main/java/com/clx/performance/service/impl/IntegralRecordServiceImpl.java
浏览文件 @
69cd683f
...
...
@@ -82,7 +82,8 @@ public class IntegralRecordServiceImpl implements IntegralRecordService {
IntegralStatistics
statistics
=
integralStatisticsDao
.
selectByTruckNoAndStatisticsDate
(
truckNo
,
statisticsDate
).
orNull
();
if
(
statistics
==
null
)
{
return
;}
int
sum
=
integralRecordDao
.
sumByStatisticsIdAndTypes
(
statistics
.
getId
(),
Arrays
.
asList
(
IntegralRecordEnum
.
Type
.
ORDER_CHILD_PLATFORM_COMPENSATION
.
getValue
()));
Integer
sum
=
integralRecordDao
.
sumByStatisticsIdAndTypes
(
statistics
.
getId
(),
Arrays
.
asList
(
IntegralRecordEnum
.
Type
.
ORDER_CHILD_PLATFORM_COMPENSATION
.
getValue
()));
if
(
sum
==
null
)
{
sum
=
0
;}
if
(
sum
>
ruleInfo
.
getPlatformCompensationRule
().
getIntegralCancelLimit
()){
log
.
info
(
"平台补偿超上限,本次无效, truckNo:{}, type:{}, integral:{}, remark:{}"
,
truckNo
,
type
,
integral
,
remark
);
return
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论