|
@ -8,7 +8,9 @@ import com.epmet.commons.tools.utils.ConvertUtils; |
|
|
import com.epmet.commons.tools.constant.FieldConstant; |
|
|
import com.epmet.commons.tools.constant.FieldConstant; |
|
|
import com.epmet.dao.IcEmployeeRegisterDao; |
|
|
import com.epmet.dao.IcEmployeeRegisterDao; |
|
|
import com.epmet.dto.IcEmployeeRegisterDTO; |
|
|
import com.epmet.dto.IcEmployeeRegisterDTO; |
|
|
|
|
|
import com.epmet.entity.IcEmployeeRegisterDetailEntity; |
|
|
import com.epmet.entity.IcEmployeeRegisterEntity; |
|
|
import com.epmet.entity.IcEmployeeRegisterEntity; |
|
|
|
|
|
import com.epmet.service.IcEmployeeRegisterDetailService; |
|
|
import com.epmet.service.IcEmployeeRegisterService; |
|
|
import com.epmet.service.IcEmployeeRegisterService; |
|
|
import org.apache.commons.collections4.CollectionUtils; |
|
|
import org.apache.commons.collections4.CollectionUtils; |
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
import org.apache.commons.lang3.StringUtils; |
|
@ -29,6 +31,9 @@ import java.util.Map; |
|
|
@Service |
|
|
@Service |
|
|
public class IcEmployeeRegisterServiceImpl extends BaseServiceImpl<IcEmployeeRegisterDao, IcEmployeeRegisterEntity> implements IcEmployeeRegisterService { |
|
|
public class IcEmployeeRegisterServiceImpl extends BaseServiceImpl<IcEmployeeRegisterDao, IcEmployeeRegisterEntity> implements IcEmployeeRegisterService { |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
|
private IcEmployeeRegisterDetailService icEmployeeRegisterDetailService; |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public PageData<IcEmployeeRegisterDTO> page(Map<String, Object> params) { |
|
|
public PageData<IcEmployeeRegisterDTO> page(Map<String, Object> params) { |
|
|
IPage<IcEmployeeRegisterEntity> page = baseDao.selectPage( |
|
|
IPage<IcEmployeeRegisterEntity> page = baseDao.selectPage( |
|
@ -64,8 +69,10 @@ public class IcEmployeeRegisterServiceImpl extends BaseServiceImpl<IcEmployeeReg |
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
public void save(IcEmployeeRegisterDTO dto) { |
|
|
public void save(IcEmployeeRegisterDTO dto) { |
|
|
IcEmployeeRegisterEntity entity = ConvertUtils.sourceToTarget(dto, IcEmployeeRegisterEntity.class); |
|
|
IcEmployeeRegisterEntity entity = ConvertUtils.sourceToTarget(dto, IcEmployeeRegisterEntity.class); |
|
|
|
|
|
|
|
|
insert(entity); |
|
|
insert(entity); |
|
|
|
|
|
IcEmployeeRegisterDetailEntity detailEntity = ConvertUtils.sourceToTarget(dto, IcEmployeeRegisterDetailEntity.class); |
|
|
|
|
|
detailEntity.setRegisterId(entity.getId()); |
|
|
|
|
|
icEmployeeRegisterDetailService.insert(detailEntity); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|