cloud-etl-engine/cloud-etl-server/src/main/java/com/muyu/mapper/EnginLevelMapper.java

33 lines
827 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.muyu.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.domain.EngineLevelEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @Authorqdm
* @Packagecom.muyu.mapper
* @Projectcloud-etl-engine
* @nameEnginLevelMapper
* @Date2024/8/25 18:54
*/
@Mapper
public interface EnginLevelMapper extends BaseMapper<EngineLevelEntity> {
List<EngineLevelEntity> selectLevelList();
// Integer insert(EngineLevelEntity engineLevelEntity);
Integer update(EngineLevelEntity engineLevelEntity);
Integer delete(@Param("id") Integer id);
Integer deleteBatch(@Param("ids") Integer[] ids);
EngineLevelEntity selectById(@Param("id") Integer id);
List<EngineLevelEntity> lists();
}