嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-service/src/main/java/com/hai/service/impl/OutRechargePriceServiceImpl...

46 lines
1.4 KiB

package com.hai.service.impl;
import com.hai.dao.OutRechargePriceMapper;
import com.hai.entity.*;
import com.hai.service.OutRechargePriceService;
import io.swagger.models.auth.In;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
@Service("outRechargePriceServiceImpl")
public class OutRechargePriceServiceImpl implements OutRechargePriceService {
@Resource
private OutRechargePriceMapper outRechargePriceMapper;
@Override
public List<OutRechargePrice> getListRechargePrice(Map<String , String> map) {
OutRechargePriceExample example = new OutRechargePriceExample();
OutRechargePriceExample.Criteria criteria = example.createCriteria();
if (StringUtils.isNotBlank(map.get("type"))) {
criteria.andTypeEqualTo(Integer.valueOf(map.get("type")));
}
return outRechargePriceMapper.selectByExample(example);
}
@Override
public OutRechargePrice findById(Long id) {
return null;
}
@Override
public void insertRechargePrice(OutRechargePrice outRechargePrice) {
outRechargePriceMapper.insert(outRechargePrice);
}
@Override
public void updateRechargePrice(OutRechargePrice outRechargePrice) {
outRechargePriceMapper.updateByPrimaryKey(outRechargePrice);
}
}