You've already forked FrameTour-BE
优惠券、通知加参数
This commit is contained in:
@ -12,4 +12,6 @@ public interface CouponMapper extends BaseMapper<CouponEntity> {
|
||||
List<CouponRespVO> selectByQuery(CouponQueryReq query);
|
||||
|
||||
int updateStatus(Integer id);
|
||||
|
||||
CouponEntity getById(Integer couponId);
|
||||
}
|
12
src/main/java/com/ycwl/basic/mapper/CouponRecordMapper.java
Normal file
12
src/main/java/com/ycwl/basic/mapper/CouponRecordMapper.java
Normal file
@ -0,0 +1,12 @@
|
||||
package com.ycwl.basic.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ycwl.basic.model.pc.couponRecord.entity.CouponRecordEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface CouponRecordMapper extends BaseMapper<CouponRecordEntity> {
|
||||
List<CouponRecordEntity> queryByUserWithGoodsId(Long scenicId, Long memberId, String goodsId);
|
||||
}
|
@ -49,7 +49,10 @@ public interface OrderMapper {
|
||||
|
||||
OrderItemEntity getOrderItem(Long orderItemId);
|
||||
|
||||
int updateOrderPrice(OrderEntity updateEntity);
|
||||
int updateOrder(OrderEntity updateEntity);
|
||||
|
||||
OrderEntity queryTypeOrder(Long userId, Long scenicId, int orderType, Integer priceConfigId);
|
||||
|
||||
OrderEntity getUserOrderItem(Long userId, Long scenicId, int orderType, Long configId, Integer goodsType, Long goodsId);
|
||||
}
|
||||
|
Reference in New Issue
Block a user