admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
fanli/src/main/java/com/yeshi/fanli/service/inter/shop/BanLiShopGoodsService.java
@@ -2,6 +2,8 @@
import java.util.List;
import org.springframework.web.multipart.MultipartFile;
import com.yeshi.fanli.entity.shop.BanLiShopGoods;
import com.yeshi.fanli.exception.shop.BanLiShopGoodsException;
import com.yeshi.fanli.exception.shop.BanLiShopGoodsSetException;
@@ -78,5 +80,24 @@
    * @param id
    */
   public void deleteByPrimaryKey(Long id);
   /**
    * 增加销量
    * @param id
    * @param count
    */
   public void addSalesCount(Long id,int count);
   /**
    * 后台维护
    * @param file
    * @param file2
    * @param record
    * @throws BanLiShopGoodsSetException
    * @throws Exception
    */
   public void saveObject(MultipartFile file, MultipartFile file2, BanLiShopGoods record)
         throws BanLiShopGoodsException, Exception;
}