| | |
| | | package com.doumee.service.business.impl; |
| | | |
| | | import com.doumee.biz.system.SystemDictDataBiz; |
| | | import com.doumee.core.model.LoginUserInfo; |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.core.model.PageWrap; |
| | | import com.doumee.core.utils.Constants; |
| | | import com.doumee.core.utils.Utils; |
| | | import com.doumee.dao.business.WebParamMapper; |
| | | import com.doumee.dao.business.model.WebParam; |
| | |
| | | @Autowired |
| | | private WebParamMapper webParamMapper; |
| | | |
| | | @Autowired |
| | | private SystemDictDataBiz systemDictDataBiz; |
| | | |
| | | @Override |
| | | public WebParam findOne() { |
| | | LoginUserInfo user = (LoginUserInfo) SecurityUtils.getSubject().getPrincipal(); |
| | | QueryWrapper<WebParam> wrapper = new QueryWrapper<>(); |
| | | wrapper.eq("COMPANY_ID",user.getCompanyId()); |
| | | wrapper.last(" limit 1 "); |
| | | return webParamMapper.selectOne(wrapper); |
| | | WebParam webParam = webParamMapper.selectOne(wrapper); |
| | | if(!Objects.isNull(webParam)){ |
| | | webParam.setResourcePath(systemDictDataBiz.queryByCode(Constants.OSS,Constants.RESOURCE_PATH).getCode() + |
| | | systemDictDataBiz.queryByCode(Constants.OSS,Constants.WEB_PARAM).getCode()); |
| | | }else{ |
| | | webParam = new WebParam(); |
| | | webParam.setResourcePath(systemDictDataBiz.queryByCode(Constants.OSS,Constants.RESOURCE_PATH).getCode() + |
| | | systemDictDataBiz.queryByCode(Constants.OSS,Constants.WEB_PARAM).getCode()); |
| | | webParam.setBgImg(systemDictDataBiz.queryByCode(Constants.WEB_PARAM,Constants.BG_IMG).getCode()); |
| | | webParam.setTopImg(systemDictDataBiz.queryByCode(Constants.WEB_PARAM,Constants.TOP_IMG).getCode()); |
| | | webParam.setPkImg(systemDictDataBiz.queryByCode(Constants.WEB_PARAM,Constants.PK_IMG).getCode()); |
| | | webParam.setMainColor(systemDictDataBiz.queryByCode(Constants.WEB_PARAM,Constants.MAIN_COLOR).getCode()); |
| | | webParam.setRangeSize(systemDictDataBiz.queryByCode(Constants.WEB_PARAM,Constants.RANGE_SIZE).getCode()); |
| | | } |
| | | return webParam; |
| | | } |
| | | |
| | | |
| | |
| | | webParam = new WebParam(); |
| | | BeanUtils.copyProperties(updateWebParamDTO,webParam); |
| | | webParam.setCreateTime(new Date()); |
| | | webParam.setDeleted(Constants.ZERO); |
| | | webParam.setCompanyId(user.getCompanyId()); |
| | | webParam.setCreateUser(user.getId()); |
| | | webParamMapper.insert(webParam); |