| | |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.bus.lable.LabelGoods; |
| | | |
| | | |
| | | |
| | | public interface LabelGoodsMapper { |
| | | public interface LabelGoodsMapper extends BaseMapper<LabelGoods>{ |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(LabelGoods record); |
| | | |
| | | int insertSelective(LabelGoods record); |
| | | |
| | | LabelGoods selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(LabelGoods record); |
| | | |
| | | int updateByPrimaryKey(LabelGoods record); |
| | | |
| | | /** |
| | | * 批量插入 |
| | | * @param list |
| | |
| | | |
| | | |
| | | /** |
| | | * 删除商品多个标签 |
| | | */ |
| | | void deleteByAuctionIdAndLabIDs(@Param("auctionId")Long auctionId, @Param("list") List<Long> list); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * @param ids |
| | | * @return |