This commit is contained in:
Guoqs
2025-04-16 11:49:26 +08:00
parent 1b2d17fae8
commit 6e8cd51cb4
8 changed files with 9272 additions and 1353 deletions

View File

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