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; /** *

* 服务类 *

* * @author Erwin Feng * @since 2023-06-25 */ public interface GzArchivesService extends AbstractService { public Map page(GzArchivesVo req); public void mergeSubmit(GzPortraitVo archives) throws Exception; public ResponseDTO detail(GzArchivesVo req); public ResponseDTO edit(@RequestBody GzArchivesVo req) ; }