IGetFeeReceiptDetailBMO.java 388 B

1234567891011121314151617
  1. package com.java110.fee.bmo.feeReceiptDetail;
  2. import com.java110.dto.feeReceiptDetail.FeeReceiptDetailDto;
  3. import org.springframework.http.ResponseEntity;
  4. public interface IGetFeeReceiptDetailBMO {
  5. /**
  6. * 查询收据明细
  7. * add by wuxw
  8. * @param feeReceiptDetailDto
  9. * @return
  10. */
  11. ResponseEntity<String> get(FeeReceiptDetailDto feeReceiptDetailDto);
  12. }