package com.java110.fee.bmo.importFeeDetail;
|
import com.java110.dto.importData.ImportFeeDetailDto;
|
import com.java110.po.importFee.MaintenancePayment;
|
import com.java110.po.importFee.MpFifthPaymentRecord;
|
import com.java110.po.importFee.MpPaymentRecord;
|
import org.springframework.http.ResponseEntity;
|
public interface IGetImportFeeDetailBMO {
|
|
|
/**
|
* 查询费用导入明细
|
* add by wuxw
|
* @param importFeeDetailDto
|
* @return
|
*/
|
ResponseEntity<String> get(ImportFeeDetailDto importFeeDetailDto);
|
ResponseEntity<String> get(MaintenancePayment importFeeDetailDto);
|
|
ResponseEntity<String> get(MpPaymentRecord importFeeDetailDto);
|
ResponseEntity<String> get(MpFifthPaymentRecord importFeeDetailDto);
|
|
}
|