Commit 2093899a by 陶光胜

门店查询接口

parent f594e501
......@@ -430,7 +430,7 @@ public class StoreController extends DownloadUtils {
String keyc = StoreRedisKeyUtils.getStoreFieldKeyC(enterpriseId, cloumn);
Object cache = RedisUtil.getCache(keyc);
if(cache != null){
ServiceResponse<StoreFieldDTO> storeField = this.storeFieldApiService.getStoreField((Integer) cache);
ServiceResponse<StoreFieldDTO> storeField = this.storeFieldApiService.getStoreField(Integer.valueOf(cache.toString()));
if(storeField.isSuccess() && storeField.getResult() != null){
if(storeField.getResult().getStoreFieldType() == StoreFieldTypeEnum.DATE.getCode()){
JSONObject jsonObject = JSON.parseObject(storeField.getResult().getStoreFieldDetail());
......
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