| | |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> queryGoodsListOfSearch(IntegralGoodsOfSearch ofSearch) { |
| | | return this.baseMapper.queryGoodsListOfSearch(ofSearch.getName(),ofSearch.getType(),ofSearch.getRedemptionMethod(), |
| | | ofSearch.getUserPopulation(),ofSearch.getActiveStatus(),ofSearch.getState(),ofSearch.getPage()); |
| | | return this.baseMapper.queryGoodsListOfSearch(ofSearch.getName(), ofSearch.getType(), ofSearch.getRedemptionMethod(), |
| | | ofSearch.getUserPopulation(), ofSearch.getActiveStatus(), ofSearch.getState(), ofSearch.getPage()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> queryGoodsListOfSearchAudit(IntegralGoodsOfSearch ofSearch) { |
| | | return this.baseMapper.queryGoodsListOfSearchAudit(ofSearch.getName(), ofSearch.getType(), ofSearch.getRedemptionMethod(), |
| | | ofSearch.getUserPopulation(), ofSearch.getActiveStatus(), ofSearch.getState(), ofSearch.getPage()); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public void saveCity(Integer id, String province, String provinceCode, String city, String cityCode) { |
| | | this.baseMapper.saveCity(id,province,provinceCode,city,cityCode); |
| | | this.baseMapper.saveCity(id, province, provinceCode, city, cityCode); |
| | | } |
| | | |
| | | @Override |
| | |
| | | } |
| | | |
| | | @Override |
| | | public Object changeState(CoachChangeStateVO dto) { |
| | | return this.baseMapper.changeState(dto); |
| | | public void changeState(CoachChangeStateVO dto) { |
| | | List<Integer> ids = dto.getIds(); |
| | | this.baseMapper.changeState(ids, dto.getState()); |
| | | } |
| | | } |