Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
D
data-server
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
licc
data-server
Commits
2552b101
Commit
2552b101
authored
Feb 24, 2021
by
licc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增月度奖励实体类 2
parent
f7a59b60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
MonthAwardMapper.java
...r/src/main/java/cn/wisenergy/mapper/MonthAwardMapper.java
+18
-0
No files found.
wisenergy-mapper/src/main/java/cn/wisenergy/mapper/MonthAwardMapper.java
View file @
2552b101
...
@@ -8,9 +8,27 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
...
@@ -8,9 +8,27 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*/
*/
public
interface
MonthAwardMapper
extends
BaseMapper
<
MonthAward
>
{
public
interface
MonthAwardMapper
extends
BaseMapper
<
MonthAward
>
{
/**
* 添加
*
* @param monthAward 奖励信息
* @return 1
*/
int
add
(
MonthAward
monthAward
);
int
add
(
MonthAward
monthAward
);
/**
* 编辑
*
* @param monthAward 奖励信息
* @return 1
*/
int
edit
(
MonthAward
monthAward
);
int
edit
(
MonthAward
monthAward
);
/**
* 删除
*
* @param id 主键id
* @return 1
*/
int
delById
(
Integer
id
);
int
delById
(
Integer
id
);
}
}
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