| | |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import org.springframework.web.multipart.MultipartHttpServletRequest; |
| | | |
| | | import com.yeshi.fanli.dto.pdd.PDDGoodsDetail; |
| | | import com.yeshi.fanli.entity.dynamic.CommentInfo; |
| | | import com.yeshi.fanli.entity.dynamic.DynamicInfo; |
| | | import com.yeshi.fanli.entity.dynamic.GoodsEvaluate; |
| | | import com.yeshi.fanli.entity.dynamic.ImgInfo; |
| | | import com.yeshi.fanli.entity.jd.JDGoods; |
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief; |
| | | import com.yeshi.fanli.exception.dynamic.GoodsEvaluateException; |
| | | |
| | | public interface GoodsEvaluateService { |
| | |
| | | public void saveGoodsComment(String id, int kind, List<CommentInfo> comments) throws GoodsEvaluateException, Exception; |
| | | |
| | | |
| | | /** |
| | | * 自动生成数据 |
| | | */ |
| | | public void addGoodsEvaluateByDaTaoKe(); |
| | | |
| | | |
| | | public void updateTaoBaoGoods(TaoBaoGoodsBrief goods); |
| | | |
| | | |
| | | public void updateJDGoods(JDGoods jdGoods); |
| | | |
| | | |
| | | public void updatePDDGoods(PDDGoodsDetail pddGoods); |
| | | |
| | | |
| | | public void addRanDomShareCount(); |
| | | |
| | | |
| | | } |