endian11
2020-09-17 0832081b696b58a01f50e0c65aa20cc538e19e4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package safeluck.drive.evaluation.routecollect;
 
import safeluck.drive.evaluation.routecollect.bean.RoadCrossInfo;
import safeluck.drive.evaluation.routecollect.bean.RoadInfo;
 
/**
 * DriveJudge
 * Created by lzw on 2020/9/16. 10:12:23
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
public interface ICollectView {
    void beginCollectView();
    void endCollectView();
 
    /**
     * 完成一项目的采集
     * @param collectPointResult
     */
    void routeItem(CollectPointResult collectPointResult );
 
    void roadinfo(RoadInfo roadInfo);
    void roadcrossInfo(RoadCrossInfo roadCrossInfo);
}