mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-19 21:48:03 +08:00
update
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user