Commit f8ac3042 by zhiwj

给小康提供门店选择器转storeInfoId的接口

parent 25788963
......@@ -10,6 +10,7 @@ import com.gic.download.constants.QrcodeTypeEnum;
import com.gic.download.qo.QrcodeContent;
import com.gic.download.utils.*;
import com.gic.download.utils.log.LogUtils;
import com.gic.enterprise.ano.IgnoreLogin;
import com.gic.enterprise.context.RequestContext;
import com.gic.enterprise.dto.EnterpriseLicenseDTO;
import com.gic.enterprise.error.ErrorCode;
......@@ -97,6 +98,7 @@ public class StoreController extends DownloadUtils {
@Autowired
private StoreTransferApiService storeTransferApiService;
private Map<Integer, SimpleDateFormat> map = new ConcurrentHashMap<>();
private Map<Integer, SimpleDateFormat> map1 = new ConcurrentHashMap<>();
......@@ -824,4 +826,15 @@ public class StoreController extends DownloadUtils {
}
return simpleDateFormat;
}
/**
* 小康那边跑非实时的分组 需要这个接口转换数据
*/
@RequestMapping("/list-widget-store-info")
@IgnoreLogin
public RestResponse listWidgetStoreInfo(Integer enterpriseId, Integer storeWidgetId) {
ServiceResponse<List<Integer>> serviceResponse = this.storeWidgetApiService.listStoreInfoIdByStoreWidgetId(enterpriseId, storeWidgetId);
return ResultControllerUtils.commonResult(serviceResponse);
}
}
\ No newline at end of file
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