| | |
| | | package com.dsh.other.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.other.entity.HonorRules; |
| | | import com.dsh.other.mapper.HonorRulesMapper; |
| | |
| | | public List<HonorRules> querylistOfIds(List<Integer> honorIds) { |
| | | return this.baseMapper.querylistOfIds(honorIds); |
| | | } |
| | | |
| | | @Override |
| | | public List<HonorRules> getList() { |
| | | return this.baseMapper.getList(); |
| | | } |
| | | |
| | | @Override |
| | | public List<HonorRules> selectByType(Integer type1) { |
| | | QueryWrapper<HonorRules> wrapper = new QueryWrapper<>(); |
| | | |
| | | return this.baseMapper.selectList(wrapper.eq("type", type1)); |
| | | } |
| | | } |