xiaoyong931011
2020-07-14 e360bf659eb753e88cdf3e4c345a7dfbe4be730b
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.xcong.excoin.modules.systemSetting.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.systemSetting.entity.AppVersionEntity;
import com.xcong.excoin.modules.systemSetting.entity.PlatformBannerEntity;
import com.xcong.excoin.modules.systemSetting.entity.PlatformNoticeEntity;
import com.xcong.excoin.modules.systemSetting.entity.PlatformSymbolsSkuEntity;
import com.xcong.excoin.modules.systemSetting.entity.PlatformTradeSettingEntity;
 
public interface SystemSettingService extends IService<PlatformTradeSettingEntity>{
 
    IPage<PlatformTradeSettingEntity> findPlatformTradeSettingInPage(PlatformTradeSettingEntity platformTradeSettingEntity,
            QueryRequest request);
 
    PlatformTradeSettingEntity selectPlatformTradeSettingById(@NotNull(message = "{required}") long id);
 
    FebsResponse platformTradeSettingConfirm(@Valid PlatformTradeSettingEntity platformTradeSettingEntity);
 
    IPage<PlatformSymbolsSkuEntity> findPlatformSymbolsSkuInPage(PlatformSymbolsSkuEntity platformSymbolsSkuEntity, QueryRequest request);
 
    PlatformSymbolsSkuEntity selectplatformSymbolsSkuById(@NotNull(message = "{required}")long id);
 
    FebsResponse platformSymbolsSkuConfirm(@Valid PlatformSymbolsSkuEntity platformSymbolsSkuEntity);
 
    IPage<PlatformBannerEntity> findPlatformBannerInPage(PlatformBannerEntity platformBannerEntity, QueryRequest request);
 
    PlatformBannerEntity selectPlatformBannerById(long id);
 
    FebsResponse platformBannerConfirm(@Valid PlatformBannerEntity platformBannerEntity);
 
    FebsResponse platformBannerDelete(@NotNull(message = "{required}") Long id);
 
    void platformBannerAdd(@Valid PlatformBannerEntity platformBannerEntity);
 
    FebsResponse noticeManageConfirm(@Valid PlatformNoticeEntity platformNoticeEntity);
 
    FebsResponse noticeManageDelete(@NotNull(message = "{required}") Long id);
 
    void noticeManageAdds(@Valid PlatformNoticeEntity platformNoticeEntity);
 
    IPage<PlatformNoticeEntity> findNoticeManageInPage(PlatformNoticeEntity platformNoticeEntity, QueryRequest request);
 
    PlatformNoticeEntity selectNoticeManageById(long id);
 
    IPage<AppVersionEntity> findAppVersionEntityInPage(AppVersionEntity appVersionEntity, QueryRequest request);
 
    AppVersionEntity selectAppVersionById(long id);
 
    FebsResponse appVersionConfirm(@Valid AppVersionEntity appVersionEntity);
 
    FebsResponse appVersionDelete(@NotNull(message = "{required}") Long id);
 
    void appVersionAdds(@Valid AppVersionEntity appVersionEntity);
 
}