更新会员交易记录的冻结金额

This commit is contained in:
2023-08-28 11:17:06 +08:00
parent 1dea6ecd71
commit 01025fb40b
8 changed files with 588 additions and 193 deletions

View File

@@ -6,19 +6,41 @@ import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface OrderPayRecordMapper {
int deleteByPrimaryKey(Integer id);
// int insert(OrderPayRecord record);
// int insertSelective(OrderPayRecord record);
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
int insertSelective(OrderPayRecord record);
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
OrderPayRecord selectByPrimaryKey(Integer id);
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
int updateByPrimaryKeySelective(OrderPayRecord record);
int updateBatch(List<OrderPayRecord> list);
int batchInsert(@Param("list") List<OrderPayRecord> list);
int insertOrUpdate(OrderPayRecord record);
int insertOrUpdateSelective(OrderPayRecord record);
int deleteByPrimaryKey(Integer id);
int updateByPrimaryKey(OrderPayRecord record);
int batchInsert(@Param("payRecordList") List<OrderPayRecord> payRecordList);
List<OrderPayRecord> getOrderPayRecordList(@Param("orderCode") String orderCode);
List<OrderPayRecord> getOrderPayRecordList(@Param("orderCode") String orderCode);
}