Commit 2552b101 authored by licc's avatar licc

新增月度奖励实体类 2

parent f7a59b60
...@@ -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);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment