Commit 5b065ab3 by guojuxing

自定义域字段-排序

parent 7636df17
......@@ -32,6 +32,16 @@ public class StoreGroupConstant {
public final static int SORT_DOWN = 2;
/**
* 置底
*/
public final static int SORT_BOTTOM = 3;
/**
* 置顶
*/
public final static int SORT_TOPPING = 4;
/**
* 是否是默认门店,初始化品牌的时候会建立一条默认门店:未分组门店,不可编辑,1:是 0:否
*/
public final static int IS_DEFAULT = 1;
......
......@@ -62,4 +62,19 @@ public interface StoreFieldApiService {
*/
ServiceResponse<StoreFieldDTO> getStoreField(int storeFieldId);
/**
* 置底
* @param storeFieldId
* @return
*/
ServiceResponse<Integer> sortBottom(int storeFieldId);
/**
* 置顶
* @param storeFieldId
* @return
*/
ServiceResponse<Integer> sortTopping(int storeFieldId);
}
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