根据订单号查询订单分账记录

This commit is contained in:
Guoqs
2025-01-15 16:29:06 +08:00
parent 615b2b7b2e
commit c9a17aa46e
5 changed files with 134 additions and 9 deletions

View File

@@ -1,25 +1,26 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.OrderSplitRecord;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface OrderSplitRecordMapper {
int deleteByPrimaryKey(Integer id);
// int deleteByPrimaryKey(Integer id);
int insertSelective(OrderSplitRecord record);
// int insertSelective(OrderSplitRecord record);
OrderSplitRecord selectByPrimaryKey(Integer id);
// OrderSplitRecord selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(OrderSplitRecord record);
// int updateByPrimaryKeySelective(OrderSplitRecord record);
int updateBatchSelective(List<OrderSplitRecord> list);
// int updateBatchSelective(List<OrderSplitRecord> list);
int batchInsert(@Param("list") List<OrderSplitRecord> list);
int insertOrUpdate(OrderSplitRecord record);
// int insertOrUpdate(OrderSplitRecord record);
int insertOrUpdateSelective(OrderSplitRecord record);
// int insertOrUpdateSelective(OrderSplitRecord record);
List<OrderSplitRecord> selectByOrderCode(String orderCode);
}