package com.iailab.module.pms.production.wash.service.impl;
|
|
import com.iailab.framework.common.pojo.PageResult;
|
import com.iailab.framework.common.util.object.BeanUtils;
|
import com.iailab.module.pms.production.wash.service.ToWashDetService;
|
import com.iailab.module.pms.production.wash.vo.ToWashDetPageReqVO;
|
import com.iailab.module.pms.production.wash.entity.ToWashDetEntity;
|
import com.iailab.module.pms.production.wash.dao.ToWashDetDao;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
/**
|
* @author DongYukun
|
* @Description
|
* @createTime 2024年12月03日
|
*/
|
@Service
|
@Slf4j
|
public class ToWashDetServiceImpl implements ToWashDetService {
|
|
@Resource
|
private ToWashDetDao toWashDetDao;
|
|
|
@Override
|
public String create(ToWashDetEntity createEntity) {
|
ToWashDetEntity dto = BeanUtils.toBean(createEntity, ToWashDetEntity.class);
|
toWashDetDao.insert(dto);
|
return dto.getId();
|
}
|
|
@Override
|
public String update(ToWashDetEntity createEntity) {
|
ToWashDetEntity dto = BeanUtils.toBean(createEntity, ToWashDetEntity.class);
|
toWashDetDao.updateById(dto);
|
return dto.getId();
|
}
|
|
@Override
|
public void delete(String id) {
|
toWashDetDao.deleteById(id);
|
}
|
|
@Override
|
public ToWashDetEntity getInfo(String id) {
|
return toWashDetDao.selectById(id);
|
}
|
|
@Override
|
public PageResult<ToWashDetEntity> getPage(ToWashDetPageReqVO PageReqVO) {
|
return toWashDetDao.selectPage(PageReqVO);
|
}
|
|
}
|