package com.zbkj.service.dao; import com.zbkj.common.model.system.SystemConfig; import org.apache.ibatis.annotations.Param; /** * 配置表 Mapper 接口 */ public interface CommonConfigDao { SystemConfig getSConfigByName(@Param("name") String name); }