1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.java110.community.bmo.repairReturnVisit;
| import com.java110.dto.repairReturnVisit.RepairReturnVisitDto;
| import org.springframework.http.ResponseEntity;
| public interface IGetRepairReturnVisitBMO {
|
|
| /**
| * 查询报修回访
| * add by wuxw
| * @param repairReturnVisitDto
| * @return
| */
| ResponseEntity<String> get(RepairReturnVisitDto repairReturnVisitDto);
|
|
| }
|
|