| | |
| | | import com.mzl.flower.dto.response.wallet.WalletBillRecordVO; |
| | | import com.mzl.flower.entity.wallet.WalletBillRecordDO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | List<WalletBillRecordVO> getPage(Page page, @Param("dto") QueryWalletBillDTO dto); |
| | | |
| | | List<WalletBillRecordVO> getPageByDesc(Page page, @Param("dto") QueryWalletBillDTO dto); |
| | | |
| | | |
| | | @Select("select * from t_wallet_withdraw_record where withdraw_record_id = #{withdrawRecordId}") |
| | | WalletBillRecordDO getBillRecordByWithdrawRecordId(Long withdrawRecordId); |
| | | |
| | | } |
| | | |