Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-performance
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
姜武杰
clx-performance
Commits
ad1cdfd7
提交
ad1cdfd7
authored
10月 22, 2024
作者:
刘海泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加相关表设计实体
上级
26961528
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
297 行增加
和
0 行删除
+297
-0
OrderChildExceptionReportDao.java
...com/clx/performance/dao/OrderChildExceptionReportDao.java
+13
-0
OrderChildExceptionReportDealLogDao.java
.../performance/dao/OrderChildExceptionReportDealLogDao.java
+13
-0
OrderChildExceptionReportDaoImpl.java
...erformance/dao/impl/OrderChildExceptionReportDaoImpl.java
+16
-0
OrderChildExceptionReportDealLogDaoImpl.java
...nce/dao/impl/OrderChildExceptionReportDealLogDaoImpl.java
+16
-0
OrderChildExceptionReportDealLogMapper.java
...rmance/mapper/OrderChildExceptionReportDealLogMapper.java
+12
-0
OrderChildExceptionReportMapper.java
...x/performance/mapper/OrderChildExceptionReportMapper.java
+12
-0
OrderChildExceptionReport.java
.../com/clx/performance/model/OrderChildExceptionReport.java
+104
-0
OrderChildExceptionReportDealLog.java
...x/performance/model/OrderChildExceptionReportDealLog.java
+63
-0
OrderChildExceptionReportDealLogService.java
...ance/service/OrderChildExceptionReportDealLogService.java
+9
-0
OrderChildExceptionReportService.java
...performance/service/OrderChildExceptionReportService.java
+9
-0
OrderChildExceptionReportDealLogServiceImpl.java
...ice/impl/OrderChildExceptionReportDealLogServiceImpl.java
+15
-0
OrderChildExceptionReportServiceImpl.java
...ce/service/impl/OrderChildExceptionReportServiceImpl.java
+15
-0
没有找到文件。
clx-performance-web/src/main/java/com/clx/performance/dao/OrderChildExceptionReportDao.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
dao
;
import
com.msl.common.dao.BaseDao
;
import
com.clx.performance.mapper.OrderChildExceptionReportMapper
;
import
com.clx.performance.model.OrderChildExceptionReport
;
/**
* @author kavin
* Date 2024-10-22
* Time 10:38
*/
public
interface
OrderChildExceptionReportDao
extends
BaseDao
<
OrderChildExceptionReportMapper
,
OrderChildExceptionReport
,
Integer
>
{
}
clx-performance-web/src/main/java/com/clx/performance/dao/OrderChildExceptionReportDealLogDao.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
dao
;
import
com.msl.common.dao.BaseDao
;
import
com.clx.performance.mapper.OrderChildExceptionReportDealLogMapper
;
import
com.clx.performance.model.OrderChildExceptionReportDealLog
;
/**
* @author kavin
* Date 2024-10-22
* Time 11:08
*/
public
interface
OrderChildExceptionReportDealLogDao
extends
BaseDao
<
OrderChildExceptionReportDealLogMapper
,
OrderChildExceptionReportDealLog
,
Integer
>
{
}
clx-performance-web/src/main/java/com/clx/performance/dao/impl/OrderChildExceptionReportDaoImpl.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
dao
.
impl
;
import
com.msl.common.dao.impl.BaseDaoImpl
;
import
com.clx.performance.dao.OrderChildExceptionReportDao
;
import
com.clx.performance.mapper.OrderChildExceptionReportMapper
;
import
com.clx.performance.model.OrderChildExceptionReport
;
import
org.springframework.stereotype.Repository
;
/**
* @author kavin
* Date 2024-10-22
* Time 10:38
*/
@Repository
public
class
OrderChildExceptionReportDaoImpl
extends
BaseDaoImpl
<
OrderChildExceptionReportMapper
,
OrderChildExceptionReport
,
Integer
>
implements
OrderChildExceptionReportDao
{
}
clx-performance-web/src/main/java/com/clx/performance/dao/impl/OrderChildExceptionReportDealLogDaoImpl.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
dao
.
impl
;
import
com.msl.common.dao.impl.BaseDaoImpl
;
import
com.clx.performance.dao.OrderChildExceptionReportDealLogDao
;
import
com.clx.performance.mapper.OrderChildExceptionReportDealLogMapper
;
import
com.clx.performance.model.OrderChildExceptionReportDealLog
;
import
org.springframework.stereotype.Repository
;
/**
* @author kavin
* Date 2024-10-22
* Time 11:08
*/
@Repository
public
class
OrderChildExceptionReportDealLogDaoImpl
extends
BaseDaoImpl
<
OrderChildExceptionReportDealLogMapper
,
OrderChildExceptionReportDealLog
,
Integer
>
implements
OrderChildExceptionReportDealLogDao
{
}
clx-performance-web/src/main/java/com/clx/performance/mapper/OrderChildExceptionReportDealLogMapper.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.clx.performance.model.OrderChildExceptionReportDealLog
;
/**
* @author kavin
* Date 2024-10-22
* Time 11:08
*/
public
interface
OrderChildExceptionReportDealLogMapper
extends
BaseMapper
<
OrderChildExceptionReportDealLog
>
{
}
clx-performance-web/src/main/java/com/clx/performance/mapper/OrderChildExceptionReportMapper.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.clx.performance.model.OrderChildExceptionReport
;
/**
* @author kavin
* Date 2024-10-22
* Time 10:38
*/
public
interface
OrderChildExceptionReportMapper
extends
BaseMapper
<
OrderChildExceptionReport
>
{
}
clx-performance-web/src/main/java/com/clx/performance/model/OrderChildExceptionReport.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
model
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
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
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Getter
;
import
lombok.Setter
;
import
lombok.experimental.Accessors
;
import
java.math.BigDecimal
;
import
java.time.LocalDateTime
;
/**
* @author kavin
* Date 2024-10-22
* Time 10:38
*/
@Getter
@Setter
@Accessors
(
chain
=
true
)
@TableName
(
"order_child_exception_report"
)
public
class
OrderChildExceptionReport
implements
HasKey
<
Integer
>
{
@TableId
(
value
=
"id"
,
type
=
IdType
.
AUTO
)
private
Integer
id
;
@TableField
(
"report_no"
)
@Schema
(
description
=
"异常上报编号"
)
private
String
reportNo
;
@TableField
(
"third_report_no"
)
@Schema
(
description
=
"三方异常上报编号"
)
private
String
thirdReportNo
;
@TableField
(
"source"
)
@Schema
(
description
=
"来源"
)
private
Integer
source
;
@TableField
(
"exception_category"
)
@Schema
(
description
=
"异常类别"
)
private
String
exceptionCategory
;
@TableField
(
"exception_type"
)
@Schema
(
description
=
"异常类型"
)
private
String
exceptionType
;
@TableField
(
"truck_no_or_mobile"
)
@Schema
(
description
=
"车牌号/手机号"
)
private
String
truckNoOrMobile
;
@TableField
(
"child_no"
)
@Schema
(
description
=
"运单编号"
)
private
String
childNo
;
@TableField
(
"status"
)
@Schema
(
description
=
"状态:1:待处理 2:申诉中 3:已处理 4:已撤回"
)
private
Integer
status
;
@TableField
(
"deduction_amount"
)
@Schema
(
description
=
"扣罚金额"
)
private
BigDecimal
deductionAmount
;
@TableField
(
"report_time"
)
@Schema
(
description
=
"异常上报时间"
)
private
LocalDateTime
reportTime
;
@TableField
(
"deal_user_code"
)
@Schema
(
description
=
"处理人用户编码"
)
private
Long
dealUserCode
;
@TableField
(
"deal_user"
)
@Schema
(
description
=
"处理人用户姓名"
)
private
String
dealUser
;
@TableField
(
"deal_time"
)
@Schema
(
description
=
"处理时间"
)
private
String
dealTime
;
@TableField
(
"deal_result"
)
@Schema
(
description
=
"处理结果"
)
private
String
dealResult
;
@TableField
(
"transfer_driver_break_contract"
)
@Schema
(
description
=
"是否转司机违约 1:是"
)
private
Integer
transferDriverBreakContract
;
@TableField
(
"create_time"
)
@Schema
(
description
=
"创建时间"
)
private
LocalDateTime
createTime
;
@TableField
(
"modified_time"
)
@Schema
(
description
=
"修改时间"
)
private
LocalDateTime
modifiedTime
;
@Override
@KeyColumn
(
"id"
)
public
Integer
gainKey
()
{
return
this
.
id
;
}
}
clx-performance-web/src/main/java/com/clx/performance/model/OrderChildExceptionReportDealLog.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
model
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
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
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Getter
;
import
lombok.Setter
;
import
lombok.experimental.Accessors
;
import
java.time.LocalDateTime
;
/**
* @author kavin
* Date 2024-10-22
* Time 11:08
*/
@Getter
@Setter
@Accessors
(
chain
=
true
)
@TableName
(
"order_child_exception_report_deal_log"
)
public
class
OrderChildExceptionReportDealLog
implements
HasKey
<
Integer
>
{
@TableId
(
value
=
"id"
,
type
=
IdType
.
AUTO
)
private
Integer
id
;
@TableField
(
"report_no"
)
@Schema
(
description
=
"异常上报编号"
)
private
String
reportNo
;
@TableField
(
"deal_way"
)
@Schema
(
description
=
"处理方式 1:同意扣罚 2:申诉"
)
private
Integer
dealWay
;
@TableField
(
"appeal_reason"
)
@Schema
(
description
=
"申诉原因"
)
private
String
appealReason
;
@TableField
(
"picture_url"
)
@Schema
(
description
=
"图片"
)
private
String
pictureUrl
;
@TableField
(
"video_url"
)
@Schema
(
description
=
"视频"
)
private
String
videoUrl
;
@TableField
(
"create_time"
)
@Schema
(
description
=
"创建时间"
)
private
LocalDateTime
createTime
;
@TableField
(
"modified_time"
)
@Schema
(
description
=
"修改时间"
)
private
LocalDateTime
modifiedTime
;
@Override
@KeyColumn
(
"id"
)
public
Integer
gainKey
()
{
return
this
.
id
;
}
}
clx-performance-web/src/main/java/com/clx/performance/service/OrderChildExceptionReportDealLogService.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
service
;
/**
* @author kavin
* Date 2024-10-22
* Time 11:08
*/
public
interface
OrderChildExceptionReportDealLogService
{
}
clx-performance-web/src/main/java/com/clx/performance/service/OrderChildExceptionReportService.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
service
;
/**
* @author kavin
* Date 2024-10-22
* Time 10:38
*/
public
interface
OrderChildExceptionReportService
{
}
clx-performance-web/src/main/java/com/clx/performance/service/impl/OrderChildExceptionReportDealLogServiceImpl.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
service
.
impl
;
import
com.clx.performance.service.OrderChildExceptionReportDealLogService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.stereotype.Service
;
/**
* @author kavin
* Date 2024-10-22
* Time 11:08
*/
@Service
@Slf4j
public
class
OrderChildExceptionReportDealLogServiceImpl
implements
OrderChildExceptionReportDealLogService
{
}
clx-performance-web/src/main/java/com/clx/performance/service/impl/OrderChildExceptionReportServiceImpl.java
0 → 100644
浏览文件 @
ad1cdfd7
package
com
.
clx
.
performance
.
service
.
impl
;
import
com.clx.performance.service.OrderChildExceptionReportService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.stereotype.Service
;
/**
* @author kavin
* Date 2024-10-22
* Time 10:38
*/
@Service
@Slf4j
public
class
OrderChildExceptionReportServiceImpl
implements
OrderChildExceptionReportService
{
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论