update 查询充电桩详情

This commit is contained in:
Guoqs
2024-09-24 14:57:52 +08:00
parent 634de22f92
commit ec1385a110
6 changed files with 782 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
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);
}