订单分账记录表, 添加运营商id, 站点id 字段

This commit is contained in:
Guoqs
2025-01-16 15:34:23 +08:00
parent e65637e9c2
commit 363a5b62cc
4 changed files with 98 additions and 27 deletions

View File

@@ -1,26 +1,27 @@
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);
}