|
@@ -0,0 +1,43 @@
|
|
|
+package com.ruoyi.ams.bionutrition.org.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.collection.CollectionUtil;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.ruoyi.ams.bionutrition.org.bean.dto.OrgDTO;
|
|
|
+import com.ruoyi.ams.bionutrition.org.bean.entity.OrgEntity;
|
|
|
+import com.ruoyi.ams.bionutrition.org.mapper.OrgMapper;
|
|
|
+import com.ruoyi.ams.bionutrition.org.service.IOrgSevice;
|
|
|
+import com.ruoyi.base.constant.type.BizEnum;
|
|
|
+import com.ruoyi.common.utils.ConvertUtils;
|
|
|
+import com.ruoyi.common.utils.StringUtils;
|
|
|
+import com.ruoyi.framework.service.impl.CrudServiceImpl;
|
|
|
+import org.apache.commons.compress.utils.Lists;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class OrgServiceImpl extends CrudServiceImpl<OrgMapper, OrgEntity, OrgDTO> implements IOrgSevice {
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<OrgDTO> getOrgDTOList(OrgDTO orgDTO) {
|
|
|
+ List<OrgEntity> orgEntities = baseDao.selectList(getWrapper(BeanUtil.beanToMap(orgDTO)));
|
|
|
+ return CollectionUtil.isNotEmpty(orgEntities)?
|
|
|
+ ConvertUtils.sourceToTarget(orgEntities, OrgDTO.class) : Lists.newArrayList();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public QueryWrapper<OrgEntity> getWrapper(Map<String, Object> params) {
|
|
|
+ QueryWrapper<OrgEntity> queryWrapper = new QueryWrapper<>();
|
|
|
+ String orgStatus = StringUtils.isBlank((String)params.get("orgStatus"))
|
|
|
+ ? BizEnum.OrgStatus.Enable.getCode() : BizEnum.OrgStatus.Disable.getCode();
|
|
|
+ queryWrapper.lambda().eq(OrgEntity::getOrgStatus, orgStatus);
|
|
|
+ queryWrapper.lambda().eq(StringUtils.isNotBlank((String)params.get("orgName")), OrgEntity::getOrgName, params.get("orgName"));
|
|
|
+ return queryWrapper;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|