ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package jnpf.base.service.impl;
 
import jnpf.base.PaginationTime;
import jnpf.base.entity.PrintLogEntity;
import jnpf.base.mapper.PrintLogMapper;
import jnpf.base.model.vo.PrintLogVO;
import jnpf.base.service.PrintLogService;
import jnpf.base.service.SuperServiceImpl;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service
public class PrintLogServiceImpl extends SuperServiceImpl<PrintLogMapper, PrintLogEntity> implements PrintLogService {
 
    @Override
    public List<PrintLogVO> list(String printId, PaginationTime paginationTime) {
        return this.baseMapper.list(printId, paginationTime);
    }
}