From e53d3f8be4c6d26b66105f02a69d3ad4097c1a7e Mon Sep 17 00:00:00 2001 From: Administrator <Administrator@MS-20170306HGUF> Date: 星期一, 24 二月 2020 10:01:52 +0800 Subject: [PATCH] 素材大图 --- fanli/src/main/java/com/yeshi/fanli/service/inter/dynamic/GoodsEvaluateService.java | 49 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 46 insertions(+), 3 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/dynamic/GoodsEvaluateService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/dynamic/GoodsEvaluateService.java index b9d1097..3945359 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/dynamic/GoodsEvaluateService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/dynamic/GoodsEvaluateService.java @@ -12,7 +12,7 @@ public interface GoodsEvaluateService { - public void saveHead(MultipartFile file, GoodsEvaluate record) throws GoodsEvaluateException; + public String saveHead(MultipartFile file, GoodsEvaluate record) throws GoodsEvaluateException; public GoodsEvaluate getById(String id); @@ -38,9 +38,9 @@ * @param state * @return */ - public List<GoodsEvaluate> query(int start, int count, String key, Integer state); + public List<GoodsEvaluate> query(int start, int count, String key, Integer state, int dynamicType); - public long count(String key, Integer state); + public long count(String key, Integer state,int dynamicType); /** @@ -91,4 +91,47 @@ throws GoodsEvaluateException, Exception; + /** + * 澶氫釜鍟嗗搧淇濆瓨淇℃伅 + * @param pid + * @param videoUrl + * @param goodsList + * @param fileRequest + * @throws GoodsEvaluateException + * @throws Exception + */ + public void saveMultipleGoods(String pid, String videoUrl, String goodsList, MultipartHttpServletRequest fileRequest) + throws GoodsEvaluateException, Exception; + + + /** + * 绱犳潗 + * @param pid + * @param videoUrl + * @param picUrls + * @param fileRequest + * @throws GoodsEvaluateException + * @throws Exception + */ + public void saveSuCai(String pid, String videoUrl, String picUrls, MultipartHttpServletRequest fileRequest) + throws GoodsEvaluateException, Exception; + + + /** + * 鏌ヨ绱犳潗 + * @param start + * @param count + * @return + */ + public List<GoodsEvaluate> queryMaterialsCache(int start, int count,int type); + + public long countValidMaterials(int type); + + + public void saveGoodsCoupon(String pid, String tags, String content) throws GoodsEvaluateException, Exception; + + + public void release(String id) throws GoodsEvaluateException; + + } -- Gitblit v1.8.0