qa-prevention-gwj/src/main/java/com/zcloud/service/map/impl/DataDockingLogServiceImpl.java

84 lines
1.8 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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<PageData> list(Page page)throws Exception{
return datadockinglogMapper.datalistPage(page);
}
/**列表(全部)
* @param pd
* @throws Exception
*/
public List<PageData> 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);
}
}