package cn.flightfeather.thirdapp.common.database; import java.util.List; import cn.flightfeather.thirdapp.bean.ChangeAdvice; import io.reactivex.Observable; /** * @author riku * 数据库操作方法接口 */ public interface DbSource { // //通过问题guid查询对应的整改建议 Observable> getAdviceByProblemType(String ptGuid); // }