| | |
| | | |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.baomidou.mybatisplus.mapper.Wrapper; |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.stylefeng.guns.core.node.ZTreeNode; |
| | | import com.stylefeng.guns.modular.system.dao.DeptMapper; |
| | |
| | | @Transactional |
| | | public class WareHouseServiceImpl extends ServiceImpl<WareHouseMapper, TWarehouse> implements IWarehouseService { |
| | | |
| | | @Override |
| | | public List<TWarehouse> getWarehouseFromId(Page<TWarehouse> tWarehousePage, int id, String code) { |
| | | |
| | | return this.baseMapper.getWarehouseFromId(tWarehousePage,id,code); |
| | | } |
| | | } |