| | |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.core.common.Cools; |
| | | import com.core.common.R; |
| | |
| | | private String wmsUrl; |
| | | @Autowired |
| | | private ApiLogService apiLogService; |
| | | |
| | | @Override |
| | | public List<LocMast> selectLocMastListSix(String locNo,Long whsType,Integer crnNo,Integer row1,Integer bay1,Integer lev1,Integer curr,Integer limit) { |
| | | return this.baseMapper.selectLocMastListSix(locNo,whsType,crnNo,row1,bay1,lev1,curr,limit); |
| | | } |
| | | |
| | | @Override |
| | | public Long selectLocMastListTotalSix(String locNo,Long whsType,Integer crnNo,Integer row1,Integer bay1,Integer lev1) { |
| | | return this.baseMapper.selectLocMastListTotalSix(locNo,whsType,crnNo,row1,bay1,lev1); |
| | | } |
| | | |
| | | @Override |
| | | public List<LocMast> selectLocMastList(String locNo,Integer curr,Integer limit) { |
| | | return this.baseMapper.selectLocMastList(locNo,curr,limit); |
| | | } |
| | | |
| | | @Override |
| | | public Long selectLocMastListTotal(String locNo) { |
| | | return this.baseMapper.selectLocMastListTotal(locNo); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public List<Integer> queryDistinctRow(Integer crnNo) { |
| | |
| | | |
| | | @Override |
| | | public LocMast selectByLocNo(String locNo) { |
| | | return this.baseMapper.selectByLocNo(locNo); |
| | | return this.selectOne(new EntityWrapper<LocMast>().eq("loc_no",locNo)); |
| | | |
| | | //return this.baseMapper.selectByLocNo(locNo); |
| | | } |
| | | |
| | | @Override |