mitao
2024-12-03 2fda56177ac67539eafb5ed33fcbec488d2a1db5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.order.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.api.domain.Logistics;
import com.ruoyi.system.api.domain.dto.LogisticsDTO;
import com.ruoyi.system.api.domain.vo.Express100VO;
import org.springframework.web.bind.annotation.RequestBody;
 
/**
 * <p>
 * 物流公司 服务类
 * </p>
 *
 * @author mitao
 * @since 2024-06-07
 */
public interface ILogisticsService extends IService<Logistics> {
 
    Express100VO getLogisticsList(@RequestBody LogisticsDTO logisticsDTO);
 
    Boolean isLogisticsOne(@RequestBody LogisticsDTO logisticsDTO);
 
}