- 创建了考核维度评分明细服务接口及实现类 - 添加了月度绩效考核记录服务接口及实现类 - 实现了绩效系数换算、车间考核参数配置等相关服务 - 定义了绩效考核相关的实体类和业务对象 - 创建了绩效考核控制器提供CRUD操作接口 - 配置了数据库映射文件和结果集映射 - 实现了数据校验和分页查询功能
50 lines
1.1 KiB
Java
50 lines
1.1 KiB
Java
package com.klp.perf.service;
|
|
|
|
import com.klp.perf.domain.PerfDeptConfig;
|
|
import com.klp.perf.domain.vo.PerfDeptConfigVo;
|
|
import com.klp.perf.domain.bo.PerfDeptConfigBo;
|
|
import com.klp.common.core.page.TableDataInfo;
|
|
import com.klp.common.core.domain.PageQuery;
|
|
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 车间考核参数配置Service接口
|
|
*
|
|
* @author klp
|
|
* @date 2026-07-07
|
|
*/
|
|
public interface IPerfDeptConfigService {
|
|
|
|
/**
|
|
* 查询车间考核参数配置
|
|
*/
|
|
PerfDeptConfigVo queryById(String id);
|
|
|
|
/**
|
|
* 查询车间考核参数配置列表
|
|
*/
|
|
TableDataInfo<PerfDeptConfigVo> queryPageList(PerfDeptConfigBo bo, PageQuery pageQuery);
|
|
|
|
/**
|
|
* 查询车间考核参数配置列表
|
|
*/
|
|
List<PerfDeptConfigVo> queryList(PerfDeptConfigBo bo);
|
|
|
|
/**
|
|
* 新增车间考核参数配置
|
|
*/
|
|
Boolean insertByBo(PerfDeptConfigBo bo);
|
|
|
|
/**
|
|
* 修改车间考核参数配置
|
|
*/
|
|
Boolean updateByBo(PerfDeptConfigBo bo);
|
|
|
|
/**
|
|
* 校验并批量删除车间考核参数配置信息
|
|
*/
|
|
Boolean deleteWithValidByIds(Collection<String> ids, Boolean isValid);
|
|
}
|