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);
|
}
|