#1
dubin
2025-11-25 051d84a86d86fbb71e0292a09a6d03874d4fb0e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.system.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.system.entity.Config;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface ConfigMapper extends BaseMapper<Config> {
 
    @Select("select value from sys_config where code='CrnIoControl';")
    Integer selectCrnIo();
}