| | |
| | | import com.ld.igds.common.dto.THDto; |
| | | import com.ld.igds.common.mapper.CommonMapper; |
| | | import com.ld.igds.constant.Constant; |
| | | import com.ld.igds.constant.DepotStatus; |
| | | import com.ld.igds.constant.RedisConst; |
| | | import com.ld.igds.inout.InoutConstant; |
| | | import com.ld.igds.inout.dto.InoutData; |
| | |
| | | import com.ld.igds.util.RedisUtil; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.dom4j.CDATA; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | public List<Depot> getCacheDepotList(String companyId, String deptId) { |
| | | if (null == deptId) return null; |
| | | String patten = RedisConst.buildKey(companyId, RedisConst.KEY_DEPOT); |
| | | |
| | | Set<String> keys = redisUtil.keys(patten); |
| | | if (null == keys) return null; |
| | | |