package cc.mrbird.febs.dapp.mapper;
|
|
import cc.mrbird.febs.dapp.entity.IgtOnHookPlanOrderItem;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.math.BigDecimal;
|
|
public interface IgtOnHookPlanOrderItemDao extends BaseMapper<IgtOnHookPlanOrderItem> {
|
|
IgtOnHookPlanOrderItem selectByOrderIdAndMemberIdAndState(@Param("orderId") Long orderId, @Param("memberId")Long memberId, @Param("state")int i);
|
|
BigDecimal selectTotalProfitByByOrderIdAndMemberIdAndState(@Param("orderId") Long orderId, @Param("memberId")Long memberId
|
, @Param("state")int i, @Param("isGoal")int isGoal);
|
|
BigDecimal selectTotalAmountByByOrderIdAndMemberIdAndState(@Param("orderId") Long orderId, @Param("memberId")Long memberId
|
, @Param("state")int i, @Param("isGoal")int isGoal);
|
}
|