SysReservationConfigMapper.java 800 B

123456789101112131415161718192021222324252627282930313233
  1. package com.aidex.system.mapper;
  2. import com.aidex.common.core.mapper.BaseMapper;
  3. import org.apache.ibatis.annotations.Param;
  4. import com.aidex.system.domain.SysReservationConfig;
  5. import java.util.List;
  6. /**
  7. * 预约配置Mapper接口
  8. * @author Chensir
  9. * @email 914769835
  10. * @date 2024-03-28
  11. */
  12. public interface SysReservationConfigMapper extends BaseMapper<SysReservationConfig>
  13. {
  14. /**
  15. * 批量删除预约配置
  16. * @param ids 需要删除的预约配置ID集合
  17. * @return
  18. */
  19. public int deleteSysReservationConfigByIds(@Param("ids") String[] ids, @Param("DEL_FLAG_DELETE") String DEL_FLAG_DELETE);
  20. /**
  21. * 批量添加
  22. * @param list 需要添加的预约配置集合
  23. * @return
  24. */
  25. public int batchInsert(List<SysReservationConfig> list);
  26. }