package com.hmit.kernes.service.impl; import com.hmit.kernes.dao.ZhghCloudAddressDao; import com.hmit.kernes.entity.ZhghCloudAddressEntity; import com.hmit.kernes.service.ZhghCloudAddressService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; import java.util.Map; @Service("zhghCloudAddressService") public class ZhghCloudAddressSericeImpl implements ZhghCloudAddressService { @Autowired ZhghCloudAddressDao zhghCloudAddressDao; @Override public void deleteBatch(Object[] id) { zhghCloudAddressDao.deleteBatch(id); } @Override public ZhghCloudAddressEntity queryObject(Object id) { return zhghCloudAddressDao.queryObject(id); } @Override public List<ZhghCloudAddressEntity> queryList(Map<String, Object> map) { return zhghCloudAddressDao.queryList(map); } @Override public int queryTotal(Map<String, Object> map) { return zhghCloudAddressDao.queryTotal(map); } @Override public void save(ZhghCloudAddressEntity zhghCloudAddressEntity) { zhghCloudAddressDao.save(zhghCloudAddressEntity); } @Override public void update(ZhghCloudAddressEntity zhghCloudAddressEntity) { zhghCloudAddressDao.update(zhghCloudAddressEntity); } @Override public void delete(Object id) { zhghCloudAddressDao.delete(id); } }