package com.mh.system.mapper; import com.mh.common.core.domain.entity.SysParams; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @author LJF * @version 1.0 * @project EEMCS * @description 系统参数mapper * @date 2025-03-12 11:12:29 */ public interface SysParamsMapper { List selectSysParamsList(); boolean updateLogo(@Param("logo") String logo, @Param("proId") String proId, @Param("userName") String userName); }