| | |
| | | |
| | | import safeluck.drive.evaluation.DB.Student; |
| | | import safeluck.drive.evaluation.DB.WorkRepository; |
| | | import safeluck.drive.evaluation.routecollect.bean.RoadCrossInfo; |
| | | |
| | | /** |
| | | * MyApplication2 |
| | |
| | | public void updateCurrCollectFlag(String name) { |
| | | workRepository.updateCurrCollectFlag(name); |
| | | } |
| | | |
| | | public List<RouteCross> getRoadCrosses(int id) { |
| | | return workRepository.getAllRouteCross(id); |
| | | } |
| | | |
| | | public void updateRouteCrossActive(int id, int road, int idx,int active) { |
| | | workRepository.updateRouteCrossActive(id,road,idx,active); |
| | | } |
| | | } |