package incheon.ags.pss.edit.service.impl;

import javax.annotation.Resource;
import org.springframework.stereotype.Service;

import incheon.ags.pss.edit.mapper.FileUploadHistoryMapper;
import incheon.ags.pss.edit.service.FileUploadHistoryService;
import incheon.ags.pss.edit.vo.FileUploadHistoryVO;

@Service("fileUploadHistoryService")
public class FileUploadHistoryServiceImpl implements FileUploadHistoryService {

    @Resource(name = "fileUploadHistoryMapper")
    private FileUploadHistoryMapper mapper;

    @Override
    public void insertFileUploadHistory(FileUploadHistoryVO vo) throws Exception {
        mapper.insertFileUploadHistory(vo);
    }
}