Blame view

src/main/java/com/huaheng/pc/config/address/service/AddressService.java 607 Bytes
pengcheng authored
1
2
3
4
5
6
7
8
package com.huaheng.pc.config.address.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.huaheng.pc.config.address.domain.Address;

public interface AddressService extends IService<Address>{
9
10
    String selectAddress(String param, String warehouseCode);
pengcheng authored
11
12
    String selectAddress(String param);
mahuandong authored
13
14
15
16
17
18
19
    /**
     * 复制地址表
     * @param warehouseCode 原仓库编码
     * @param newWarehouseCode 新仓库编码
     * @return 是否复制成功
     */
    Boolean addressCopy(String warehouseCode, String newWarehouseCode);
周峰 authored
20
21

    Address getAddressByUrl(String url);
pengcheng authored
22
}