16 lines
312 B
Java
16 lines
312 B
Java
package com.sky.mapper;
|
|
|
|
import com.sky.entity.OrderDetail;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface OrderDetailMapper {
|
|
/**
|
|
* 批量插入订单明细
|
|
* @param orderDetailList
|
|
*/
|
|
void insertBatch(List<OrderDetail> orderDetailList);
|
|
}
|