mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
12 lines
296 B
Java
12 lines
296 B
Java
package cn.hellohao.dao;
|
|
|
|
import cn.hellohao.pojo.Confdata;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
@Mapper
|
|
public interface ConfdataMapper {
|
|
Confdata selectConfdata(@Param("key") String key);
|
|
Integer updateConfdata(Confdata confdata);
|
|
}
|