dubin
2025-11-05 896f33f0f2db0798333f3298a7fa15e99691059c
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();
}