package com.ruoyi.service.impl;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.domain.ArchiveRecords;
|
import com.ruoyi.domain.Archiverecordstouser;
|
import com.ruoyi.mapper.ArchiveRecordsMapper;
|
import com.ruoyi.service.IArchiverecordstouserService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
|
/**
|
* 【请填写功能名称】Service业务层处理
|
*
|
* @author ruoyi
|
* @date 2025-07-20
|
*/
|
@Service
|
public class ArchiverecordstouserServiceImpl extends ServiceImpl<ArchiveRecordsMapper, ArchiveRecords> implements IArchiverecordstouserService
|
{
|
|
|
/**
|
* 查询【请填写功能名称】
|
*
|
* @param id 【请填写功能名称】主键
|
* @return 【请填写功能名称】
|
*/
|
@Override
|
public Archiverecordstouser selectArchiverecordstouserById(Long id)
|
{
|
return null;
|
}
|
|
@Override
|
public List<Archiverecordstouser> selectArchiverecordstouserList(Archiverecordstouser archiverecordstouser) {
|
return null;
|
}
|
|
/**
|
* 查询【请填写功能名称】列表
|
*
|
* @param archiverecordstouser 【请填写功能名称】
|
* @return 【请填写功能名称】
|
*/
|
|
|
/**
|
* 新增【请填写功能名称】
|
*
|
* @param archiverecordstouser 【请填写功能名称】
|
* @return 结果
|
*/
|
@Override
|
public int insertArchiverecordstouser(Archiverecordstouser archiverecordstouser)
|
{
|
return 0;
|
}
|
|
/**
|
* 修改【请填写功能名称】
|
*
|
* @param archiverecordstouser 【请填写功能名称】
|
* @return 结果
|
*/
|
@Override
|
public int updateArchiverecordstouser(Archiverecordstouser archiverecordstouser)
|
{
|
return 0;
|
}
|
|
/**
|
* 批量删除【请填写功能名称】
|
*
|
* @param ids 需要删除的【请填写功能名称】主键
|
* @return 结果
|
*/
|
@Override
|
public int deleteArchiverecordstouserByIds(Long[] ids)
|
{
|
return 0;
|
}
|
|
/**
|
* 删除【请填写功能名称】信息
|
*
|
* @param id 【请填写功能名称】主键
|
* @return 结果
|
*/
|
@Override
|
public int deleteArchiverecordstouserById(Long id)
|
{
|
return 0;
|
}
|
}
|