| 1234567891011121314151617181920212223242526272829303132 |
- package me.zhengjie.archives.service;
- import java.util.Map;
- import org.springframework.web.bind.annotation.RequestBody;
- import me.zhengjie.archives.dto.GzDetailDto;
- import me.zhengjie.archives.dto.GzArchivesDto;
- import me.zhengjie.archives.entity.ArchivesEntity;
- import me.zhengjie.archives.entity.GzArchivesEntity;
- import me.zhengjie.archives.plus.AbstractService;
- import me.zhengjie.archives.vo.ArchivesVo;
- import me.zhengjie.archives.vo.GzArchivesVo;
- import me.zhengjie.archives.vo.GzPortraitVo;
- import me.zhengjie.base.ResponseDTO;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
- * @since 2023-06-25
- */
- public interface GzArchivesService extends AbstractService<GzArchivesEntity> {
- public Map<String, Object> page(GzArchivesVo req);
- public void mergeSubmit(GzPortraitVo archives) throws Exception;
- public ResponseDTO<GzDetailDto> detail(GzArchivesVo req);
- public ResponseDTO<GzArchivesEntity> edit(@RequestBody GzArchivesVo req) ;
- }
|