package com.hai.service.impl; import com.hai.dao.HighDiscountMapper; import com.hai.entity.HighDiscount; import com.hai.entity.HighDiscountCouponRel; import com.hai.entity.HighDiscountExample; import com.hai.service.HighDiscountService; import org.apache.commons.collections4.MapUtils; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Service; import javax.annotation.Resource; import java.util.List; import java.util.Map; /** * @Auther: 胡锐 * @Description: * @Date: 2021/4/3 21:39 */ @Service("highDiscountService") public class HighDiscountServiceImpl implements HighDiscountService { @Resource private HighDiscountMapper highDiscountMapper; @Override public void insertDiscount(HighDiscount highDiscount) { highDiscountMapper.insert(highDiscount); } @Override public void updateDiscount(HighDiscount highDiscount) { highDiscountMapper.updateByPrimaryKey(highDiscount); } @Override public HighDiscount getDiscountById(Long id) { return highDiscountMapper.selectByPrimaryKey(id); } @Override public List getDiscount(Map map) { HighDiscountExample example = new HighDiscountExample(); HighDiscountExample.Criteria criteria = example.createCriteria(); if (StringUtils.isNotBlank(MapUtils.getString(map, "discountKey"))) { criteria.andDiscountKeyEqualTo(MapUtils.getString(map, "discountKey")); } if (StringUtils.isNotBlank(MapUtils.getString(map, "discountName"))) { criteria.andDiscountNameLike("%" + MapUtils.getString(map, "discountName") + "%"); } if (MapUtils.getInteger(map, "discountType") != null) { criteria.andDiscountTypeEqualTo(MapUtils.getInteger(map, "discountType")); } if (MapUtils.getInteger(map, "useScope") != null) { criteria.andUseScopeEqualTo(MapUtils.getInteger(map, "useScope")); } if (MapUtils.getLong(map, "companyId") != null) { criteria.andCompanyIdEqualTo(MapUtils.getLong(map, "companyId")); } if (MapUtils.getLong(map, "useScope") != null) { criteria.andUseScopeEqualTo(MapUtils.getInteger(map, "useScope")); } example.setOrderByClause("update_time desc"); return highDiscountMapper.selectByExample(example); } }