feat(oa): 新增奖金池及与项目关联功能
- 新增奖金池实体类、业务对象及视图对象 - 实现奖金池的增删改查及分页查询功能 - 新增奖金池与项目关联实体类及相关对象 - 实现奖金池与项目的关联管理及批量绑定功能 - 提供奖金池及关联关系的Excel导出支持- 配置MyBatis映射文件及Mapper接口 - 添加控制器以支持RESTful API访问
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.ruoyi.oa.mapper;
|
||||
|
||||
import com.ruoyi.oa.domain.OaBonusPool;
|
||||
import com.ruoyi.oa.domain.vo.OaBonusPoolVo;
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
|
||||
/**
|
||||
* 奖金池Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2025-10-23
|
||||
*/
|
||||
public interface OaBonusPoolMapper extends BaseMapperPlus<OaBonusPoolMapper, OaBonusPool, OaBonusPoolVo> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.ruoyi.oa.mapper;
|
||||
|
||||
import com.ruoyi.oa.domain.OaBonusProjectRel;
|
||||
import com.ruoyi.oa.domain.vo.OaBonusProjectRelVo;
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
|
||||
/**
|
||||
* 奖金池与项目关联Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2025-10-23
|
||||
*/
|
||||
public interface OaBonusProjectRelMapper extends BaseMapperPlus<OaBonusProjectRelMapper, OaBonusProjectRel, OaBonusProjectRelVo> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user