mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
更新会员交易记录的冻结金额
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user