riku
2020-08-21 0328eab9276e57487eb2cfff31a945a01dd8c73a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 {
 
    //<editor-fold desc="ChangeAdviceDao">
 
    //通过问题guid查询对应的整改建议
    Observable<List<ChangeAdvice>> getAdviceByProblemType(String ptGuid);
 
    //</editor-fold>
}