Commit de636529 by guojuxing

根据名称和企业ID,查询分组数据

parent 7f106c95
......@@ -77,4 +77,11 @@ public interface StoreFieldApiService {
*/
ServiceResponse<Integer> sortTopping(int storeFieldId);
/**
* 根据域查询数据
* @param regionId
* @return
*/
ServiceResponse<List<StoreFieldDTO>> listStoreFieldByRegionId(Integer regionId);
}
package com.gic.store.service;
import com.gic.api.base.commons.ServiceResponse;
import com.gic.store.dto.StoreGroupDTO;
import java.util.List;
......@@ -59,4 +60,12 @@ public interface StoreGroupApiService {
* @return
*/
int insertDefaultStoreGroup(int enterpriseId);
/**
* 拖拽排序
* @param storeGroupId
* @param setSortValue
* @return
*/
ServiceResponse<Integer> dragSort(Integer storeGroupId, Integer setSortValue);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment