cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.web.facade.sys;
 
import java.util.Map;
 
import cn.ksource.core.page.PageInfo;
 
/**
 * 平台版本管理Facade
 * @author lixiang
 * */
public interface SysPtVersionFacade {
    /**
     * 版本列表页面分页数据
     * */
    PageInfo queryPtVersionData(PageInfo pageInfo,Map<String, String> params);
    
    /**
     * 版本列表页面分页数据数量
     * */
    Integer queryPtVersionCount(Map<String, String> params);
    
    /**
     * 通过id得到版本信息
     * */
    Map getPtVersionById(String id);
    
    /**
     * 修改版本信息
     * */
    void updatePtVersion(Map<String, String> params);
    
    /**
     * 保存版本信息
     * */
    Integer savePtVersion(Map<String, String> params);
    
    /**
     * 修改版本信息状态
     * */
    void updateVersionState(Map<String, String> params);
    
    /**
     * 得到当前开启的版本信息
     * */
    Map getCurrentVersion();
    
    
}