KKSU
2024-09-30 36be00e0f3cbe0d559c646fd2977e6e3a74aa6f9
src/main/java/com/xcong/excoin/modules/coin/dao/GbzOrderDao.java
@@ -4,8 +4,15 @@
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(Page<GbzOrderEntity> page);
    IPage<GbzOrderEntity> selectInPage(@Param("record") GbzOrderEntity gbzOrderEntity, Page<GbzOrderEntity> page);
    BigDecimal selectOrderTotalAmount(@Param("memberId") Long memberId);
    int updateStatus(@Param("memberId") Long memberId);
}