seatonwan9
2025-08-28 e5d17ab1bc9e0779b325c53bf23d61ae4a15432e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.webmanage.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.webmanage.entity.OrderAttachment;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 订单附件Mapper接口
 */
@Mapper
public interface OrderAttachmentMapper extends BaseMapper<OrderAttachment> {
 
    /**
     * 根据订单ID查询订单附件列表
     */
    List<OrderAttachment> selectByOrderId(@Param("orderId") String orderId);
}