This commit is contained in:
YAS\29473
2025-05-23 16:26:54 +08:00
parent 4064a17c93
commit 08589536a0
9 changed files with 292 additions and 4 deletions

View File

@@ -2,8 +2,12 @@ package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.OrderDetail;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.jsowell.pile.vo.lianlian.OrderTempVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@Repository
public interface OrderDetailMapper {
/**
* delete by primary key
@@ -56,4 +60,6 @@ public interface OrderDetailMapper {
int updateBatchSelective(List<OrderDetail> list);
int batchInsert(@Param("list") List<OrderDetail> list);
List<OrderTempVO> selectByStationId(String stationId);
}