Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-performance
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
姜武杰
clx-performance
Commits
06e45b30
提交
06e45b30
authored
10月 24, 2024
作者:
刘海泉
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/v30.2_break_contract_20241021' into dev_jdk17
上级
5b5ae1fa
8c97610e
全部展开
显示空白字符变更
内嵌
并排
正在显示
15 个修改的文件
包含
250 行增加
和
6 行删除
+250
-6
OrderChildExceptionReportOperationLogDao.java
...ormance/dao/OrderChildExceptionReportOperationLogDao.java
+14
-0
OrderChildExceptionReportOperationLogDaoImpl.java
...ao/impl/OrderChildExceptionReportOperationLogDaoImpl.java
+17
-0
OrderChildExceptionReportOperationLogMapper.java
...e/mapper/OrderChildExceptionReportOperationLogMapper.java
+18
-0
OrderChildExceptionReport.java
.../com/clx/performance/model/OrderChildExceptionReport.java
+13
-0
OrderChildExceptionReportDealLog.java
...x/performance/model/OrderChildExceptionReportDealLog.java
+10
-0
OrderChildExceptionReportOperationLog.java
...formance/model/OrderChildExceptionReportOperationLog.java
+38
-0
BreakContractDriverRecord.java
...rmance/model/breakcontract/BreakContractDriverRecord.java
+31
-3
BreakContractDriverRecordService.java
...rvice/breakcontract/BreakContractDriverRecordService.java
+2
-0
OrderChildExceptionReportServiceImpl.java
...ce/service/impl/OrderChildExceptionReportServiceImpl.java
+0
-0
BreakContractDriverRecordServiceImpl.java
...l/breakcontract/BreakContractDriverRecordServiceImpl.java
+2
-1
OrderChildExceptionReportOperationLogStruct.java
...e/struct/OrderChildExceptionReportOperationLogStruct.java
+10
-0
BreakContractRecordEnum.java
...va/com/clx/performance/enums/BreakContractRecordEnum.java
+1
-0
CarrierExceptionLogEnum.java
...va/com/clx/performance/enums/CarrierExceptionLogEnum.java
+39
-0
OrderChildExceptionReportOperationLogVO.java
...rmance/vo/pc/OrderChildExceptionReportOperationLogVO.java
+26
-0
OrderChildExceptionReportVO.java
...om/clx/performance/vo/pc/OrderChildExceptionReportVO.java
+29
-2
没有找到文件。
clx-performance-web/src/main/java/com/clx/performance/dao/OrderChildExceptionReportOperationLogDao.java
0 → 100644
浏览文件 @
06e45b30
package
com
.
clx
.
performance
.
dao
;
import
com.clx.performance.mapper.OrderChildExceptionReportOperationLogMapper
;
import
com.clx.performance.model.OrderChildExceptionReportOperationLog
;
import
com.msl.common.dao.BaseDao
;
/**
* @Author: aiqinguo
* @Description: 运单日志
* @Date: 2023/09/18 11:34:50
* @Version: 1.0
*/
public
interface
OrderChildExceptionReportOperationLogDao
extends
BaseDao
<
OrderChildExceptionReportOperationLogMapper
,
OrderChildExceptionReportOperationLog
,
Integer
>
{
}
clx-performance-web/src/main/java/com/clx/performance/dao/impl/OrderChildExceptionReportOperationLogDaoImpl.java
0 → 100644
浏览文件 @
06e45b30
package
com
.
clx
.
performance
.
dao
.
impl
;
import
com.clx.performance.dao.OrderChildExceptionReportOperationLogDao
;
import
com.clx.performance.mapper.OrderChildExceptionReportOperationLogMapper
;
import
com.clx.performance.model.OrderChildExceptionReportOperationLog
;
import
com.msl.common.dao.impl.BaseDaoImpl
;
import
org.springframework.stereotype.Repository
;
/**
* @Author: aiqinguo
* @Description: 运单图片
* @Date: 2023/09/18 11:34:50
* @Version: 1.0
*/
@Repository
public
class
OrderChildExceptionReportOperationLogDaoImpl
extends
BaseDaoImpl
<
OrderChildExceptionReportOperationLogMapper
,
OrderChildExceptionReportOperationLog
,
Integer
>
implements
OrderChildExceptionReportOperationLogDao
{
}
clx-performance-web/src/main/java/com/clx/performance/mapper/OrderChildExceptionReportOperationLogMapper.java
0 → 100644
浏览文件 @
06e45b30
package
com
.
clx
.
performance
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.clx.performance.model.OrderChildExceptionReportOperationLog
;
import
org.apache.ibatis.annotations.Mapper
;
/**
* @Author: aiqinguo
* @Description: 运单日志
* @Date: 2023/09/18 11:34:50
* @Version: 1.0
*/
@Mapper
public
interface
OrderChildExceptionReportOperationLogMapper
extends
BaseMapper
<
OrderChildExceptionReportOperationLog
>
{
}
\ No newline at end of file
clx-performance-web/src/main/java/com/clx/performance/model/OrderChildExceptionReport.java
浏览文件 @
06e45b30
...
@@ -72,6 +72,15 @@ public class OrderChildExceptionReport implements HasKey<Integer> {
...
@@ -72,6 +72,15 @@ public class OrderChildExceptionReport implements HasKey<Integer> {
@Schema
(
description
=
"异常原因描述"
)
@Schema
(
description
=
"异常原因描述"
)
private
String
reason
;
private
String
reason
;
@TableField
(
"picture_url"
)
@Schema
(
description
=
"图片"
)
private
String
pictureUrl
;
@TableField
(
"video_url"
)
@Schema
(
description
=
"视频"
)
private
String
videoUrl
;
@TableField
(
"deal_user_code"
)
@TableField
(
"deal_user_code"
)
@Schema
(
description
=
"处理人用户编码"
)
@Schema
(
description
=
"处理人用户编码"
)
private
Long
dealUserCode
;
private
Long
dealUserCode
;
...
@@ -92,6 +101,10 @@ public class OrderChildExceptionReport implements HasKey<Integer> {
...
@@ -92,6 +101,10 @@ public class OrderChildExceptionReport implements HasKey<Integer> {
@Schema
(
description
=
"是否转司机违约 1:是"
)
@Schema
(
description
=
"是否转司机违约 1:是"
)
private
Integer
transferDriverBreakContract
;
private
Integer
transferDriverBreakContract
;
@TableField
(
"break_contract_reason"
)
@Schema
(
description
=
"违约原因"
)
private
String
breakContractReason
;
@TableField
(
"create_time"
)
@TableField
(
"create_time"
)
@Schema
(
description
=
"创建时间"
)
@Schema
(
description
=
"创建时间"
)
private
LocalDateTime
createTime
;
private
LocalDateTime
createTime
;
...
...
clx-performance-web/src/main/java/com/clx/performance/model/OrderChildExceptionReportDealLog.java
浏览文件 @
06e45b30
...
@@ -47,6 +47,16 @@ public class OrderChildExceptionReportDealLog implements HasKey<Integer> {
...
@@ -47,6 +47,16 @@ public class OrderChildExceptionReportDealLog implements HasKey<Integer> {
@Schema
(
description
=
"视频"
)
@Schema
(
description
=
"视频"
)
private
String
videoUrl
;
private
String
videoUrl
;
@TableField
(
"create_by"
)
@Schema
(
description
=
"申诉人编码"
)
private
Long
createBy
;
//操作人编号
@TableField
(
"create_name"
)
@Schema
(
description
=
"申诉人"
)
private
String
createName
;
//操作人名称
@TableField
(
"create_time"
)
@TableField
(
"create_time"
)
@Schema
(
description
=
"创建时间"
)
@Schema
(
description
=
"创建时间"
)
private
LocalDateTime
createTime
;
private
LocalDateTime
createTime
;
...
...
clx-performance-web/src/main/java/com/clx/performance/model/OrderChildExceptionReportOperationLog.java
0 → 100644
浏览文件 @
06e45b30
package
com
.
clx
.
performance
.
model
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.msl.common.config.KeyColumn
;
import
com.msl.common.model.HasKey
;
import
lombok.Getter
;
import
lombok.NoArgsConstructor
;
import
lombok.Setter
;
import
java.time.LocalDateTime
;
@Getter
@Setter
@NoArgsConstructor
@TableName
(
autoResultMap
=
true
)
public
class
OrderChildExceptionReportOperationLog
implements
HasKey
<
Integer
>
{
@TableId
(
value
=
"id"
,
type
=
IdType
.
AUTO
)
private
Integer
id
;
//id
private
String
reportNo
;
//异常上报编号
private
Integer
type
;
//操作事项编码
private
String
result
;
//处理结果
private
Long
createBy
;
//操作人编号
private
String
createName
;
//操作人名称
private
LocalDateTime
createTime
;
//创建时间
private
LocalDateTime
modifiedTime
;
//修改时间
@KeyColumn
(
"id"
)
@Override
public
Integer
gainKey
()
{
return
id
;
}
}
\ No newline at end of file
clx-performance-web/src/main/java/com/clx/performance/model/breakcontract/BreakContractDriverRecord.java
浏览文件 @
06e45b30
package
com
.
clx
.
performance
.
model
.
breakcontract
;
package
com
.
clx
.
performance
.
model
.
breakcontract
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.msl.common.config.KeyColumn
;
import
com.msl.common.config.KeyColumn
;
import
com.msl.common.model.HasKey
;
import
com.msl.common.model.HasKey
;
...
@@ -8,9 +10,8 @@ import io.swagger.v3.oas.annotations.media.Schema;
...
@@ -8,9 +10,8 @@ import io.swagger.v3.oas.annotations.media.Schema;
import
lombok.Getter
;
import
lombok.Getter
;
import
lombok.Setter
;
import
lombok.Setter
;
import
lombok.experimental.Accessors
;
import
lombok.experimental.Accessors
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
java.time.LocalDateTime
;
import
java.time.LocalDateTime
;
/**
/**
...
@@ -28,7 +29,7 @@ public class BreakContractDriverRecord implements HasKey<Integer> {
...
@@ -28,7 +29,7 @@ public class BreakContractDriverRecord implements HasKey<Integer> {
private
Integer
id
;
private
Integer
id
;
@TableField
(
"trigger_type"
)
@TableField
(
"trigger_type"
)
@Schema
(
description
=
"触发类型:1系统触发 2手动触发"
)
@Schema
(
description
=
"触发类型:1系统触发 2手动触发
3.异常上报
"
)
private
Integer
triggerType
;
private
Integer
triggerType
;
@TableField
(
"break_contract_party_type"
)
@TableField
(
"break_contract_party_type"
)
...
@@ -79,6 +80,33 @@ public class BreakContractDriverRecord implements HasKey<Integer> {
...
@@ -79,6 +80,33 @@ public class BreakContractDriverRecord implements HasKey<Integer> {
@Schema
(
description
=
"结算单编号"
)
@Schema
(
description
=
"结算单编号"
)
private
String
settlementNo
;
private
String
settlementNo
;
@TableField
(
"exception_report_no"
)
@Schema
(
description
=
"异常上报单号"
)
private
String
exceptionReportNo
;
@TableField
(
"exception_category"
)
@Schema
(
description
=
"异常类别"
)
private
String
exceptionCategory
;
@TableField
(
"exception_type"
)
@Schema
(
description
=
"异常类型"
)
private
String
exceptionType
;
@TableField
(
"picture_url"
)
@Schema
(
description
=
"图片"
)
private
String
pictureUrl
;
@TableField
(
"video_url"
)
@Schema
(
description
=
"视频"
)
private
String
videoUrl
;
@TableField
(
"remark"
)
@TableField
(
"remark"
)
@Schema
(
description
=
"备注"
)
@Schema
(
description
=
"备注"
)
private
String
remark
;
private
String
remark
;
...
...
clx-performance-web/src/main/java/com/clx/performance/service/breakcontract/BreakContractDriverRecordService.java
浏览文件 @
06e45b30
...
@@ -23,6 +23,8 @@ public interface BreakContractDriverRecordService {
...
@@ -23,6 +23,8 @@ public interface BreakContractDriverRecordService {
IPage
<
DriverBreakContractDriverRecordVO
>
driverPageRecord
(
DriverPageBreakContractDriverRecordParam
param
);
IPage
<
DriverBreakContractDriverRecordVO
>
driverPageRecord
(
DriverPageBreakContractDriverRecordParam
param
);
String
breakNoGenerate
();
void
saveDriverRecordOfOrderChildCancel
(
OrderChild
orderChild
,
Long
createBy
,
String
createName
);
void
saveDriverRecordOfOrderChildCancel
(
OrderChild
orderChild
,
Long
createBy
,
String
createName
);
void
saveDriverRecordOfArriveSendAddressTimeout
(
OrderChild
orderChild
,
Long
createBy
,
String
createName
);
void
saveDriverRecordOfArriveSendAddressTimeout
(
OrderChild
orderChild
,
Long
createBy
,
String
createName
);
...
...
clx-performance-web/src/main/java/com/clx/performance/service/impl/OrderChildExceptionReportServiceImpl.java
浏览文件 @
06e45b30
差异被折叠。
点击展开。
clx-performance-web/src/main/java/com/clx/performance/service/impl/breakcontract/BreakContractDriverRecordServiceImpl.java
浏览文件 @
06e45b30
...
@@ -128,7 +128,8 @@ public class BreakContractDriverRecordServiceImpl implements BreakContractDrive
...
@@ -128,7 +128,8 @@ public class BreakContractDriverRecordServiceImpl implements BreakContractDrive
}
}
private
String
breakNoGenerate
()
{
@Override
public
String
breakNoGenerate
()
{
return
"WYD"
+
uniqueOrderNumService
.
getUniqueOrderNum
(
return
"WYD"
+
uniqueOrderNumService
.
getUniqueOrderNum
(
LocalDateTimeUtils
.
convertLocalDateTimeToString
(
LocalDateTime
.
now
(),
LocalDateTimeUtils
.
DATE_DAY
));
LocalDateTimeUtils
.
convertLocalDateTimeToString
(
LocalDateTime
.
now
(),
LocalDateTimeUtils
.
DATE_DAY
));
}
}
...
...
clx-performance-web/src/main/java/com/clx/performance/struct/OrderChildExceptionReportOperationLogStruct.java
0 → 100644
浏览文件 @
06e45b30
package
com
.
clx
.
performance
.
struct
;
import
com.clx.performance.model.OrderChildExceptionReportOperationLog
;
import
com.clx.performance.vo.pc.OrderChildExceptionReportOperationLogVO
;
import
java.util.List
;
public
interface
OrderChildExceptionReportOperationLogStruct
{
List
<
OrderChildExceptionReportOperationLogVO
>
convertList
(
List
<
OrderChildExceptionReportOperationLog
>
list
);
}
performance-api/src/main/java/com/clx/performance/enums/BreakContractRecordEnum.java
浏览文件 @
06e45b30
...
@@ -14,6 +14,7 @@ public enum BreakContractRecordEnum {
...
@@ -14,6 +14,7 @@ public enum BreakContractRecordEnum {
public
enum
TriggerType
{
public
enum
TriggerType
{
SYSTEM
(
1
,
"系统触发"
),
SYSTEM
(
1
,
"系统触发"
),
MANUAL
(
2
,
"手动触发"
),
MANUAL
(
2
,
"手动触发"
),
EXCEPTION_REPORT
(
3
,
"异常上报"
),
;
;
private
final
Integer
code
;
private
final
Integer
code
;
...
...
performance-api/src/main/java/com/clx/performance/enums/CarrierExceptionLogEnum.java
0 → 100644
浏览文件 @
06e45b30
package
com
.
clx
.
performance
.
enums
;
import
lombok.AllArgsConstructor
;
import
lombok.Getter
;
import
java.util.Arrays
;
import
java.util.Optional
;
public
enum
CarrierExceptionLogEnum
{
;
@Getter
@AllArgsConstructor
public
enum
Type
{
CREATE
(
1
,
"创建违约单"
),
TIMEOUT
(
2
,
"超时货主处理"
),
APPEAL
(
3
,
"申诉"
),
APPEAL_DEAL
(
4
,
"申诉处理"
),
AGREE
(
5
,
"同意扣罚"
),
TRANSFER_DRIVER_BREAK_CONTRACT
(
6
,
"转司机违约"
),
;
private
final
Integer
code
;
private
final
String
name
;
public
static
Optional
<
Type
>
getByCode
(
Integer
code
)
{
return
Arrays
.
stream
(
values
()).
filter
(
e
->
e
.
code
.
equals
(
code
)).
findFirst
();
}
public
static
String
getMsgByCode
(
Integer
code
)
{
if
(
code
==
null
)
{
return
null
;}
return
getByCode
(
code
).
map
(
Type:
:
getName
).
orElse
(
null
);
}
}
}
performance-api/src/main/java/com/clx/performance/vo/pc/OrderChildExceptionReportOperationLogVO.java
0 → 100644
浏览文件 @
06e45b30
package
com
.
clx
.
performance
.
vo
.
pc
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Getter
;
import
lombok.Setter
;
@Getter
@Setter
public
class
OrderChildExceptionReportOperationLogVO
{
@Schema
(
description
=
"id"
)
private
Integer
id
;
//id
@Schema
(
description
=
"异常上报编号"
)
private
String
reportNo
;
//运单编号
@Schema
(
description
=
"操作事项编码"
)
private
Integer
type
;
//操作事项编码
@Schema
(
description
=
"处理结果"
)
private
String
result
;
//处理结果
@Schema
(
description
=
"操作人名称"
)
private
String
createName
;
//操作人名称
@Schema
(
description
=
"创建时间"
)
private
String
createTime
;
//创建时间
}
\ No newline at end of file
performance-api/src/main/java/com/clx/performance/vo/pc/OrderChildExceptionReportVO.java
浏览文件 @
06e45b30
...
@@ -127,14 +127,41 @@ public class OrderChildExceptionReportVO {
...
@@ -127,14 +127,41 @@ public class OrderChildExceptionReportVO {
private
String
createTime
;
private
String
createTime
;
@Schema
(
description
=
"图片"
)
@Schema
(
description
=
"
异常记录
图片"
)
private
List
<
String
>
pictureUrlList
;
private
List
<
String
>
pictureUrlList
;
@Schema
(
description
=
"视频"
)
@Schema
(
description
=
"
异常记录
视频"
)
private
List
<
String
>
videoUrlList
;
private
List
<
String
>
videoUrlList
;
@Schema
(
description
=
"申诉时间"
)
private
String
appealTime
;
@Schema
(
description
=
"申诉人"
)
private
String
createName
;
@Schema
(
description
=
"申诉原因"
)
private
String
appealReason
;
@Schema
(
description
=
"申诉图片"
)
private
List
<
String
>
appealPictureUrlList
;
@Schema
(
description
=
"申诉视频"
)
private
List
<
String
>
appealVideoUrlList
;
@Schema
(
description
=
"操作日志列表"
)
private
List
<
OrderChildExceptionReportOperationLogVO
>
operationLogs
;
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论