嗨森逛服务
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.
hai-server/hai-service/src/main/java/com/hai/service/HighGoodsPriceReferService....

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);
}