mitao
2024-06-05 e1f5ba620ad2f0b3f62c1faa45ad65a854a3c79a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.promotion.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.utils.page.PageDTO;
import com.ruoyi.system.api.domain.dto.PromotionWishListDTO;
import com.ruoyi.promotion.domain.PromotionWishList;
 
/**
 * <p>
 * 心愿求购表 服务类
 * </p>
 *
 * @author mitao
 * @since 2024-05-16
 */
public interface IPromotionWishListService extends IService<PromotionWishList> {
 
    PageDTO<PromotionWishList> getPromotionWishList(PromotionWishListDTO promotionWishListDTO);
    PromotionWishList getPromotionWishOne(PromotionWishListDTO promotionWishListDTO);
    void savePromotionWishList(PromotionWishListDTO promotionWishListDTO);
 
   void delPromotionWishOne(PromotionWishListDTO promotionWishListDTO);
 
}