xiaoyong931011
2020-08-12 420b90cd27ea932f64b25f3394967fd532cca186
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
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;
 
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);
 
}