Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
farming
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
郑云飞
farming
Commits
706166d9
Commit
706166d9
authored
Sep 02, 2024
by
zhengyunfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
退款逻辑补充提交
parent
22caa4e0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
54 additions
and
0 deletions
+54
-0
src/main/java/com/yunniu/farming/webadmin/dao/OrderRefundMapper.java
+10
-0
src/main/java/com/yunniu/farming/webadmin/service/OrderRefundService.java
+8
-0
src/main/java/com/yunniu/farming/webadmin/service/impl/OrderRefundServiceImpl.java
+11
-0
src/main/resources/mappings/OrderRefundMapper.xml
+25
-0
No files found.
src/main/java/com/yunniu/farming/webadmin/dao/OrderRefundMapper.java
0 → 100644
View file @
706166d9
package
com
.
yunniu
.
farming
.
webadmin
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yunniu.farming.webadmin.model.OrderRefund
;
import
org.apache.ibatis.annotations.Mapper
;
@Mapper
public
interface
OrderRefundMapper
extends
BaseMapper
<
OrderRefund
>
{
}
\ No newline at end of file
src/main/java/com/yunniu/farming/webadmin/service/OrderRefundService.java
0 → 100644
View file @
706166d9
package
com
.
yunniu
.
farming
.
webadmin
.
service
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yunniu.farming.webadmin.model.OrderRefund
;
public
interface
OrderRefundService
extends
IService
<
OrderRefund
>{
}
src/main/java/com/yunniu/farming/webadmin/service/impl/OrderRefundServiceImpl.java
0 → 100644
View file @
706166d9
package
com
.
yunniu
.
farming
.
webadmin
.
service
.
impl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yunniu.farming.webadmin.dao.OrderRefundMapper
;
import
com.yunniu.farming.webadmin.model.OrderRefund
;
import
com.yunniu.farming.webadmin.service.OrderRefundService
;
import
org.springframework.stereotype.Service
;
@Service
public
class
OrderRefundServiceImpl
extends
ServiceImpl
<
OrderRefundMapper
,
OrderRefund
>
implements
OrderRefundService
{
}
src/main/resources/mappings/OrderRefundMapper.xml
0 → 100644
View file @
706166d9
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yunniu.farming.webadmin.dao.OrderRefundMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.yunniu.farming.webadmin.model.OrderRefund"
>
<!--@mbg.generated-->
<!--@Table order_refund-->
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"order_mian_id"
jdbcType=
"BIGINT"
property=
"orderMianId"
/>
<result
column=
"refund_type"
jdbcType=
"CHAR"
property=
"refundType"
/>
<result
column=
"portion"
jdbcType=
"CHAR"
property=
"portion"
/>
<result
column=
"refund_code"
jdbcType=
"VARCHAR"
property=
"refundCode"
/>
<result
column=
"refund_status"
jdbcType=
"CHAR"
property=
"refundStatus"
/>
<result
column=
"refund_money"
jdbcType=
"DOUBLE"
property=
"refundMoney"
/>
<result
column=
"refund_time"
jdbcType=
"TIMESTAMP"
property=
"refundTime"
/>
<result
column=
"refund_reason"
jdbcType=
"VARCHAR"
property=
"refundReason"
/>
<result
column=
"refund_img"
jdbcType=
"VARCHAR"
property=
"refundImg"
/>
<result
column=
"refund_detail"
jdbcType=
"VARCHAR"
property=
"refundDetail"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
<!--@mbg.generated-->
id, order_mian_id, refund_type, portion, refund_code, refund_status, refund_money,
refund_time, refund_reason, refund_img, refund_detail
</sql>
</mapper>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment