ByteDanceCreativeMapper.java 497 B

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