package cn.stylefeng.guns.sys.modular.rest.service.impl;
|
|
import cn.stylefeng.guns.base.pojo.page.LayuiPageFactory;
|
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
|
import cn.stylefeng.guns.sys.modular.rest.entity.RestUserPos;
|
import cn.stylefeng.guns.sys.modular.rest.mapper.RestUserPosMapper;
|
import cn.stylefeng.guns.sys.modular.rest.service.RestUserPosService;
|
import cn.stylefeng.guns.sys.modular.system.model.params.UserPosParam;
|
import cn.stylefeng.guns.sys.modular.system.model.result.UserPosResult;
|
import cn.stylefeng.roses.core.util.ToolUtil;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* <p>
|
* 用户职位关联表 服务实现类
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2019-06-28
|
*/
|
@Service
|
public class RestUserPosServiceImpl extends ServiceImpl<RestUserPosMapper, RestUserPos> implements RestUserPosService {
|
|
@Override
|
public void add(UserPosParam param) {
|
RestUserPos entity = getEntity(param);
|
this.save(entity);
|
}
|
|
@Override
|
public void delete(UserPosParam param) {
|
this.removeById(getKey(param));
|
}
|
|
@Override
|
public void update(UserPosParam param) {
|
RestUserPos oldEntity = getOldEntity(param);
|
RestUserPos newEntity = getEntity(param);
|
ToolUtil.copyProperties(newEntity, oldEntity);
|
this.updateById(newEntity);
|
}
|
|
@Override
|
public UserPosResult findBySpec(UserPosParam param) {
|
return null;
|
}
|
|
@Override
|
public List<UserPosResult> findListBySpec(UserPosParam param) {
|
return null;
|
}
|
|
@Override
|
public LayuiPageInfo findPageBySpec(UserPosParam param) {
|
Page pageContext = getPageContext();
|
IPage page = this.baseMapper.customPageList(pageContext, param);
|
return LayuiPageFactory.createPageInfo(page);
|
}
|
|
private Serializable getKey(UserPosParam param) {
|
return param.getUserPosId();
|
}
|
|
private Page getPageContext() {
|
return LayuiPageFactory.defaultPage();
|
}
|
|
private RestUserPos getOldEntity(UserPosParam param) {
|
return this.getById(getKey(param));
|
}
|
|
private RestUserPos getEntity(UserPosParam param) {
|
RestUserPos entity = new RestUserPos();
|
ToolUtil.copyProperties(param, entity);
|
return entity;
|
}
|
|
}
|