4a9e1a68355e821511a17465cdaffffbbac9c210.svn-base 512 B

12345678910111213141516171819202122
  1. package org.jeecg.modules.online.cgreport.service;
  2. import java.util.List;
  3. import org.jeecg.modules.online.cgreport.entity.DiagramCombination;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. public interface IDiagramCombinationService extends IService<DiagramCombination> {
  6. void add(DiagramCombination diagramCombination);
  7. void edit(DiagramCombination diagramCombination);
  8. void deleteById(String id);
  9. void deleteBatch(String ids);
  10. List<DiagramCombination> selectBySql(String sql);
  11. }