mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
62
63
64
65
66
67
68
69
70
71
72
package com.panzhihua.service_grid.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.common.model.dtos.grid.EventApplicationAppReleaseAddDTO;
import com.panzhihua.common.model.dtos.grid.EventApplicationAppReleaseDeleteDTO;
import com.panzhihua.common.model.dtos.grid.EventApplicationAppReleaseEditDTO;
import com.panzhihua.common.model.dtos.grid.PageEventApplicationAppReleaseDTO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.grid.EventApplicationAppReleaseDetailsVO;
import com.panzhihua.common.model.vos.grid.EventApplicationAppReleaseVO;
import com.panzhihua.service_grid.model.dos.EventApplicationAppReleaseDO;
 
/**
 * APP应用版本信息 service
 *
 * @author cedoo email:cedoo(a)qq.com
 * @version 1.0
 * @since 1.0
 * @date 2021-05-26
 */
public interface EventApplicationAppReleaseService extends IService<EventApplicationAppReleaseDO> {
 
    /**
     * 新增APP应用版本信息
     * 
     * @param eventApplicationAppReleaseAddDTO
     * @return 新增结果
     */
    R add(EventApplicationAppReleaseAddDTO eventApplicationAppReleaseAddDTO);
 
    /**
     * 修改APP应用版本信息
     * 
     * @param eventApplicationAppReleaseEditDTO
     * @return 维护结果
     */
    R edit(EventApplicationAppReleaseEditDTO eventApplicationAppReleaseEditDTO);
 
    /**
     * 分页查找APP应用版本信息
     * 
     * @param pageEventApplicationAppReleaseDTO
     * @return 维护结果
     */
    R<IPage<EventApplicationAppReleaseVO>> query(PageEventApplicationAppReleaseDTO pageEventApplicationAppReleaseDTO);
 
    /**
     * 删除APP应用版本信息
     * 
     * @param EventApplicationAppReleaseDeleteDTO
     * @return 平台用户信息
     */
    R delete(EventApplicationAppReleaseDeleteDTO EventApplicationAppReleaseDeleteDTO);
 
    /**
     * 查询APP应用版本信息详细信息
     * 
     * @param id
     *            APP应用版本信息 id
     * @return 查找结果
     */
    R<EventApplicationAppReleaseDetailsVO> eventApplicationAppReleaseDetails(Long id);
 
    /**
     * 获取最新版本信息
     * 
     * @return 版本信息
     */
    R editionUpdate();
 
}