xuhy
2024-12-27 feb54524cd28ef924dd14e771ca298d949b15478
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.jilongda.manage.mapper;
 
import com.jilongda.manage.model.TOrder;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.jilongda.manage.vo.TOrderVO;
import org.apache.ibatis.annotations.Param;
 
/**
 * <p>
 * 销售订单表 Mapper 接口
 * </p>
 *
 * @author 无关风月
 * @since 2024-12-09
 */
public interface TOrderMapper extends BaseMapper<TOrder> {
 
    /**
     *  销售订单详情
     * @param orderId
     * @return
     */
    TOrderVO getOrderDetailById(@Param("orderId") Integer orderId);
 
}