37 lines
1.2 KiB
Java
37 lines
1.2 KiB
Java
|
|
package com.engine.salary.service.impl;
|
||
|
|
|
||
|
|
import com.engine.core.impl.Service;
|
||
|
|
import com.engine.salary.biz.SalarySobEmpFieldBiz;
|
||
|
|
import com.engine.salary.entity.salarysob.po.SalarySobEmpFieldPO;
|
||
|
|
import com.engine.salary.service.SalarySobEmpFieldService;
|
||
|
|
|
||
|
|
import java.util.Collection;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: 薪资账套的员工信息字段
|
||
|
|
* @author: xiajun
|
||
|
|
* @modified By: xiajun
|
||
|
|
* @date: Created in 1/18/22 5:43 PM
|
||
|
|
* @version:v1.0
|
||
|
|
*/
|
||
|
|
public class SalarySobEmpFieldServiceImpl extends Service implements SalarySobEmpFieldService {
|
||
|
|
|
||
|
|
private SalarySobEmpFieldBiz salarySobEmpFieldMapper = new SalarySobEmpFieldBiz();
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public List<SalarySobEmpFieldPO> listBySalarySobId(Long salarySobId) {
|
||
|
|
return salarySobEmpFieldMapper.listSome(SalarySobEmpFieldPO.builder().salarySobId(salarySobId).build());
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void batchSave(Collection<SalarySobEmpFieldPO> salarySobEmpFieldPOS) {
|
||
|
|
salarySobEmpFieldMapper.batchInsert(salarySobEmpFieldPOS);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void deleteBySalarySobIds(Collection<Long> salarySobIds) {
|
||
|
|
salarySobEmpFieldMapper.deleteBySalarySobIds(salarySobIds);
|
||
|
|
}
|
||
|
|
}
|