| | |
| | | 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; |
| | |
| | | |
| | | @Override |
| | | public List<Depot> getCacheDepotList(String companyId) { |
| | | |
| | | String patten = RedisConst.buildKey(companyId, RedisConst.KEY_DEPOT); |
| | | |
| | | Set<String> keys = redisUtil.keys(patten); |
| | |
| | | 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; |
| | | |