占桩订单表 实体类update

This commit is contained in:
2023-08-07 14:35:13 +08:00
parent 067f8a31e3
commit ea3cc04ecd
4 changed files with 217 additions and 88 deletions

View File

@@ -1,12 +1,14 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.OrderPileOccupy;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface OrderPileOccupyMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
@@ -14,6 +16,7 @@ public interface OrderPileOccupyMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
@@ -25,6 +28,7 @@ public interface OrderPileOccupyMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
@@ -32,6 +36,7 @@ public interface OrderPileOccupyMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
@@ -39,6 +44,7 @@ public interface OrderPileOccupyMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
@@ -46,6 +52,7 @@ public interface OrderPileOccupyMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/