xiaoyong931011
2020-06-19 e3df07f247883a7a2e726eeacc6c6c590ce5281e
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
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.PlatformBannerEntity;
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();
 
}