dubin
10 天以前 c0fc45a7cd97c2ded531b85575e6f26ff269db1b
src/main/java/com/zy/system/mapper/ConfigMapper.java
@@ -3,10 +3,13 @@
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();
}