xuhy
2025-08-08 6408a348e14193b0f625673d4e4b22b9fbd1e369
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
    }
}