| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface IgtOnHookPlanOrderItemDao extends BaseMapper<IgtOnHookPlanOrderItem> { |
| | | |
| | |
| | | |
| | | BigDecimal selectTotalProfitByMemberIdAndStateAndIsgoal(@Param("memberId")Long memberId |
| | | , @Param("state")int i, @Param("isGoal")int isGoal); |
| | | |
| | | List<IgtOnHookPlanOrderItem> selectByIgtIdAndMemberId(@Param("orderId") Long orderId, @Param("memberId")Long memberId); |
| | | |
| | | BigDecimal selectTotalAmountByCreateTimeAndOrderId(@Param("startTime")Date startTime, @Param("endTime")Date endTime, @Param("orderId")Long id); |
| | | |
| | | Long selectByIsgoalAndOrderId(@Param("isGoal")int i, @Param("orderId")Long orderId); |
| | | } |