|  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.math.BigDecimal; | 
|---|
|  |  |  | import java.util.Date; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | List<MallMoneyFlow> selectMoneyFlowProfitByDate(@Param("date") Date date); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int updateIsReturnByMemberId(@Param("isReturn") Integer isReturn, @Param("memberId") Long memberId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | BigDecimal selectProfitByDateAndMemberId(Long memberId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | BigDecimal selectCommissionIncome(@Param("type") Integer type, @Param("date") Date date, @Param("memberId") Long memebrid); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | BigDecimal selectThankfulCommission(@Param("date") Date date, @Param("memberId") Long memberId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | MallMoneyFlow selectOneByOrderNoAndMemberId(@Param("rechargeNo")String rechargeNo, @Param("memberId")Long memberId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | BigDecimal selectAmountByFlowtypeAndType(@Param("memberId")Long memberId,@Param("flowType")Integer flowType, | 
|---|
|  |  |  | @Param("type")Integer type, @Param("status")Integer status, | 
|---|
|  |  |  | @Param("dateDay") Date DateTime,@Param("dateMonth") Date dateMonth); | 
|---|
|  |  |  | } | 
|---|