You've already forked FrameTour-BE
价格查询,待处理订单内容
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
package com.ycwl.basic.pricing.service;
|
||||
|
||||
import com.ycwl.basic.pricing.entity.*;
|
||||
|
||||
/**
|
||||
* 价格管理服务接口(用于配置管理,手动处理时间字段)
|
||||
*/
|
||||
public interface IPricingManagementService {
|
||||
|
||||
/**
|
||||
* 创建商品价格配置
|
||||
*/
|
||||
Long createProductConfig(PriceProductConfig config);
|
||||
|
||||
/**
|
||||
* 更新商品价格配置
|
||||
*/
|
||||
boolean updateProductConfig(PriceProductConfig config);
|
||||
|
||||
/**
|
||||
* 创建阶梯定价配置
|
||||
*/
|
||||
Long createTierConfig(PriceTierConfig config);
|
||||
|
||||
/**
|
||||
* 更新阶梯定价配置
|
||||
*/
|
||||
boolean updateTierConfig(PriceTierConfig config);
|
||||
|
||||
/**
|
||||
* 创建优惠券配置
|
||||
*/
|
||||
Long createCouponConfig(PriceCouponConfig config);
|
||||
|
||||
/**
|
||||
* 更新优惠券配置
|
||||
*/
|
||||
boolean updateCouponConfig(PriceCouponConfig config);
|
||||
|
||||
/**
|
||||
* 创建优惠券领用记录
|
||||
*/
|
||||
Long createCouponClaimRecord(PriceCouponClaimRecord record);
|
||||
|
||||
/**
|
||||
* 更新优惠券领用记录
|
||||
*/
|
||||
boolean updateCouponClaimRecord(PriceCouponClaimRecord record);
|
||||
|
||||
/**
|
||||
* 创建一口价配置
|
||||
*/
|
||||
Long createBundleConfig(PriceBundleConfig config);
|
||||
|
||||
/**
|
||||
* 更新一口价配置
|
||||
*/
|
||||
boolean updateBundleConfig(PriceBundleConfig config);
|
||||
}
|
Reference in New Issue
Block a user