public class SalaryCalculator {
public double calculateSalary(Employee employee, double attendanceBonus, double lateDeduction, double otherBonus, double otherDeduction) {
double baseSalary = employee.getBaseSalary();
return baseSalary + attendanceBonus – lateDeduction + otherBonus – otherDeduction;
}
}
利唐i人事HR社区,发布者:HR_learner,转转请注明出处:https://www.ihr360.com/hrnews/20241223986.html