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.
19 lines
437 B
19 lines
437 B
2 weeks ago
|
package com.wrj.driver.server.mapper;
|
||
|
|
||
6 days ago
|
import com.wrj.driver.server.entity.WrjSysConfig;
|
||
2 weeks ago
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 系统配置表; Mapper 接口
|
||
|
* </p>
|
||
|
*
|
||
|
* @author Automated procedures
|
||
|
* @since 2023-08-10
|
||
|
*/
|
||
6 days ago
|
public interface WrjSysConfigMapper extends BaseMapper<WrjSysConfig> {
|
||
2 weeks ago
|
|
||
6 days ago
|
void updateConfig(@Param("param") WrjSysConfig config);
|
||
2 weeks ago
|
}
|