You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
880 B
37 lines
880 B
4 years ago
|
package com.hai.service;
|
||
|
|
||
|
import com.hai.entity.HighGoodsPriceRefer;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* @Auther: 胡锐
|
||
|
* @Description: 产品销售价格配置
|
||
|
* @Date: 2021/3/14 16:25
|
||
|
*/
|
||
|
public interface HighGoodsPriceReferService {
|
||
|
|
||
|
/**
|
||
|
* @Author 胡锐
|
||
|
* @Description 增加
|
||
|
* @Date 2021/3/14 16:26
|
||
|
**/
|
||
|
void insertPriceRefer(HighGoodsPriceRefer highGoodsPriceRefer);
|
||
|
|
||
|
/**
|
||
|
* @Author 胡锐
|
||
|
* @Description 卡卷价格 处于待编辑、已生效、待生效、审批中 全部失效
|
||
|
* @Date 2021/3/14 20:14
|
||
|
**/
|
||
|
void couponAllPriceInvalid(Long couponId);
|
||
|
|
||
|
/**
|
||
|
* @Author 胡锐
|
||
|
* @Description 卡卷价格 处于待编辑、待生效、审批中 全部失效。但保留当前生效的价格
|
||
|
* @Date 2021/3/14 21:00
|
||
|
**/
|
||
|
void couponAllInvalidKeepCurrent(Long couponId);
|
||
|
|
||
|
}
|