mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
30 lines
761 B
Java
30 lines
761 B
Java
|
|
package com.jsowell.pile.mapper;
|
||
|
|
|
||
|
|
import com.jsowell.pile.domain.OrderSplitInfo;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public interface OrderSplitInfoMapper {
|
||
|
|
int deleteByPrimaryKey(Integer id);
|
||
|
|
|
||
|
|
int insert(OrderSplitInfo record);
|
||
|
|
|
||
|
|
int insertOrUpdate(OrderSplitInfo record);
|
||
|
|
|
||
|
|
int insertOrUpdateSelective(OrderSplitInfo record);
|
||
|
|
|
||
|
|
int insertSelective(OrderSplitInfo record);
|
||
|
|
|
||
|
|
OrderSplitInfo selectByPrimaryKey(Integer id);
|
||
|
|
|
||
|
|
int updateByPrimaryKeySelective(OrderSplitInfo record);
|
||
|
|
|
||
|
|
int updateByPrimaryKey(OrderSplitInfo record);
|
||
|
|
|
||
|
|
int updateBatch(List<OrderSplitInfo> list);
|
||
|
|
|
||
|
|
int updateBatchSelective(List<OrderSplitInfo> list);
|
||
|
|
|
||
|
|
int batchInsert(@Param("list") List<OrderSplitInfo> list);
|
||
|
|
}
|