DocumentLogServiceImpl.java 377 B

1234567891011
  1. package jnpf.service.impl;
  2. import jnpf.base.service.SuperServiceImpl;
  3. import jnpf.entity.DocumentLogEntity;
  4. import jnpf.mapper.DocumentLogMapper;
  5. import jnpf.service.DocumentLogService;
  6. import org.springframework.stereotype.Service;
  7. @Service
  8. public class DocumentLogServiceImpl extends SuperServiceImpl<DocumentLogMapper, DocumentLogEntity> implements DocumentLogService {
  9. }