mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
12 lines
261 B
Java
12 lines
261 B
Java
package cn.hellohao.dao;
|
|
|
|
import cn.hellohao.pojo.Config;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Mapper
|
|
public interface ConfigMapper {
|
|
Config getSourceype();
|
|
Integer setSourceype(Config config);
|
|
}
|