package com.stylefeng.guns.modular.system.service.impl;
|
|
import com.baomidou.mybatisplus.plugins.Page;
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
import com.stylefeng.guns.modular.system.dao.TSpecialAreaBillingMapper;
|
import com.stylefeng.guns.modular.system.model.SpecialAreaBilling;
|
import com.stylefeng.guns.modular.system.service.ITSpecialAreaBillingService;
|
import org.springframework.stereotype.Service;
|
import org.springframework.transaction.annotation.Transactional;
|
|
import java.util.List;
|
import java.util.Map;
|
|
@Service
|
@Transactional
|
public class SpecialAreaBillingServiceImpl extends ServiceImpl<TSpecialAreaBillingMapper, SpecialAreaBilling> implements ITSpecialAreaBillingService {
|
|
|
@Override
|
public List<Map<String, Object>> list(Page<Map<String, Object>> page, String areaName) {
|
return this.baseMapper.list(page,areaName);
|
}
|
}
|