月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-13 024e90554d19c2342f27a26f91bbea378f84da82
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
package com.moon.server.mapper.data;
 
import com.moon.server.entity.data.DownloadEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface DownloadMapper {
    public Integer selectCount(String name);
 
    public List<DownloadEntity> selectByPage(String name, Integer limit, Integer offset);
 
    public Integer selectCountForUser(Integer createUser, String types, String name);
 
    public List<DownloadEntity> selectByPageForUser(Integer createUser, String types, String name, Integer limit, Integer offset);
 
    public List<DownloadEntity> selectAll();
 
    public DownloadEntity selectById(int id);
 
    public DownloadEntity selectByGuid(String guid);
 
    public Integer insert(DownloadEntity entity);
 
    public Integer inserts(List<DownloadEntity> list);
 
    public Integer delete(int id);
 
    public Integer deletes(List<Integer> ids);
 
    public Integer update(DownloadEntity entity);
 
    public Integer updates(List<DownloadEntity> list);
}