GzArchivesService.java 1003 B

1234567891011121314151617181920212223242526272829303132
  1. package me.zhengjie.archives.service;
  2. import java.util.Map;
  3. import org.springframework.web.bind.annotation.RequestBody;
  4. import me.zhengjie.archives.dto.GzDetailDto;
  5. import me.zhengjie.archives.dto.GzArchivesDto;
  6. import me.zhengjie.archives.entity.ArchivesEntity;
  7. import me.zhengjie.archives.entity.GzArchivesEntity;
  8. import me.zhengjie.archives.plus.AbstractService;
  9. import me.zhengjie.archives.vo.ArchivesVo;
  10. import me.zhengjie.archives.vo.GzArchivesVo;
  11. import me.zhengjie.archives.vo.GzPortraitVo;
  12. import me.zhengjie.base.ResponseDTO;
  13. /**
  14. * <p>
  15. * 服务类
  16. * </p>
  17. *
  18. * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
  19. * @since 2023-06-25
  20. */
  21. public interface GzArchivesService extends AbstractService<GzArchivesEntity> {
  22. public Map<String, Object> page(GzArchivesVo req);
  23. public void mergeSubmit(GzPortraitVo archives) throws Exception;
  24. public ResponseDTO<GzDetailDto> detail(GzArchivesVo req);
  25. public ResponseDTO<GzArchivesEntity> edit(@RequestBody GzArchivesVo req) ;
  26. }