123456789101112131415161718 |
- package cn.com.ctop.toutiao.mapper;
- import cn.com.ctop.toutiao.entity.ByteDanceCreative;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * @Description: 今日头条创意信息
- * @Author: jeecg-boot
- * @Date: 2019-07-22
- * @Version: V1.0
- */
- public interface ByteDanceCreativeMapper extends BaseMapper<ByteDanceCreative> {
- void replaceBatch(@Param(value = "creatives") List<ByteDanceCreative> creatives);
- }
|