package com.xzx.gc.order.mapper; import com.xzx.gc.entity.PayInfo; import com.xzx.gc.model.admin.MoneyModel; import com.xzx.gc.model.admin.PayInfoModel; import com.xzx.gc.util.GcMapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; import java.util.Map; @Repository public interface PayInfoMapper extends GcMapper { int payInfoAdd(Map map); PayInfo selectByOrderIdAndUserId(@Param("orderId")String orderId, @Param("userId")String userId, @Param("payType") String payType); int addPayInfo(PayInfoModel model); }