xuekang
2024-05-13 15a0280ae9e7db96fdf0744c722d214d2cb5a0e5
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
package com.nuvole.four.service;
 
import com.nuvole.four.domain.StoreIndustryManage;
import com.nuvole.four.domain.query.StoreIndustryManageQuery;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Description 行业管理Service
 * @Author dqh
 * @Date 2024-04-12 17:41:29
 */
public interface StoreIndustryManageService{
 
    int addSelective(StoreIndustryManage entity);
    int editSelective(StoreIndustryManage entity);
    StoreIndustryManage get(Long id);
    int del(Long  id);
    /**
     * 查询列表
     *
     * @param query
     * @return 查询结果
     */
    List<StoreIndustryManage> getList(StoreIndustryManageQuery query);
 
    /**
     * 方法描述: 查询max(sortNo)的序号信息
     * 返回 = max(sortNo) + 10
     *
     * @date  2024-04-12 18:17
     **/
    Integer getSort();
 
    /**
     * 方法描述: 查询所有行业树
     *
     * @date  2024-04-12 18:47
     **/
    List<Map> getIndustryTree(Map map);
 
    /**
     * 方法描述:查询列表默认方法
     *
     * @date  2024-04-12 18:53
     **/
    List<StoreIndustryManage> getList(Map map);
}