Commit 7f9dd092 by guojuxing

添加日志操作

parent 78aec1c9
......@@ -47,18 +47,18 @@ public interface StoreFieldApiService {
* @param storeFieldId
* @param setValue
 排序目标值
* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.String>
 返回日志操作对象

 */
ServiceResponse<Integer> setStoreFieldSort(int storeFieldId, int setValue, Integer enterpriseId);
ServiceResponse<String> setStoreFieldSort(int storeFieldId, int setValue, Integer enterpriseId);
/**
* @Title: delete

* @Description:

 * @author guojuxing
* @param storeFieldId
 主键ID
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
 返回日志操作对象

 */
ServiceResponse<Integer> delete(int storeFieldId);
ServiceResponse<String> delete(int storeFieldId);
/**
* 删除全部
......@@ -76,9 +76,9 @@ public interface StoreFieldApiService {
* @Description:

 * @author guojuxing
* @param storeFieldIds
 主键集合
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
 返回日志操作对象

 */
ServiceResponse<Integer> deleteBatch(List<Integer> storeFieldIds);
ServiceResponse<String> deleteBatch(List<Integer> storeFieldIds);
/**
* 编辑保存
......
......@@ -44,9 +44,9 @@ public interface StoreFieldSelectApiService {

 * @author guojuxing
* @param storeFieldSelectId
* @param setValue

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.String>
 返回日志操作对象

 */
ServiceResponse<Integer> setStoreFieldSelectSort(int storeFieldSelectId, int setValue);
ServiceResponse<String> setStoreFieldSelectSort(int storeFieldSelectId, int setValue);
/**
* 支持批量删除,英文逗号隔开
......@@ -54,9 +54,9 @@ public interface StoreFieldSelectApiService {
* @Description:

 * @author guojuxing
* @param storeFieldSelectIds
 主键ID,英文逗号隔开
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.String>
 返回日志操作对象

 */
ServiceResponse<Integer> delete(String storeFieldSelectIds);
ServiceResponse<String> delete(String storeFieldSelectIds);
/**
* 编辑保存
......
......@@ -32,7 +32,7 @@ public interface StoreGroupApiService {
* @param storeGroupDTO

* @return int


 */
ServiceResponse<Integer> update(StoreGroupDTO storeGroupDTO);
ServiceResponse<String> update(StoreGroupDTO storeGroupDTO);
/**
* 编辑名称
......@@ -53,7 +53,7 @@ public interface StoreGroupApiService {
* @param isUp
 是否向上移动
* @return int


 */
ServiceResponse<Integer> sort(StoreGroupDTO storeGroupDTO, boolean isUp);
ServiceResponse<String> sort(StoreGroupDTO storeGroupDTO, boolean isUp);
/**
* 查询分组列表
......@@ -73,7 +73,7 @@ public interface StoreGroupApiService {
* @param storeGroupId

* @return int


 */
ServiceResponse<Integer> remove(int storeGroupId);
ServiceResponse<String> remove(int storeGroupId);
/**
* 初始化品牌调用:新建所有门店
......@@ -92,9 +92,9 @@ public interface StoreGroupApiService {

 * @author guojuxing
* @param storeGroupId
* @param setSortValue

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
 返回日志操作对象

 */
ServiceResponse<Integer> dragSort(Integer storeGroupId, Integer setSortValue);
ServiceResponse<String> dragSort(Integer storeGroupId, Integer setSortValue);
/**
* 根据主键ID,查询分组以及子集分组
......
......@@ -36,7 +36,7 @@ public interface StoreStrategyApiService {
* @param strategyId

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>


 */
ServiceResponse<Integer> deleteStoreStrategy(int strategyId);
ServiceResponse<String> deleteStoreStrategy(int strategyId);
@interface ModifyStoreStrategy {
}
......@@ -69,7 +69,7 @@ public interface StoreStrategyApiService {
* @param strategyId

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>


 */
ServiceResponse<Integer> sortBottom(int strategyId);
ServiceResponse<String> sortBottom(int strategyId);
/**
* 置顶排序
......@@ -79,7 +79,7 @@ public interface StoreStrategyApiService {
* @param strategyId

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>


 */
ServiceResponse<Integer> sortTopping(int strategyId);
ServiceResponse<String> sortTopping(int strategyId);
/**
* 上移、下移
......@@ -90,7 +90,7 @@ public interface StoreStrategyApiService {
* @param isUp
 是否向上移动排序
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>


 */
ServiceResponse<Integer> upOrDown(int strategyId, boolean isUp);
ServiceResponse<String> upOrDown(int strategyId, boolean isUp);
/**
* 设置排序值
......@@ -99,9 +99,9 @@ public interface StoreStrategyApiService {

 * @author guojuxing
* @param strategyId
* @param setValue

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.String>


 */
ServiceResponse<Integer> setStoreStrategySort(int strategyId, int setValue);
ServiceResponse<String> setStoreStrategySort(int strategyId, int setValue);
/**
* 分页查询分组策略数据
......@@ -148,6 +148,6 @@ public interface StoreStrategyApiService {
* @param storeStatusList
 门店状态集合 启用的、不启用的,可以多选,所以是集合
* @return com.gic.api.base.commons.ServiceResponse


 */
ServiceResponse<Void> resetStoreGroupStrategy(List<Integer> regionIdList, List<Integer> storeStatusList);
ServiceResponse<String> resetStoreGroupStrategy(List<Integer> regionIdList, List<Integer> storeStatusList);
}
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