无关风月
2025-01-21 8f2abbbda6c87c59d0c2c5da9979e78ea38e74db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.dsh.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.course.dto.JsDto;
import com.dsh.course.mapper.GateMapper;
import com.dsh.course.mapper.StoreMapper;
import com.dsh.guns.modular.system.model.*;
import com.dsh.guns.modular.system.model.dto.SelectDto;
import com.dsh.guns.modular.system.service.IGateService;
import com.dsh.guns.modular.system.service.IStoreService;
import org.omg.CORBA.PRIVATE_MEMBER;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
import java.util.Map;
 
@Service
public class GateServiceImpl extends ServiceImpl<GateMapper, Gate> implements IGateService {
    @Autowired
    private GateMapper gateMapper;
    @Override
    public List<Map<String, Object>> listAll(String name, String device, String operatorId,
                                             String storeId, List<Integer> storeIds, Page<Map<String, Object>> page) {
        return gateMapper.listAll(name,device,operatorId,storeId,storeIds,page);
    }
}