| | |
| | | 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); |
| | | } |