Helius
2020-08-14 193f1047438a18f7d9be59eece3bfd5ec0bfe07a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin.modules.helpCenter.service;
 
 
import javax.validation.Valid;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.helpCenter.dto.ImportantNoticePageDto;
import com.xcong.excoin.modules.helpCenter.dto.NewNoticePageDto;
import com.xcong.excoin.modules.helpCenter.entity.HelpCenterNoticeEntity;
 
public interface HelpCenterService extends IService<HelpCenterNoticeEntity> {
 
    Result getNewNoticeList(@Valid NewNoticePageDto newNoticePageDto);
 
    Result getImportantNoticeList(@Valid ImportantNoticePageDto importantNoticePageDto);
 
    Result getNoticeInfo(long id);
 
 
}