| package com.dy.pipIrrGlobal.daoBa; | 
|   | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import com.dy.pipIrrGlobal.pojoBa.BaSettings; | 
| import org.apache.ibatis.annotations.Mapper; | 
| import org.apache.ibatis.annotations.Param; | 
|   | 
| /** | 
|  * @author ZhuBaoMin | 
|  * @date 2024-05-27 9:17 | 
|  * @LastEditTime 2024-05-27 9:17 | 
|  * @Description | 
|  */ | 
|   | 
| @Mapper | 
| public interface BaSettingsMapper extends BaseMapper<BaSettings> { | 
|     int deleteByPrimaryKey(Long id); | 
|   | 
|     int insert(BaSettings record); | 
|   | 
|     int insertSelective(BaSettings record); | 
|   | 
|     BaSettings selectByPrimaryKey(Long id); | 
|   | 
|     int updateByPrimaryKeySelective(BaSettings record); | 
|   | 
|     int updateByPrimaryKey(BaSettings record); | 
|   | 
|     /** | 
|      * 根据配置项获取配置项值 | 
|      * @param itemName | 
|      * @return | 
|      */ | 
|     String getItemValue(@Param("itemName") String itemName); | 
| } |