2022-03-21 20:09:10 +08:00
|
|
|
package com.engine.salary.service;
|
|
|
|
|
|
2022-04-14 20:46:17 +08:00
|
|
|
import com.engine.salary.entity.salaryformula.ExpressFormula;
|
|
|
|
|
import com.engine.salary.entity.salaryformula.param.SalaryFormulaSaveParam;
|
2022-04-16 16:49:22 +08:00
|
|
|
import com.engine.salary.entity.salaryformula.po.FormulaPO;
|
2022-03-21 20:09:10 +08:00
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
2022-04-14 10:03:49 +08:00
|
|
|
* 薪酬管理公式编辑器
|
|
|
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|
|
|
|
* <p>Company: 泛微软件</p>
|
|
|
|
|
*
|
|
|
|
|
* @author qiantao
|
|
|
|
|
* @version 1.0
|
|
|
|
|
**/
|
2022-03-21 20:09:10 +08:00
|
|
|
public interface SalaryFormulaService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据公式id获取公式内容
|
|
|
|
|
*
|
|
|
|
|
* @param formulaIds
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<ExpressFormula> listExpressFormula(Collection<Long> formulaIds);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据公式id获取公式内容
|
|
|
|
|
*
|
|
|
|
|
* @param formulaId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
ExpressFormula getExpressFormula(Long formulaId);
|
2022-04-14 20:46:17 +08:00
|
|
|
|
2022-04-16 16:49:22 +08:00
|
|
|
FormulaPO save(SalaryFormulaSaveParam salaryFormulaSaveParam);
|
2022-04-14 20:46:17 +08:00
|
|
|
|
2022-11-23 18:30:53 +08:00
|
|
|
|
2022-12-13 16:13:45 +08:00
|
|
|
Object mock(SalaryFormulaSaveParam param);
|
2022-11-23 18:30:53 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 初始化函数
|
|
|
|
|
*/
|
|
|
|
|
void initFunction();
|
2022-03-21 20:09:10 +08:00
|
|
|
}
|