mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 12:05:05 +08:00
update 查询充电桩详情
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user