puhanshu
2022-01-11 af8cd7db30e347bf4a9d4753e352abe9106bdb09
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/McsProductService.java
@@ -1,6 +1,7 @@
package com.panzhihua.service_community.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.common.model.dtos.community.microCommercialStreet.DeleteProductDTO;
import com.panzhihua.common.model.dtos.community.microCommercialStreet.McsProductDTO;
import com.panzhihua.common.model.dtos.community.microCommercialStreet.PageMcsProductDTO;
import com.panzhihua.common.model.dtos.community.microCommercialStreet.SetShelfForProductDTO;
@@ -31,11 +32,10 @@
    /**
     * 删除产品信息
     * @param productId
     * @param userId
     * @param deleteProductDTO
     * @return
     */
    R deleteMcsProduct(Long productId, Long userId);
    R deleteMcsProduct(DeleteProductDTO deleteProductDTO);
    /**
     * 上架/下架产品信息
@@ -50,4 +50,11 @@
     * @return
     */
    R pageMcsProduct(PageMcsProductDTO pageMcsProductDTO);
    /**
     * 获取产品信息详情
     * @param productId
     * @return
     */
    R getMcsProduct(Long productId);
}