fix
Helius
2021-11-04 08533cfc3bcd964ba89b12abe55010619d6cfdbb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.xcong.excoin.modules.coin.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.xcong.excoin.modules.coin.entity.GbzOrderEntity;
import org.apache.ibatis.annotations.Param;
 
import java.math.BigDecimal;
 
public interface GbzOrderDao extends BaseMapper<GbzOrderEntity> {
 
    IPage<GbzOrderEntity> selectInPage(@Param("record") GbzOrderEntity gbzOrderEntity, Page<GbzOrderEntity> page);
 
    BigDecimal selectOrderTotalAmount(@Param("memberId") Long memberId);
 
    int updateStatus(@Param("memberId") Long memberId);
}