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.
29 lines
568 B
29 lines
568 B
package com.hai.service;
|
|
|
|
import com.hai.entity.HighCouponRecycle;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @Auther: 胡锐
|
|
* @Description: 归库记录
|
|
* @Date: 2021/4/2 21:25
|
|
*/
|
|
public interface HighCouponRecycleService {
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 增加
|
|
* @Date 2021/4/2 21:26
|
|
**/
|
|
void insertCouponRecycle(HighCouponRecycle highCouponRecycle);
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 查询
|
|
* @Date 2021/4/2 21:26
|
|
**/
|
|
List<HighCouponRecycle> getRecycleList(Map<String,Object> map);
|
|
|
|
}
|
|
|