类 SnippetServiceImpl
- java.lang.Object
-
- io.edurt.datacap.server.service.impl.SnippetServiceImpl
-
- 所有已实现的接口:
SnippetService
@Service public class SnippetServiceImpl extends Object implements SnippetService
-
-
构造器概要
构造器 构造器 说明 SnippetServiceImpl(SnippetRepository snippetRepository)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Response<Long>delete(Long id)Response<PageEntity<SnippetEntity>>getAll(int offset, int limit)Response<SnippetEntity>getById(Long id)Response<SnippetEntity>saveOrUpdate(SnippetEntity configure)
-
-
-
构造器详细资料
-
SnippetServiceImpl
public SnippetServiceImpl(SnippetRepository snippetRepository)
-
-
方法详细资料
-
saveOrUpdate
public Response<SnippetEntity> saveOrUpdate(SnippetEntity configure)
- 指定者:
saveOrUpdate在接口中SnippetService
-
getAll
public Response<PageEntity<SnippetEntity>> getAll(int offset, int limit)
- 指定者:
getAll在接口中SnippetService
-
delete
public Response<Long> delete(Long id)
- 指定者:
delete在接口中SnippetService
-
getById
public Response<SnippetEntity> getById(Long id)
- 指定者:
getById在接口中SnippetService
-
-