12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package com.kmall.api.service;
- import com.kmall.api.dao.ApiRelatedGoodsMapper;
- import com.kmall.api.entity.RelatedGoodsVo;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.List;
- import java.util.Map;
- @Service
- public class ApiRelatedGoodsService {
- @Autowired
- private ApiRelatedGoodsMapper relatedGoodsDao;
- public RelatedGoodsVo queryObject(Integer id) {
- return relatedGoodsDao.queryObject(id);
- }
- public List<RelatedGoodsVo> queryList(Map<String, Object> map) {
- return relatedGoodsDao.queryList(map);
- }
- public int queryTotal(Map<String, Object> map) {
- return relatedGoodsDao.queryTotal(map);
- }
- public int queryhasPicTotal(Map<String, Object> map) {
- return relatedGoodsDao.queryTotal(map);
- }
- public int save(RelatedGoodsVo comment) {
- return relatedGoodsDao.save(comment);
- }
- public void update(RelatedGoodsVo comment) {
- relatedGoodsDao.update(comment);
- }
- public void delete(Integer id) {
- relatedGoodsDao.delete(id);
- }
- public void deleteBatch(Integer[] ids) {
- relatedGoodsDao.deleteBatch(ids);
- }
- }
|