占桩订单表 实体类

This commit is contained in:
2023-08-07 14:29:36 +08:00
parent 01091df13f
commit 067f8a31e3
5 changed files with 754 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.OrderPileOccupy;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface OrderPileOccupyMapper {
/**
* delete by primary key
* @param id primaryKey
* @return deleteCount
*/
int deleteByPrimaryKey(Integer id);
/**
* insert record to table
* @param record the record
* @return insert count
*/
int insert(OrderPileOccupy record);
int insertOrUpdate(OrderPileOccupy record);
int insertOrUpdateSelective(OrderPileOccupy record);
/**
* insert record to table selective
* @param record the record
* @return insert count
*/
int insertSelective(OrderPileOccupy record);
/**
* select by primary key
* @param id primary key
* @return object by primary key
*/
OrderPileOccupy selectByPrimaryKey(Integer id);
/**
* update record selective
* @param record the updated record
* @return update count
*/
int updateByPrimaryKeySelective(OrderPileOccupy record);
/**
* update record
* @param record the updated record
* @return update count
*/
int updateByPrimaryKey(OrderPileOccupy record);
int updateBatch(List<OrderPileOccupy> list);
int updateBatchSelective(List<OrderPileOccupy> list);
int batchInsert(@Param("list") List<OrderPileOccupy> list);
}