mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 13:05:11 +08:00
update
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.jsowell.pile.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.jsowell.pile.domain.OrderDetail;
|
||||
public interface OrderDetailService{
|
||||
|
||||
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(OrderDetail record);
|
||||
|
||||
int insertOrUpdate(OrderDetail record);
|
||||
|
||||
int insertOrUpdateSelective(OrderDetail record);
|
||||
|
||||
int insertSelective(OrderDetail record);
|
||||
|
||||
OrderDetail selectByPrimaryKey(Integer id);
|
||||
|
||||
int updateByPrimaryKeySelective(OrderDetail record);
|
||||
|
||||
int updateByPrimaryKey(OrderDetail record);
|
||||
|
||||
int updateBatch(List<OrderDetail> list);
|
||||
|
||||
int updateBatchSelective(List<OrderDetail> list);
|
||||
|
||||
int batchInsert(List<OrderDetail> list);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user