You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
491 B
21 lines
491 B
package com.wrj.driver.server.mapper;
|
|
|
|
import com.wrj.driver.server.entity.WrjSysConfig;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* <p>
|
|
* 系统配置表; Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author Automated procedures
|
|
* @since 2023-08-10
|
|
*/
|
|
|
|
@Mapper
|
|
public interface WrjSysConfigMapper extends BaseMapper<WrjSysConfig> {
|
|
|
|
void updateConfig(@Param("param") WrjSysConfig config);
|
|
}
|
|
|