Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 6fa5ce8e
authored
Jun 05, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增数据库表order_event dao
1 parent
4227118d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
project-order/src/main/java/com/alibaba/cloud/integration/order/dao/OrderEventDao.java
project-order/src/main/java/com/alibaba/cloud/integration/order/entity/OrderEvent.java
project-order/src/main/java/com/alibaba/cloud/integration/order/dao/OrderEventDao.java
0 → 100644
View file @
6fa5ce8
package
com
.
alibaba
.
cloud
.
integration
.
order
.
dao
;
import
com.alibaba.cloud.integration.order.entity.OrderEvent
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
org.apache.ibatis.annotations.Mapper
;
@Mapper
public
interface
OrderEventDao
extends
BaseMapper
<
OrderEvent
>
{
}
project-order/src/main/java/com/alibaba/cloud/integration/order/entity/OrderEvent.java
0 → 100644
View file @
6fa5ce8
package
com
.
alibaba
.
cloud
.
integration
.
order
.
entity
;
import
lombok.Data
;
import
java.sql.Timestamp
;
@Data
public
class
OrderEvent
{
private
Integer
id
;
private
String
orderId
;
private
String
suborderId
;
private
Timestamp
happen
;
private
String
event
;
private
String
operator
;
private
String
operator_name
;
private
String
source
;
private
String
desc
;
private
String
memo
;
private
Timestamp
create_time
;
private
Timestamp
update_time
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
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 post a comment