package com.ghy.goods.service; import com.ghy.goods.domain.GoodsImgs; import javax.validation.constraints.NotNull; import java.util.Collection; import java.util.List; /** * 商品图片接口 */ public interface GoodsImgsService { int batchInsert(Collection goodsImgs); int batchUpdate(Collection goodsImgs); int delete(Collection ids); List selectByGoodsId(@NotNull Long goodsId); }