xiaoyong931011
2021-01-22 b19cf5f446bac064019b375244d50a9a95601d4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.xcong.excoin.modules.helpCenter.service;
 
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.entity.FebsResponse;
import com.xcong.excoin.common.entity.QueryRequest;
import com.xcong.excoin.modules.helpCenter.entity.HelpCenterArticleEntity;
import com.xcong.excoin.modules.helpCenter.entity.HelpCenterNoticeEntity;
import com.xcong.excoin.modules.helpCenter.entity.HelpCenterTypeEntity;
 
public interface HelpCenterService extends IService<HelpCenterNoticeEntity> {
 
    IPage<HelpCenterNoticeEntity> findHelpCenterListInPage(HelpCenterNoticeEntity helpCenterNoticeEntity, QueryRequest request);
 
    FebsResponse helpCenterDelete(@NotNull(message = "{required}") Long id);
 
    HelpCenterArticleEntity selectHelpCenterServiceById(long id);
 
    HelpCenterArticleEntity selectHelpCenterUsServiceById(long id);
 
    void helpCenterAdds(@Valid HelpCenterNoticeEntity helpCenterNoticeEntity);
 
    FebsResponse helpCenterConfirm(@Valid HelpCenterArticleEntity helpCenterArticleEntity);
 
    FebsResponse helpCenterUsConfirm(@Valid HelpCenterArticleEntity helpCenterArticleEntity);
 
    IPage<HelpCenterTypeEntity> findHelpCenterTypeListInPage(HelpCenterTypeEntity helpCenterTypeEntity, QueryRequest request);
 
    void helpCenterTypeAdds(@Valid HelpCenterTypeEntity helpCenterTypeEntity);
 
    FebsResponse helpCenterTypeDelete(@NotNull(message = "{required}") Long id);
 
}