Update SysConfigMapper.java

cyj
pbvfus8to 2 months ago
parent dca6e9a515
commit f9febb2f29

@ -0,0 +1,47 @@
/*
* Copyright (c) 2018-2999 广 All rights reserved.
*
* https://www.mall4j.com/
*
*
*
*
*/
package com.yami.shop.sys.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yami.shop.sys.model.SysConfig;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
*
* @author lgh
*/
public interface SysConfigMapper extends BaseMapper<SysConfig> {
/**
* key
* @param key key
* @return SysConfig
*/
SysConfig queryByKey(String key);
/**
* keyvalue
* @param key
* @param value
* @return
*/
int updateValueByKey(@Param("key") String key, @Param("value") String value);
/**
*
* @param ids
*/
void deleteBatch(@Param("ids") Long[] ids);
}
Loading…
Cancel
Save