xuhy
2025-08-29 e59d2141bc8f9bee8b569deaa54158b3759c431e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.stylefeng.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.system.dao.PhoneMapper;
import com.stylefeng.guns.modular.system.dao.SpecialAreaBillingMapper;
import com.stylefeng.guns.modular.system.model.Phone;
import com.stylefeng.guns.modular.system.model.SpecialAreaBilling;
import com.stylefeng.guns.modular.system.service.IPhoneService;
import com.stylefeng.guns.modular.system.service.ISpecialAreaBillingService;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
 
@Service
public class SpecialAreaBillingServiceImpl extends ServiceImpl<SpecialAreaBillingMapper, SpecialAreaBilling> implements ISpecialAreaBillingService {
 
}