Blame view

src/main/java/com/huaheng/pc/config/warehouse/service/WarehouseService.java 601 Bytes
1
package com.huaheng.pc.config.warehouse.service;
mahuandong authored
2
3

import com.baomidou.mybatisplus.extension.service.IService;
4
import com.huaheng.pc.config.warehouse.domain.Warehouse;
mahuandong authored
5
6
7
8
9
import java.util.List;
import java.util.Map;

public interface WarehouseService extends IService<Warehouse>{
mahuandong authored
10
11
    List<Map<String,Object>> getWarehouseList(Integer id);
12
mahuandong authored
13
14
15
16
17
18
19
20
    List<Warehouse> selectWarehouseByUserId(Integer userId);

    /**
     * 复制仓库
     * @param warehouseCode 仓库编码
     * @param newWarehouseCode 新仓库编码
     */
    Boolean warehouseCopy(String warehouseCode, String newWarehouseCode);
21
mahuandong authored
22
}