mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
11 lines
246 B
Java
11 lines
246 B
Java
package cn.hellohao.service;
|
|
|
|
import cn.hellohao.pojo.Confdata;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public interface ConfdataService {
|
|
Confdata selectConfdata(String key);
|
|
Integer updateConfdata(Confdata confdata);
|
|
}
|