xuhy
2024-08-30 c22b895afe54ea30e395e00ed225883243fb8309
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.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TOrderSale;
import com.ruoyi.system.dto.TOrderSaleDTO;
 
/**
 * <p>
 * 销售订单 服务类
 * </p>
 *
 * @author xiaochen
 * @since 2024-08-14
 */
public interface TOrderSaleService extends IService<TOrderSale> {
 
    /**
     * 销售下单接口
     * @param dto
     */
    void add(TOrderSaleDTO dto);
 
}