OrderCommentRewardConfigMapper.java 513 B

1234567891011121314151617
  1. package com.cyksj.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.cyksj.model.entity.OrderCommentRewardConfig;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. /*
  7. *项目名: netflix
  8. *文件名: OrderCommentRewardConfigMapper
  9. *创建者: JavaZou
  10. *创建时间:2023/7/28 15:10
  11. */
  12. public interface OrderCommentRewardConfigMapper extends BaseMapper<OrderCommentRewardConfig> {
  13. void batchInsertConfigs(@Param("configs") List<OrderCommentRewardConfig> configs);
  14. }