Commit e8e1c96a by 陶光胜

回写修改

parent 2fe81b25
......@@ -50,7 +50,7 @@ public class StoreCustomBackImpl implements ScreenBackStrategy {
if (StringUtils.isNotBlank(value)) {
Object cache = RedisUtil.getCache(StoreRedisKeyUtils.getStoreFieldKeyC(enterpriseId, key));
if (cache != null) {
ServiceResponse<StoreFieldDTO> storeField = this.storeFieldApiService.getStoreField((Integer) cache);
ServiceResponse<StoreFieldDTO> storeField = this.storeFieldApiService.getStoreField(Integer.valueOf(cache.toString()));
if (storeField.isSuccess()) {
if (storeField.getResult() != null) {
if (storeField.getResult().getStoreFieldType() == StoreFieldTypeEnum.DATE.getCode()) {
......
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