package com.zcloud.service.map.impl; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import com.zcloud.mapper.dsno2.map.DataDockingLogMapper; import com.zcloud.service.map.DataDockingLogService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.List; /** * 说明:曹妃甸数据对接日志 * 作者:luoxiaobao * 时间:2023-09-11 * 官网:www.zcloudchina.com */ @Service @Transactional //开启事物 public class DataDockingLogServiceImpl implements DataDockingLogService { @Autowired private DataDockingLogMapper datadockinglogMapper; /**新增 * @param pd * @throws Exception */ public void save(PageData pd)throws Exception{ datadockinglogMapper.save(pd); } /**删除 * @param pd * @throws Exception */ public void delete(PageData pd)throws Exception{ datadockinglogMapper.delete(pd); } /**修改 * @param pd * @throws Exception */ public void edit(PageData pd)throws Exception{ datadockinglogMapper.edit(pd); } /**列表 * @param page * @throws Exception */ public List list(Page page)throws Exception{ return datadockinglogMapper.datalistPage(page); } /**列表(全部) * @param pd * @throws Exception */ public List listAll(PageData pd)throws Exception{ return datadockinglogMapper.listAll(pd); } /**通过id获取数据 * @param pd * @throws Exception */ public PageData findById(PageData pd)throws Exception{ return datadockinglogMapper.findById(pd); } /**批量删除 * @param ArrayDATA_IDS * @throws Exception */ public void deleteAll(String[] ArrayDATA_IDS)throws Exception{ datadockinglogMapper.deleteAll(ArrayDATA_IDS); } }